Many thanks. Think I'll hold on and see if Daniel's fine work has squashed this one!@
Regards,
Steve
Regards,
Steve
Is this with the mod? I ask because all of my products are set to zero rewards points, yet it still shows up on the product details page.sb12759 wrote:I see the problem! If there is reward points filled out for an item in admin - catalog - products, it will show up. Once I changed reward points to zero, rewards points is gone!
rldev, go to page 1 of this thread for the exact edits needed. You will need to make manual edits to 2 files but the instructions on this thread are very clear, even with pictures.rldev wrote:Is this with the mod? I ask because all of my products are set to zero rewards points, yet it still shows up on the product details page.sb12759 wrote:I see the problem! If there is reward points filled out for an item in admin - catalog - products, it will show up. Once I changed reward points to zero, rewards points is gone!
If that seems too difficult, you can hire a programmer for just a few bucks to do it for you.
Merry
Most answers are from my OpenCart 1.5 User Manual CURRENT TO 1.5.5.1 and includes free updates.
FREE HELP! 60-page user guide with OpenCart Admin Menu Cheatsheet, Install Guide & 30 Minute QuickStart Guide: http://showmeguides.com/
I have 1.5.4 installed and cannot get the rewards to go away with the uninstall option, though I see it was "fixed" with 1.5.2? I have every product set at "0" points, yet the display on the product pages still shows. It is not showing in the account page, just on the product pages. Any way to fix this without coding?
Yes, vqmods are all fine and dandy, replacing and/or modifying template files might seem like a good idea, but it isn't.
This should very clearly, be either on or off, whether you have reward points filled in for your product or not.
Right now, if the product has reward points filled in in the admin, it will show, even if you disabled the feature.
File product.tpl needs to be changed on 2 locations.
1.
<?php if ($reward) { ?>
Must change to:
<?php if ($reward && $this->config->get('reward_status') == 1) { ?>
2.
<?php if ($points) { ?>
Must change to:
<?php if ($points && $this->config->get('reward_status') == 1) { ?>
Now it checks if an item has points AND if those points should or should not be displayed.
This should very clearly, be either on or off, whether you have reward points filled in for your product or not.
Right now, if the product has reward points filled in in the admin, it will show, even if you disabled the feature.
File product.tpl needs to be changed on 2 locations.
1.
<?php if ($reward) { ?>
Must change to:
<?php if ($reward && $this->config->get('reward_status') == 1) { ?>
2.
<?php if ($points) { ?>
Must change to:
<?php if ($points && $this->config->get('reward_status') == 1) { ?>
Now it checks if an item has points AND if those points should or should not be displayed.
Who is online
Users browsing this forum: No registered users and 76 guests