Tagged: enfold pagination, woocommerce
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
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
Hi Andy,
see private content.
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
Hi Victoria,
this was very helpful.
You made my day.
Cheers KD