Community Forums › Forums › Archived Forums › Design Tips and Tricks › GFWA: Pagination not working.
Tagged: genesis featured widget amplfied, gfwa
- This topic has 6 replies, 3 voices, and was last updated 11 years, 7 months ago by
Ozzy.
-
AuthorPosts
-
June 19, 2013 at 5:25 pm #46820
jjc710
MemberHi, all maybe I can get some assistance here, as this matter is rather urgent, and I am sure Nick is busy as he has not yet replied to my email.
If you take a look at my site: http://www.thetvstop.com/tv/cw/the-vampire-diaries and more further beyond page 2, you will see that it keeps displaying not found errors, when there are indeed many more post to show.
I have followed some advice Nick has provided others on WP.org,:
http://wordpress.org/support/topic/plugin-genesis-featured-widget-amplified-pagination-not-working
and some other one I cant remember at the top of my head, and the fixes within just dont work. Does anybody have any clue how to fix this issue?
Thanks,
jack
http://www.thetvstop.com/tv/cw/the-vampire-diariesJune 19, 2013 at 9:25 pm #46840AnitaC
KeymasterThat page doesn't look like it's been configured like the home page. How did you format that?
Need help with customization or troubleshooting? Reach out to me.
June 19, 2013 at 10:04 pm #46851jjc710
MemberIts a widget area. The page is constructed using hooks, and conditional tags.
June 20, 2013 at 5:30 pm #46956AnitaC
KeymasterDid you create a new page template using hooks and conditional tags? Somewhere in your conditional statement is where your issue is probably located.
Need help with customization or troubleshooting? Reach out to me.
June 20, 2013 at 5:30 pm #46957AnitaC
KeymasterYou should probably post this on the plugin support page. Nick doesn't visit the community forum often - http://wordpress.org/support/plugin/genesis-featured-widget-amplified.
Need help with customization or troubleshooting? Reach out to me.
June 20, 2013 at 5:57 pm #46963jjc710
MemberIt's simply a widget with a conditional statement.
Condtion:
is_category(1057) || is_tag('the-vampire-diaries')
Hook:
<?php /** Remove the standard loop */ remove_action( 'genesis_loop', 'genesis_do_loop' ); /** Add the widget area */ add_action( 'genesis_loop', 'tvd_catsingletag_widget' ); function tvd_catsingletag_widget() { ?>[tvdcatsingletag]<?php; } ?>
Then simply plop the GFWA widget, into that widget area. '
I've emailed Nick, no reply. As I said, this is kinda something I need to figure out ASAP, which is why I've asked, and as I stated above, I've tried all solutions already posted on wp.org, with no luck, and was directed to ask here by others.
June 21, 2013 at 5:51 pm #47135Ozzy
Memberi've never used the widget like you're using it, but i found this on a previous question asked on the plugin page and it's to add this to your functions.php:
add_action( 'pre_get_posts', 'child_change_home_query' );
/** Changes the query on the home page*/
function child_change_home_query( $query ) {if( $query->is_main_query() && $query->is_home() ) {
$query->set( 'posts_per_page', '5' );//change the '5' to the posts setting for your widget
}}
the answer was taken from here: http://wordpress.org/support/topic/plugin-genesis-featured-widget-amplified-older-posts-not-working?replies=12
-
AuthorPosts
- The forum ‘Design Tips and Tricks’ is closed to new topics and replies.