Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #357742

    Hello Support-Team,
    i used Enfold Theme 3.0.4 and WordPress 4.0.1. I have a Child Theme and have installed a Shop with WooCommerce.
    Now i want show the pagination not only on the bottom from shopsites also i want to show in the top.
    Is this possible – if yes? Please, can me give a short explanation if it works?

    Screenshoot Pagination Enfold Theme

    Thanks for help
    BR Fränk

    #358655

    Hey Frank!

    Try adding this to the bottom of your functions.php file.

    add_action( 'woocommerce_before_shop_loop', 'enfold_customization_shop_pagination', 10);
    function enfold_customization_shop_pagination()
    {
    			global $avia_config;
    			if(isset($avia_config['dynamic_template'])) return;
    			if(isset($avia_config['overview'] )) echo avia_pagination('', 'nav');
    }

    Regards,
    Elliott

    #358677

    Hi Elliot,

    WOW. THANKS. Its work fine;-)
    But a small blemishes have it – now i see the pagination on the Parent-Site (Jewelry Shop). Here i didn`t want to
    see the pagination – this site is the entry for the Online-Shop. I want to see the pagination only on the Children Sites.
    If you could help me out here again would be huge.
    Thank you, Thank you – GREAT JOB

    BR Fränk

    #359610

    Hey!

    Do you mean child pages? Go ahead and send us a link to both pages so we can get a better idea of what your trying to do.

    Best regards,
    Elliott

    #360163

    Hello,
    sorry…yes I mean child pages…the pages “JEWELRY SHOP” is the ParentPage and the entry to the shop. Here i didn`t see teh pagination. The pages “ARMBÄNDER””HALSKETTEN”RINGE””OHRRINGE””UNIKATE” are the childrenPages (Shop Categories) and here i want see teh pagination in the top and at the bottom of the page.

    PARENT-PAGE (No Pagination)
    http://glahn.gallery/shop/

    CHILD-PAGE (Pagination on the top and bottom)
    http://glahn.gallery/produktkategorie/armschmuck/

    Thanks for help
    BR Fränk

    #360517

    Hey!

    You can remove the pagination on the parent page with this on Quick CSS:

    .archive main.template-shop nav.pagination {
    display: none;
    }

    Cheers!
    Ismael

    #361852

    Hello!

    Thank you very much – the CSS works good. BUT: Apparently I’m too stupid to insert in the right place … if I insert the CSS-Order in Child Theme Settings on Quick CSS – affects thats all child pages – what I am doing wrong…?
    Sorry for the trouble with me.

    Cheers Fränk

    #362293

    Hey!

    Try adding this.

    .tax-product_cat .pagination {
        display: block !important;
    }
    .woocommerce .pagination {
        display: none;
    }

    Cheers!
    Elliott

    #362398

    Hey Elliot!

    You are my HERO;-)
    That was the key for great luck – your code works fine!
    THUMBS UP – Great Thanks for help
    Good Work Guys!

    Cheers Fränk

Viewing 9 posts - 1 through 9 (of 9 total)
  • The topic ‘Question: It is possible to show pagination also on the top?’ is closed to new replies.