
Originally Posted by
willie bee
Is there a way to remove the pricing? Because some items we have at MAP then crossed out in red with a sale price. But the sale price does not show on the facebook page. Anyways I think it is better to remove the price so the user will click on it to read about it first and to see the actual price on our site.
Yes there is.
All you do is open up update_product.php and comment out line 107 for example.
Original section of the file.
Code:
'page' => $pageID,
'prod_image' => $_POST['products_image'],
'price' => $products_price,
'prod_name' => $_POST['products_name'][$_SESSION['languages_id']],
Modified section of the file.
Code:
'page' => $pageID,
'prod_image' => $_POST['products_image'],
// 'price' => $products_price,
'prod_name' => $_POST['products_name'][$_SESSION['languages_id']],
Now the price will not be posted on Facebook.
Bookmarks