Hi I have the search form on my home page ({link saved}) and featured posts elsewhere on the same page so would like to remove the featured products from being underneath the search form. How can I do this?
Hi kimarie,
Sure - in pto.php look for the following section beginning at line 628:
default: $html .= pto_search_form(); $html .= pto_featured(""); break;
...and REPLACE with:
default: $html .= pto_search_form(); break;
Alternatively, to avoid making any code changes; simply give all Featured Products a section prefix; e.g.
feat/Product 1 feat/Product 2
...and then where you wish to call Featured Products use
[pto featured='feat']
...and that will mean that there are no default Featured Products so nothing would be displayed below the search form...
Cheers, David. -- PriceTapestry.com
Great, thanks
©2006-2025 IAAI Software | Contact Us | Privacy Policy
Hi kimarie,
Sure - in pto.php look for the following section beginning at line 628:
default:
$html .= pto_search_form();
$html .= pto_featured("");
break;
...and REPLACE with:
default:
$html .= pto_search_form();
break;
Alternatively, to avoid making any code changes; simply give all Featured Products a section prefix; e.g.
feat/Product 1
feat/Product 2
...and then where you wish to call Featured Products use
[pto featured='feat']
...and that will mean that there are no default Featured Products so nothing would be displayed below the search form...
Cheers,
David.
--
PriceTapestry.com