Hi, I am having trouble finding the code to remove the text: "date_text_added" I am not sure what file to look in. My friend and I tried to remove the date that products are added to the site. Please help!![]()
Hi, I am having trouble finding the code to remove the text: "date_text_added" I am not sure what file to look in. My friend and I tried to remove the date that products are added to the site. Please help!![]()
First, as I mentioned in your other post, always include a link to your site when you post a question, so that we can see the problem.
You can turn that 'date added' line off in admin, so you didn't need to change any files.
It's a little obscure, but a lot of the settings for the product info page are in Admin - Catalog - Product Type - Edit Layout.
The link to the website is:http://bohemianglitz.com/
I'm just guessing, but I suspect you removed line 12 in includes/languages/english/product_info.php.
If that's the case, replace that file from a new copy of the Zencart zip file.
When you want to remove text from define files, just remove the part between the single quotes:
Line #12 : define('TEXT_DATE_ADDED', 'This product was added to our catalog on %s.');
would be:
Line #12 : define('TEXT_DATE_ADDED', '');
Be sure to leave the single quote marks.
Thank you so much. It is now fixed!![]()