However, I’m facing a few issues:
When I click the “Load More” button, a random number of products is loaded—anywhere from 1 to 9 items. It also flashes product images that are random, often not matching the category I’m in. These images briefly flash in the center of the screen for about a second, zoom out, and then fade to white. This sequence repeats for 3 to 4 products each time, but sometimes, even though multiple images are shown, the actual filter page updates to display only a single product. There seems to be no consistent relation between the images that flash across the screen and the products that are then added to the filtered page.
Additionally, the filter options behave unpredictably. Every time I click “Load More,” new categories are randomly added to the filter list. Sometimes it’s just one new category, sometimes several. This randomness is problematic because it means users can’t see all available filters right from the start, causing confusion and making it harder for them to navigate the product options effectively.
These issues make the page completely unusable for users, resulting in a frustrating and confusing experience. It’s in no state to be launched, and I can’t move forward with it in this condition. While I’m keeping the “coming soon” checkbox checked for now, our customer is eager to have it live as soon as possible.
]]>For example https://vervormer.nl/blog/page/2/ causes a blank page
And https://vervormer.nl/aflevering/page/2/ causes a blank page
I am making a website for a client using the X theme, but I have a question regarding the x-pagenation. When I filter the search results, the pagenation will still remain with all pages from before the filtering. This means that when I want to go to the next page, it automatically takes the filter out again, wich obviously is not a good thing. You can see it live here: https://stoffseele.com/produkt-kategorie/stoffe-von-a-z/
Try and filter the products on the color blue for example and you see that it still consist 17 pages. Then if you go to page 2, the filter will be out again. Do you have any idea to get round this?
Many thanks for your answer
BR
]]>Any way I can fix this?
]]>Iam trying to change the pagination for a table (previous – next), so how can i implement WP-PageNavi(Plugin) into tablepress,
https://www.ads-software.com/plugins/tablepress/
]]><?php
$page = (get_query_var('paged')) ? get_query_var('paged') : 1;
$args=array(
'caller_get_posts'=>1,
'offset' => 1,
'orderby' => 'title',
'order' => 'DESC',
'posts_per_page' => 5,
'paged' => $page
);
$my_query = new WP_Query($args);
if( $my_query->have_posts() ) {
while ($my_query->have_posts()) : $my_query->the_post(); ?>
<article class="row sub-article">
<a href="<?php the_permalink();?>" title="<?php the_title();?>">
<div class="col-xs-4">
<?php the_post_thumbnail('secondary-thumb', array('class' => 'img-responsive')); ?>
</div>
<div class="col-xs-8">
<h4><?php the_title();?></h4>
</div>
</a>
</article>
<?php endwhile;} ?>
<?php posts_nav_link(); ?>
<?php wp_reset_postdata(); ?>
]]>top page
a href=/?pag=1″>1</a
a href=/?pag=2″>2</a
a href=/?pag=3″>3</a
on second page, all pagenumber links becomes link to page2.
a href=/?pag=2″>1</a
a href=/?pag=2″>2</a
a href=/?pag=2″>3</a
This is where it is happening.
https://www.freckliediamonds.com/
Thank you for your help.
https://www.ads-software.com/plugins/single-latest-posts-lite/
]]>