hi qphoria,
i purchased your Option Price Update Redux, but i can't remove the "+" as you had given in the screen shot and video... guide me how to do it??
i purchased your Option Price Update Redux, but i can't remove the "+" as you had given in the screen shot and video... guide me how to do it??
Hi i just add your mod to my site it working fine thank you for this mod. I m looking for little Advanced i want to show starting and end price mean if i add 5 options which have different price starting from $2.00 and end to $10 can i show something like this ($2.00 - $10.00)? i will buy that extension mod
Thank you
Thank you
Hi, I have been using this for quite sometime, it works superbly fine, the only problem is, I have 2 to three other options per product, let's say Item1 has an option for Size, Add On and Flavor. Both Size and Add on has prices indicated, since this mod gets the lowest price, it gets the price in add on, since it has the lowest. Is there anyway to solve this? Thanks!
1. EDIT: price_by_options*.xmlIT_MAN wrote:Hi, I have been using this for quite sometime, it works superbly fine, the only problem is, I have 2 to three other options per product, let's say Item1 has an option for Size, Add On and Flavor. Both Size and Add on has prices indicated, since this mod gets the lowest price, it gets the price in add on, since it has the lowest. Is there anyway to solve this? Thanks!
2. FIND:
Code: Select all
if (!(float)$option_value['price']) { continue; }
Code: Select all
if ($option['name'] == 'Add-ons' ) { continue; }
@qphorbia
can you please help me..to figure it out,
am recently purchase this mod,but not work at all.price dont update in any of this option,check select,radio,it only work in qty,for example price is 10 usd if you put 2 qty.then price will update to 20 usd,but not in any option..
im using latest ,vqmod and Open cart 1.5.5.1 please help me..
regards,
can you please help me..to figure it out,
am recently purchase this mod,but not work at all.price dont update in any of this option,check select,radio,it only work in qty,for example price is 10 usd if you put 2 qty.then price will update to 20 usd,but not in any option..
im using latest ,vqmod and Open cart 1.5.5.1 please help me..
regards,
For some reason, this is just not working for me, i have the XML file in the XML folder, but no price adjustments.
do I need to do anything more that copy this file.
price_by_options_153x.xml
do I need to do anything more that copy this file.
price_by_options_153x.xml
1. can this kind of pricing method apply to some, but not all, products?
i need to use this for just one or two products but all the others will use regular opencart pricing
2. will this work with the OpenStock extension?
http://www.opencart.com/index.php?route ... on_id=2833
in other words, will OpenStock understand the quantities so that stock is correctly tracked?
thanks
i need to use this for just one or two products but all the others will use regular opencart pricing
2. will this work with the OpenStock extension?
http://www.opencart.com/index.php?route ... on_id=2833
in other words, will OpenStock understand the quantities so that stock is correctly tracked?
thanks
I've only been using Opencart a couple of days so still very much finding my feet. I installed this mod specifically because I wanted my prices 'Starting at' as I have various price options depending on the size of print people might like to buy. Anyway, it doesn't seem to be working. In the log file I get..
---------- Date: 2013-07-27 11:31:29 ~ IP : 127.0.0.1 ----------
REQUEST URI : /Cornwall%20Photographic%20Sales/index.php?route=product/product&path=59&product_id=50
MOD DETAILS:
modFile : C:\wamp\www\Cornwall Photographic Sales\vqmod/xml/price_by_options.xml
id : Starting At Option Price
version : 1.5.x
vqmver : 2.1.5
author : qphoria
SEARCH NOT FOUND (ABORTING MOD): $query->row['price'] = ($query->row['discount'] ? $query->row['discount'] : $query->row['price']);
----------------------------------------------------------------------
Any help would be gratefully recieved. Thank you
---------- Date: 2013-07-27 11:31:29 ~ IP : 127.0.0.1 ----------
REQUEST URI : /Cornwall%20Photographic%20Sales/index.php?route=product/product&path=59&product_id=50
MOD DETAILS:
modFile : C:\wamp\www\Cornwall Photographic Sales\vqmod/xml/price_by_options.xml
id : Starting At Option Price
version : 1.5.x
vqmver : 2.1.5
author : qphoria
SEARCH NOT FOUND (ABORTING MOD): $query->row['price'] = ($query->row['discount'] ? $query->row['discount'] : $query->row['price']);
----------------------------------------------------------------------
Any help would be gratefully recieved. Thank you
You should be using the 153x version of the xml file.Chillbrook wrote:I've only been using Opencart a couple of days so still very much finding my feet. I installed this mod specifically because I wanted my prices 'Starting at' as I have various price options depending on the size of print people might like to buy. Anyway, it doesn't seem to be working. In the log file I get..
---------- Date: 2013-07-27 11:31:29 ~ IP : 127.0.0.1 ----------
REQUEST URI : /Cornwall%20Photographic%20Sales/index.php?route=product/product&path=59&product_id=50
MOD DETAILS:
modFile : C:\wamp\www\Cornwall Photographic Sales\vqmod/xml/price_by_options.xml
id : Starting At Option Price
version : 1.5.x
vqmver : 2.1.5
author : qphoria
SEARCH NOT FOUND (ABORTING MOD): $query->row['price'] = ($query->row['discount'] ? $query->row['discount'] : $query->row['price']);
----------------------------------------------------------------------
Any help would be gratefully recieved. Thank you
Thanks for this, very useful.
However when I load my products it says at the top "Starting At..." then that disappears within a second to be replaced by £0.00. Any idea why? Obviously I am also using Options Price Update alongside this mod.
However when I load my products it says at the top "Starting At..." then that disappears within a second to be replaced by £0.00. Any idea why? Obviously I am also using Options Price Update alongside this mod.
yea.. opu is set to update the price on page load. I'll have to add some extra code to delay update if this mod is usedskinttab wrote:Thanks for this, very useful.
However when I load my products it says at the top "Starting At..." then that disappears within a second to be replaced by £0.00. Any idea why? Obviously I am also using Options Price Update alongside this mod.
I have issue with price_by_options.xml file where it shows lowest price but then options are all showing with taxes and yet i have show price with taxes off on my store.
I figured out how to solve this issue:
Open the price_by_options_153x.xml file:
I like to comment stuff out so you can always go back so find the line below
$this->session->data['start_at_price_ex_tax'] = $option_prices[0];
Then duplicate it and then make it look like mine where it doesn't take the calculated price with the tax.
/* $this->session->data['start_at_price_ex_tax'] = $option_prices[0]; */
$this->session->data['start_at_price'] = $option_prices[0];
I have this working on Version 1.5.5.1-ce.rc1.
I figured out how to solve this issue:
Open the price_by_options_153x.xml file:
I like to comment stuff out so you can always go back so find the line below
$this->session->data['start_at_price_ex_tax'] = $option_prices[0];
Then duplicate it and then make it look like mine where it doesn't take the calculated price with the tax.
/* $this->session->data['start_at_price_ex_tax'] = $option_prices[0]; */
$this->session->data['start_at_price'] = $option_prices[0];
I have this working on Version 1.5.5.1-ce.rc1.
I'm having the same problem. Is there a fix for this yet?skinttab wrote:Thanks for this, very useful.
However when I load my products it says at the top "Starting At..." then that disappears within a second to be replaced by £0.00. Any idea why? Obviously I am also using Options Price Update alongside this mod.
Thanks,
D.
I have the similar question. How to add prefix "Starting at" to the prices on the category page?TechSitement wrote:How do you add the prefix "Starting at" before the price on option based items? Also, is there a way to add that prefix to the prices on the category page and any other places where the lowest price is shown?
Thanks for the great mod!
Thanks
Who is online
Users browsing this forum: No registered users and 5 guests