• Well

    I use Storefront and alternatively Boutique Child-Theme
    But to easily and vastly working, i am on Storefront Theme

    I try to take control over Product Categories that shown on frontpage

    i do a test on a new page with this short code :
    [product_categories number”3″ orderby=”id” ids=”6,211,70″ columns=”3″]
    That works great !

    Now, you bet my question .. i want to reproduce from function.php, or the same thing, or via customize.php admin interface the same thing, whatever

    How to take this control from tools or code to specify product categories on my storefront homepage ?

    Thank u

Viewing 7 replies - 1 through 7 (of 7 total)
  • Thread Starter Justmecrea

    (@justmecrea)

    From my started request i would like something like this :

    add_filter( ‘mystile_homepage_product_categories_params’, ‘homepage_parent_categories_only’ );
    function homepage_parent_categories_only( $params ) {
    $params = ‘number/limit=”3″‘;
    $params = ‘orderby=”id”‘;
    $params = ‘ids=”6,70,211″‘;
    $params = ‘columns=”3″‘;
    return $params;
    }

    Hi,

    You can do this without touching any code. Just head over to the Product Categories screen in the dashboard and you’ll notice you can drag and drop them to re-order. The first 4 top-level categories are displayed.

    Thanks

    Thread Starter Justmecrea

    (@justmecrea)

    OK if i ave 6 parents product categories and i want to limit from Three on my homepage

    how to select the three i choose for my homepage ?

    The first 3 will be displayed. Just drag the ones you want to display to the top of the list.

    Does anyone know how to get 4 categories to display on front page? With code or with a plugin?

    WebBee

    (@bridgetdesigns)

    This plugin allow you to make lots of customisations to the Storefront theme without needing to touch the code.
    https://docs.woothemes.com/document/storefront-woocommerce-customiser/

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Show Only Specific Product Categories on Storefront Homage’ is closed to new replies.