Forum replies created
Thanks for your patience. For a quick fix, please open this file in the theme and edit it woocommerce/loop/pagination.php, change this code:
<?php evolve_number_pagination(); ?>
to:
<?php
$page_list = paginate_links( apply_filters( 'woocommerce_pagination_args', array( // WPCS: XSS ok.
'base' => $base,
'format' => $format,
'current' => max( 1, $current ),
'total' => $total,
'type' => 'array',
'end_size' => 3,
'mid_size' => 1,
'prev_next' => true,
'prev_text' => sprintf( __( 'Previous', 'evolve' ) ),
'next_text' => sprintf( __( 'Next', 'evolve' ) ),
'add_args' => false,
) ) );
if ( is_array( $page_list ) ) {
//$paged = ( get_query_var( 'paged' ) == 0 ) ? 1 : get_query_var( 'paged' );
$pagination = '<ul class="pagination justify-content-center">';
foreach ( $page_list as $individual_page ) {
$pagination .= '<li class="page-item"> ' . str_replace( 'page-numbers', 'page-link', $individual_page ) . '</li>';
}
$pagination .= '</ul>';
echo $pagination;
}
?>
This will be fixed in the next theme version 😉
Checked. The issue makes this plugin Better Font Awesome. Deactivated and blocks work just fine.
Did you do some advanced modifications in the child theme? Custom functions, CSS etc.? The new version uses new structure so it may break things if you use some older functions.
There are two options now. Modify the inc/template-tags.php file, this function evolve_parallax(), line #1267 change from:
echo "<p data-animation='animated fadeInRight' class='d-none d-md-block'>" . esc_attr( $slide_data["evl_slide_desc"] ) . "</p>";
to:
echo "<p data-animation='animated fadeInRight' class='d-md-block'>" . esc_attr( $slide_data["evl_slide_desc"] ) . "</p>";
Second option is use this custom function in child theme and use this modification there, or you will lose it in the next theme update.
Where you use the tabs shortcode please?
Can you please provide WP admin login in Private reply for me to check? Thanks.
Hi Lukasz,
may you try this code in your child theme or custom function in functions.php if it’s what you looking for https://stackoverflow.com/questions/17120916/woocommerce-category-page-missing-paging
I tested it on my locahost and couldn’t see the issue. Can you please provide WP admin in Private reply? I will have a look.
Additional CSS please:
#parallax-slider .carousel-caption p {
display: block!important;
}
Hi Henrik, have you try this with other theme? For example the default WP theme? We need to confirm it’s only the evolve theme related issue. Let me know. Thanks.
You might enable the description on the smaller sizes in the customizer