Forum Replies Created
-
AuthorPosts
-
Jen BaumannParticipant
If you are using Genesis SEO, then in the SEO section for the post, you'll see Custom Redirect URI. If using Yoast SEO, there's an Advanced Tab in the post SEO section with 301 redirect. You can past that link there.
Jen BaumannParticipantGlad you figured it out!
Jen BaumannParticipantNick has a tutorial: http://designsbynickthegeek.com/tutorials/versioning-your-stylesheet
Jen BaumannParticipantWelcome!
Jen BaumannParticipantIf you want to use the standard layout on your category pages like your tags display: http://nwsuburbschicago.com/tag/deby-dato/, delete category.php from the Innov8tive theme folder.
Jen BaumannParticipantYou're welcome!
Edit: Jared will likely address this in the next version of http://wordpress.org/extend/plugins/bbpress-genesis-extend/
Jen BaumannParticipantYes, the layout would only work when inside the admin area. I can replicate this and do see it shows only for administrators.
Try this to disable the layout options and other user profile additions on the bbPress Profile Edit page:
add_action( 'genesis_before', 'bbpress_remove_user_admin_settings' );
function bbpress_remove_user_admin_settings() {
if ( bbp_is_single_user_edit() ) {
remove_action( 'show_user_profile', 'genesis_user_options_fields' );
remove_action( 'show_user_profile', 'genesis_user_layout_fields' );
remove_action( 'show_user_profile', 'genesis_user_seo_fields' );
remove_action( 'show_user_profile', 'genesis_user_archive_fields' );
}
}Jen BaumannParticipantYou could do something like this, but it assumes that your page depth is how you have it organized in the page hierarchy, not menu hierarchy.
Due to code posting problems, I just made it a snippet here: http://dreamwhisperdesigns.com/?p=1112
Jen BaumannParticipantYes, it would :0)
Jen BaumannParticipantI found your post here: http://wordpress.org/support/topic/missing-content-in-print-friendly-page
It is probably better to add a post class.
add_filter('post_class', 'additional_classes');
function additional_classes($classes) {
$classes[] = 'myclass';
return $classes;
}Jen BaumannParticipantWelcome!
Jen BaumannParticipantCan you explain more what you are trying to accomplish? Depending on what you are doing, you probably don't need to add a class to the entry-content div and can either use existing body or post classes.
Jen BaumannParticipantYou need to use the blog PAGE template to display all your posts. Add a page, then select the Blog Template at the right hand side of the edit screen. Settings for the blog page template are under Genesis > Theme Settings.
Jen BaumannParticipantYou might try this: http://wordpress.org/extend/plugins/bbpress-genesis-extend/
Jen BaumannParticipantYou might be able to do something with this: http://wordpress.org/extend/plugins/proquoter/
Jen BaumannParticipantWelcome!
Jen BaumannParticipantYou're welcome!
Jen BaumannParticipantAlso, if you develop in a subdirectory, you can use http://codex.wordpress.org/Giving_WordPress_Its_Own_Directory#Using_a_pre-existing_subdirectory_install to go live.
Jen BaumannParticipantYou actually need to use this code in the reverse. Put your remove actions within the conditional. If you are just trying to do this on the category pages, then your conditional is is_category(). More on conditionals: http://codex.wordpress.org/Conditional_Tags
November 30, 2012 at 4:55 pm in reply to: Code snippets – add body class to category or to page template #2674Jen BaumannParticipantI do this quite frequently for certain client templates.
Another option is to use the body class field under Layout settings.
-
AuthorPosts