Forum replies created

    Roman
    Spectator
    Posts: 3147
    April 18, 2019 at 12:34 pm #43476

    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 😉

    Roman
    Spectator
    Posts: 3147
    April 18, 2019 at 10:48 am #43474

    Checked. The issue makes this plugin Better Font Awesome. Deactivated and blocks work just fine.

    Roman
    Spectator
    Posts: 3147
    April 17, 2019 at 8:17 pm #43471

    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.

    Roman
    Spectator
    Posts: 3147
    April 17, 2019 at 8:14 pm #43470

    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?

    Roman
    Spectator
    Posts: 3147
    April 17, 2019 at 10:47 am #43467

    Can you please provide WP admin login in Private reply for me to check? Thanks.

    Roman
    Spectator
    Posts: 3147
    April 17, 2019 at 6:52 am #43466

    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

    Roman
    Spectator
    Posts: 3147
    April 17, 2019 at 6:47 am #43465

    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.

    Roman
    Spectator
    Posts: 3147
    April 15, 2019 at 3:18 pm #43459

    Additional CSS please:

    #parallax-slider .carousel-caption p {
        display: block!important;
    }
    Roman
    Spectator
    Posts: 3147
    April 15, 2019 at 11:32 am #43457

    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.

    Roman
    Spectator
    Posts: 3147
    April 14, 2019 at 7:13 pm #43455

    You might enable the description on the smaller sizes in the customizer