I am so excited (sad!!) because I finally got this working all by myself!!!
For anyone else really battling my problem turned out to be in step 5. I had cut and pasted code from the 'read me' instruction file into the functions_prices.php file. On going through the install for about the 5th time line by line i just noticed a visual difference in the code. The code I had cut and pasted had no gaps around the = sign, whereas the code in the original file had gaps.
Here's what I mean
Instruction text file step 5 says:
Code:
Find:
$display_sale_price = zen_get_products_special_price($products_id, false);
After add:
$display_msrp_price=zen_get_products_msrp_price($products_id);
$display_price_save=zen_get_products_price_save($products_id);
I changed this to
Code:
After add:
$display_msrp_price = zen_get_products_msrp_price($products_id);
$display_price_save = zen_get_products_price_save($products_id);
I hope this saves someone the headache I had. Now it is done it does work well and I am pleased so keep perservering if you are struggling!
Bookmarks