How do I remove the "No products to list in this category"
I have two separate "things" I am promoting.
1) my retail products (software) and services
2) my affiliate marketing sites
The affiliate marketing portions are of the format of http://www.springtimesun.com/stsicart . This is going to be the layout for the other pages as well within a day or two with the actual products opening on click.
I have one problem - I don't like the message "no products to list in this category" at the very bottom of my affiliate marketing pages (since there are no products in some cases, just affiliate links to products) and would like to remove it. Anyone know how?
TIA for the assist!
Angela.
Re: How do I remove the "No products to list in this category"
you can edit the file includes\languages\english\index.php
and substitute blank for TEXT_NO_PRODUCTS
define('TEXT_NO_PRODUCTS', 'There are no products to list in this category.');
Re: How do I remove the "No products to list in this category"
Now YOU know what you mean, but I'm not sure that amfonline will. :wink2:
Replace
Code:
define('TEXT_NO_PRODUCTS', 'There are no products to list in this category.');
with
Code:
define('TEXT_NO_PRODUCTS', '');
Re: How do I remove the "No products to list in this category"
Quote:
Originally Posted by
Ryk
Now YOU know what you mean, but I'm not sure that amfonline will. :wink2:
:yes:
Thanks buddy!
Re: How do I remove the "No products to list in this category"
Thank you for the help. Should have figured that one out. A helping hand is nice!