Community Forums › Forums › Archived Forums › General Discussion › Bugs on Category and Author's Pages
Tagged: archives, genesis sample, masonry
- This topic has 5 replies, 2 voices, and was last updated 8 years, 4 months ago by susanta.
-
AuthorPosts
-
August 28, 2016 at 2:11 pm #192191susantaParticipant
Hello friends,
I'm working on custom design based off Genesis Sample theme. I'm used a plugin named GMIS which, as the plugin claims, "converts the blog page of Genesis themes into beautiful masonry layout with infinite scrolling effect."
However, I'm facing some issues on Archives pages: it hides the category description and author description as you can see here: http://aapkiblog.com/category/uncategorized/
I'd appreciate if you could help me figure out and fix the bugs.
Thanks,
http://aapkiblog.com/category/uncategorized/August 28, 2016 at 8:12 pm #192197Genesis DeveloperMemberAre your plugin compatible with Genesis? Are you checked it? If plugin is loading the completely custom template file, then Genesis hooks for intro text and description will not work. Also others Genesis hooks will not work.
August 28, 2016 at 10:38 pm #192201susantaParticipantHello Chinmoy, thanks for looking into my issues! I appreciate your time and help.
Yes, the plugin is fully compatible with Genesis, in fact, the plugin was developed out of a Genesis tut.
While loading on category archive and author archive, it actually hides them. A demo by Sridhar shows that it should not. http://websitesetuppro.com/demos/genesis-masonry/category/uncategorized/
Compare the above category page with my category page: http://aapkiblog.com/category/uncategorized/
You can see the description area is hidden behind the first row.
I'm not sure if this is a bug or the developer has intentionally done this.
Please, advise.
Thanks,
August 28, 2016 at 11:00 pm #192202Genesis DeveloperMemberOk.
Put the blog items inside a div wrapper. Right now there have no wrapper for blog items and this reason archive box is hiding by first 3 posts.
August 28, 2016 at 11:06 pm #192203Genesis DeveloperMemberOr You will change the hook or priority for archive description box and move it above the site inner div.
August 28, 2016 at 11:59 pm #192205susantaParticipantThanks a lot Chinmoy,
I changed the priority of category box, author box, and author title/description.
// Re-position Genesis Category Archives on Custom Post Type
remove_action( 'genesis_before_loop', 'genesis_do_taxonomy_title_description', 15 );
add_action( 'genesis_before_content', 'genesis_do_taxonomy_title_description', 15 );// Re-position Genesis Author Archives on Custom Post Type
remove_action( 'genesis_before_loop', 'genesis_do_author_box_archive', 15 );
add_action( 'genesis_before_content', 'genesis_do_author_box_archive', 15 );// Re-position Genesis Author Title/Descriptions on Custom Post Type
remove_action( 'genesis_before_loop', 'genesis_do_author_title_description', 15 );
add_action( 'genesis_before_content', 'genesis_do_author_title_description', 15 );I'm marking this as resolved.
Thanks again!
Cheers,
-
AuthorPosts
- The forum ‘General Discussion’ is closed to new topics and replies.