Forum Replies Created
-
AuthorPosts
-
Jen Baumann
ParticipantIf 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 Baumann
ParticipantGlad you figured it out!
Jen Baumann
ParticipantNick has a tutorial: http://designsbynickthegeek.com/tutorials/versioning-your-stylesheet
Jen Baumann
ParticipantWelcome!
Jen Baumann
ParticipantIf 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 Baumann
ParticipantYou're welcome!
Edit: Jared will likely address this in the next version of http://wordpress.org/extend/plugins/bbpress-genesis-extend/
Jen Baumann
ParticipantYes, 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 Baumann
ParticipantYou 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 Baumann
ParticipantYes, it would :0)
Jen Baumann
ParticipantI 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 Baumann
ParticipantWelcome!
Jen Baumann
ParticipantCan 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 Baumann
ParticipantYou 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 Baumann
ParticipantYou might try this: http://wordpress.org/extend/plugins/bbpress-genesis-extend/
Jen Baumann
ParticipantYou might be able to do something with this: http://wordpress.org/extend/plugins/proquoter/
Jen Baumann
ParticipantWelcome!
Jen Baumann
ParticipantYou're welcome!
Jen Baumann
ParticipantAlso, 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 Baumann
ParticipantYou 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 Baumann
ParticipantI do this quite frequently for certain client templates.
Another option is to use the body class field under Layout settings.
-
AuthorPosts