You are here:  » Removing featured products from [pto]


Removing featured products from [pto]

Submitted by kimarie on Sat, 2011-12-17 20:34 in

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?

Submitted by support on Sun, 2011-12-18 10:41

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

Submitted by kimarie on Mon, 2011-12-19 20:30

Great, thanks