Graveyard666 Posted August 17, 2005 Posted August 17, 2005 I just installed the "Call for Pricing / Negotiable" and now on my products_info.php pages no prices show up :-( The items with a price of 999999 show up as "Call for Price" which is fine, but the items which are priced at like $10 don't display any price at all.. any ideas what's wrong? my site is at www.timsplumbing.com here is my code from product_info.php <td class="prodContents" align="right" valign="top"><?php if ($product_info['products_price'] == 999999){ echo '<a href=contact_us.php>' . TEXT_CALL_FOR_PRICE . '</a>'; }else{ echo $products_price;} ?> </td> any help would be greatly appreciated.. jeff Quote
Jan Zonjee Posted August 17, 2005 Posted August 17, 2005 What if you use $product_info['products_price'] instead of $products_price? : <td class="prodContents" align="right" valign="top"><?php if ($product_info['products_price'] == 999999){ echo '<a href=contact_us.php>' . TEXT_CALL_FOR_PRICE . '</a>'; }else{ echo $product_info['products_price'];} ?> </td> Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.