PenciDesign
Forum Replies Created
-
Forum: Plugins
In reply to: [Easy WP Page Navigation] why it is not working for me?Hi there,
No, you don’t need purchase any themes to use this plugin.
Before using any plugins, you need check the description/instalation/FAQ of this plugin.Please read it first.
Best Regards,
PenciDesignHi there,
It depends on where you place the page navigation code ??
Best Regards
Forum: Plugins
In reply to: [Easy WP Page Navigation] тема Hemingmay версии 1.54Hi there,
Can you speak English?
Best Regards,
PenciDesignForum: Plugins
In reply to: [Easy WP Page Navigation] Just for Posts? Or Pages too?Hi there,
I think it’s problem with your query. If you want to query to Pages you need use to your custom query:
'post_type' => 'page'
And you can see example for custom query on installation tab ??
Best Regards,
PenciDesignForum: Plugins
In reply to: [Fluid Responsive Slideshow] Cannot create slideshowHi candy,
Seems you are looking for a wordpress slider plugin to do your job.
One day ago I have received your review with my plugin.
Can we talking about it more?
Please send me a email to [email protected], I will help you.Thank you and best regards,
PenciDesignForum: Reviews
In reply to: [Penci Slider] Not really responsiveYou can show me my website? I will check it. This plugin working great on our customers website. And in our demo, slider is working. You’re confused?
Forum: Plugins
In reply to: [Easy WP Page Navigation] Custom Text FieldYou are welcome ??
Forum: Plugins
In reply to: [Easy WP Page Navigation] Custom Text FieldFirst, Thank for your review ??
And with your problem, I updated version 1.3
In new version, you can use HTML to custom text for First Page, Last Page, Next Page and Previous Page ??Best Regards.
Forum: Plugins
In reply to: [Easy WP Page Navigation] pagination with get_postsHello,
Why you not use WP_Query() ? With this code, you can do that like so:
$paged = ( get_query_var( 'paged' ) ) ? absint( get_query_var( 'paged' ) ) : 1; $args = array('post_type'=> 'custom_post','posts_per_page' => 5, 'paged' => $paged,); $myposts = new WP_Query( $args ); if( $myposts->have_post() ): while ( $myposts->have_posts() ) : $myposts->the_post(); //content endwhile; wp_reset_postdata(); echo easy_wp_pagenavigation( $myposts ); endif;
The sweet and short of this, don’t use get_posts if you need paginated queries. get_posts works perfectly if you are going to use a custom query that doesn’t need pagination, but it really becomes a big complicated mess when you need to introduce pagination.
Best regard,
Pham TuanForum: Plugins
In reply to: [Easy WP Page Navigation] How to put pagination at the bottom of the page?Hi there,
I don’t saw my plugin install in your website.
With your question, put this code:<?php echo easy_wp_pagenavigation(); ?>
to before “endif;” of index.php file, or front page template( if you use front page )
Hope this help,
Best regard,
Pham TuanForum: Plugins
In reply to: [Easy WP Page Navigation] Where Do I Place Your Code?Hi there,
In your theme, maybe you need to find calls to next_posts_link() and previous_posts_link() and replace them.
Example the Twentyten theme, it looks like this:
<div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav">←</span> Older posts', 'twentyten' ) ); ?></div>
<div class="nav-next"><?php previous_posts_link( __( 'Newer posts <span class="meta-nav">→</span>', 'twentyten' ) ); ?></div>
You would replace those two lines with this:
<?php echo easy_wp_pagenavigation(); ?>
With custom query, you can see example your post above.
Default of a theme, you can see loops in category.php, archive.php, search.php, tag.php files and can add this code:
<?php echo easy_wp_pagenavigation(); ?>
after
endwhile;
of the loops.
And go to Settings -> Easy WP Page Nav for configuration.If this is hard for you, I think you need a developer to help.
Best regards!
Forum: Plugins
In reply to: [Easy WP Page Navigation] Links to page 2/3/… do not workGlad when it works with you,
You’re welcome ??Forum: Plugins
In reply to: [Easy WP Page Navigation] responsive menuVersion 1.1.1 is available, I fixed navigation responsive.
Update and Enjoy!
If you love this plugin, don’t forget to rate for it ??Forum: Plugins
In reply to: [Easy WP Page Navigation] responsive menuHi there,
Thank you for report for me, I will fixed it in next update.
Best regards,
Pham TuanForum: Plugins
In reply to: [Easy WP Page Navigation] More information about installing@luuuciano it’ll work ??
I’m glad for it work with you ??