Hello
Please check your browser console.
Your site has js error
Thread Starter
alex16
(@alex16)
I disabled this script and it did not affect the result
Thread Starter
alex16
(@alex16)
my shortcode – [mdf_results_by_ajax shortcode=”mdf_custom template=any/project post_type=project orderby=date order=desc page=1 per_page=15 pagination=b meta_data_filter_cat=25″ animate=1 animate_target=.showcase]
The template is in wp-content/themes/cehkamnya/mdf_templates/any/project – file index.php and css/styles.css
the filter is displayed by the widget
I followed all the instructions on the page https://wp-filter.com/howto/pagination-doesn-work-what-to-do/
But nothing helped me, maybe I was wrong somewhere?
Thread Starter
alex16
(@alex16)
this is the code of the theme
<?php if (!defined('ABSPATH')) die('No direct access allowed'); ?>
<?php
wp_enqueue_style('mdf_project', get_template_directory_uri() . '/mdf_templates/any/project/css/styles.css');
global $mdf_loop;
?>
<div id="primary" class="content-area">
<main id="main" class="site-main">
<div class="flex">
<?php if ( is_active_sidebar( 'sidebar_filter' ) ) : ?>
<div id="sidebar_filter" class="sidebar">
<?php dynamic_sidebar( 'sidebar_filter' ); ?>
</div>
<?php endif; ?>
<div class="container showcase">
<?php
while ($mdf_loop->have_posts()) : $mdf_loop->the_post();
$post_thumbnail_id = get_post_thumbnail_id($post->ID);
$image = wp_get_attachment_image_src($post_thumbnail_id);
?>
<article id="post-<?php the_ID(); ?>">
<div class="project-card">
<div class="project-img">
<a class="modal-link" href="<?php the_permalink() ?>"><?php the_post_thumbnail(); ?></a>
</div>
<div class="project-info">
<h3>
<a class="modal-link" href="<?php the_permalink() ?>"><?php the_title(); ?></a>
</h3>
<?php the_content(); ?>
</div>
</div>
</article>
<?php
if($mdf_loop->found_posts==0){
print "Результатов не найдено";
}
endwhile; // end of the loop. ?>
</div>
</div>
</main>
</div>
Thread Starter
alex16
(@alex16)
I found that if you remove the filter widget, the pagination works as soon as the widget with the filter add pagination stops working
Thread Starter
alex16
(@alex16)
Hi.
I have not received a letter from you, in spam, too. my mail [email protected]
Please send again
Thread Starter
alex16
(@alex16)
I also found that the transition to another page works if after clicking on the page link, click the filter button
Thread Starter
alex16
(@alex16)