Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #763581

    Hello,
    how can I have the pagination in the Produkt Raster not only below but also in the top position before the products?
    regards KD

    • This topic was modified 7 years, 7 months ago by klausdieter.
    #764886

    Hey klausdieter,

    Would you mind providing a precise link to your site, showing the elements in question? We need to be able to inspect them in order to help :)

    Best regards,
    Andy

    #764902

    Hi Andy,
    see private content.

    #765502

    Hi klausdieter,

    Please add this code to your functions.php

    
    
    add_action('wp_footer', 'ava_new_custom_script');
    function ava_new_custom_script(){
    ?>
    <script type="text/javascript">
    (function($) {
    	function a() {
    		$('.pagination-wrap.pagination-slider').clone(true).prependTo('#after_section_2 .post-entry-1029 .entry-content-wrapper.clearfix');
    	}
    
    	$(window).load(function() {
    		a();
    	});
    })(jQuery);
    </script>
    <?php
    }
    

    Let us know if this was helpful.
    Best regards,
    Victoria

    #766051

    Hi Victoria,
    this was very helpful.
    You made my day.
    Cheers KD

    #766532

    Hi,

    Great, glad we could help :-)

    Please let us know if you should need any further help on the topic or if we can close it.

    Best regards,
    Rikard

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.