aleroyg
Forum Replies Created
Viewing 8 replies - 1 through 8 (of 8 total)
-
Forum: Plugins
In reply to: [Contact Form DB] CF7 Menus with Pipes and repeated emailsThanks for the answer, I’ll try!
Forum: Plugins
In reply to: [Contact Form DB] CF7 Menus with PipesResolved after I saw this:
https://www.ads-software.com/support/topic/form2email-with-pipe-character-in-select-menu?replies=5
Forum: Plugins
In reply to: [Contact Form DB] CF7 Menus with PipesSome one?
Forum: Plugins
In reply to: [Polylang] Polylang makes the WP-PageNavi not workWhen I migrated from localhost to server it works! Thank you!
Forum: Plugins
In reply to: [Polylang] Polylang makes the WP-PageNavi not workThe site is still in the test environment. I’ll keep trying.
Forum: Plugins
In reply to: [Polylang] Polylang makes the WP-PageNavi not workI just do this and the error continues …
Forum: Plugins
In reply to: [Polylang] Polylang makes the WP-PageNavi not workHi Chrysti,
it work in the index.php in the Twenty Fifteen like this:
<?php get_header(); ?> <div id="primary" class="content-area"> <main id="main" class="site-main" role="main"> <?php if ( have_posts() ) : ?> <?php // Start the loop. while ( have_posts() ) : the_post(); get_template_part( 'content', get_post_format() ); // End the loop. endwhile; // Previous/next page navigation. wp_pagenavi(); // If no content, include the "No posts found" template. else : get_template_part( 'content', 'none' ); endif; ?> </main><!-- .site-main --> </div><!-- .content-area --> <?php get_footer(); ?>
but I made a news.php in the Twenty Fifteen and I got the same problem:
<?php /* Template Name: News */ ?> <?php get_header(); ?> <div id="primary" class="content-area"> <main id="main" class="site-main" role="main"> <?php if ( have_posts() ) : ?> <?php $newsLoop = new WP_Query( 'posts_per_page=2&paged=' . $paged ); while ( $newsLoop->have_posts() ) : $newsLoop->the_post(); ?> <?php get_template_part( 'content', get_post_format() ); ?> <?php endwhile; ?> <div class="pag"><?php if(function_exists('wp_pagenavi')) { wp_pagenavi(array( 'query' => $newsLoop )); } ?></div> <?php else : ?> <?php get_template_part( 'template-parts/content', 'none' ); ?> <?php endif; ?> </main><!-- .site-main --> </div><!-- .content-area --> <?php get_footer(); ?>
Thank you for your quick reply
Forum: Plugins
In reply to: [Advanced Editor Tools] Translation supportit would be great!! tks
Viewing 8 replies - 1 through 8 (of 8 total)