Forum Replies Created
-
AuthorPosts
-
December 13, 2012 at 2:54 pm in reply to: Moving new widget before footer widgets in Executive 2.0 #5034
Try using Priority:
add_action( 'genesis_before_footer', 'custom_before_footer', 5 );
Jennifer “Hermione” Baumann | Recommended StudioPress Developer
Dream Whisper Designs | Themessence | @dreamwhisper | If I’ve helped, like me on FacebookA pipe would just really be a border (right or left) on .menu-primary a. You should alter the existing styles for the primary menu.
Jennifer “Hermione” Baumann | Recommended StudioPress Developer
Dream Whisper Designs | Themessence | @dreamwhisper | If I’ve helped, like me on FacebookIt 404s

Jennifer “Hermione” Baumann | Recommended StudioPress Developer
Dream Whisper Designs | Themessence | @dreamwhisper | If I’ve helped, like me on FacebookIf 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.
Jennifer “Hermione” Baumann | Recommended StudioPress Developer
Dream Whisper Designs | Themessence | @dreamwhisper | If I’ve helped, like me on FacebookGlad you figured it out!
Jennifer “Hermione” Baumann | Recommended StudioPress Developer
Dream Whisper Designs | Themessence | @dreamwhisper | If I’ve helped, like me on FacebookNick has a tutorial: http://designsbynickthegeek.com/tutorials/versioning-your-stylesheet
Jennifer “Hermione” Baumann | Recommended StudioPress Developer
Dream Whisper Designs | Themessence | @dreamwhisper | If I’ve helped, like me on FacebookWelcome!
Jennifer “Hermione” Baumann | Recommended StudioPress Developer
Dream Whisper Designs | Themessence | @dreamwhisper | If I’ve helped, like me on FacebookIf 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.
Jennifer “Hermione” Baumann | Recommended StudioPress Developer
Dream Whisper Designs | Themessence | @dreamwhisper | If I’ve helped, like me on FacebookYou’re welcome!
Edit: Jared will likely address this in the next version of http://wordpress.org/extend/plugins/bbpress-genesis-extend/
Jennifer “Hermione” Baumann | Recommended StudioPress Developer
Dream Whisper Designs | Themessence | @dreamwhisper | If I’ve helped, like me on FacebookYes, 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' );
}
}
Jennifer “Hermione” Baumann | Recommended StudioPress Developer
Dream Whisper Designs | Themessence | @dreamwhisper | If I’ve helped, like me on FacebookYou 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
Jennifer “Hermione” Baumann | Recommended StudioPress Developer
Dream Whisper Designs | Themessence | @dreamwhisper | If I’ve helped, like me on Facebook-
This reply was modified 5 months, 1 week ago by
Jen Baumann. Reason: code posting issues
-
This reply was modified 5 months, 1 week ago by
Jen Baumann. Reason: code posting issues
Yes, it would :0)
Jennifer “Hermione” Baumann | Recommended StudioPress Developer
Dream Whisper Designs | Themessence | @dreamwhisper | If I’ve helped, like me on FacebookI 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;
}
Jennifer “Hermione” Baumann | Recommended StudioPress Developer
Dream Whisper Designs | Themessence | @dreamwhisper | If I’ve helped, like me on FacebookWelcome!
Jennifer “Hermione” Baumann | Recommended StudioPress Developer
Dream Whisper Designs | Themessence | @dreamwhisper | If I’ve helped, like me on FacebookCan 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.
Jennifer “Hermione” Baumann | Recommended StudioPress Developer
Dream Whisper Designs | Themessence | @dreamwhisper | If I’ve helped, like me on Facebook -
This reply was modified 5 months, 1 week ago by
-
AuthorPosts