Forum Replies Created
-
AuthorPosts
-
sahdowParticipant
In customizer logo is under site-identity not header image
October 31, 2018 at 6:26 am in reply to: Using an SEO plugin that doesn't trigger Genesis SEO deactivation #224091sahdowParticipantThanks Victor solution for anyone else who needs it is below:
/** Disable Genesis SEO When SmartCrawl Enabled */ add_filter('genesis_detect_seo_plugins', 'md_disable_genesis_seo'); function md_disable_genesis_seo( $array ) { $array['classes'][] = "Smartcrawl_Loader"; return $array; }
sahdowParticipantThanks Victor, I had tried that before but had a caching issue - your reply led me to fix it.
December 28, 2017 at 11:12 am in reply to: Position JetPack Sharing buttons below page break navigation #214899sahdowParticipantIn case anyone else runs into this problem, here are the snippets to remove and reposition (after post content and meta, above comment form) the sharing buttons in Genesis.
// Remove JetPack Sharing Buttons function remove_jetpack_share_button() { remove_filter( 'the_content', 'sharing_display',19 ); remove_filter( 'the_excerpt', 'sharing_display',19 ); } add_action( 'loop_start', 'remove_jetpack_share_button' ); // Reposition JetPack Sharing Buttons add_action('genesis_entry_footer', 'genesis_share_after_content'); function genesis_share_after_content() { if ( function_exists( 'sharing_display' ) ) return sharing_display( '', true ); }
September 18, 2015 at 12:02 pm in reply to: latest Genesis update causing CPT archive issues? #166022sahdowParticipantI had a different issue with a CPT on one site after updating to genesis 2.2.2 - takes forever to load.
Still looking for a permanent solution, but reverting to genesis 2.1.2 has provided a work around.
sahdowParticipantProviding you are trying to override theme settings and have CPT display differently than regular post types...
Add to functions - replace CPT with your post type (3 occurrences in following snippet
add_action( 'genesis_before', 'CPT_conditional_actions' ); function CPT_conditional_actions() { if( is_archive() && 'CPT' == get_post_type() ) { //put your actions here remove_action( 'genesis_entry_content', 'genesis_do_post_content' ); add_action( 'genesis_entry_content', 'the_content' ); } }
sahdowParticipantRead reply #156184 immediately above mine.
Click on his link (it's not in the signature - which I would be totally cool with). Takes you to a page that requires a purchase to get the solution, how's that not pitching your wares in a support forum?
I don't care how much someone contributes, most forums would consider that a TOS violation.
"Here’s my solution http://wpsites.net/wordpress-themes/move-featured-image-before-title-on-genesis-grid-loop/"
sahdowParticipantBraddalton pitching your membership site in the forums isn't cool. Why not just post the code you mention and be part of the community, or if you want to charge for your information - do it in the appropriate place.
March 11, 2015 at 12:35 pm in reply to: Change Text of Continue Reading with Manual Excerpt in Post Archives #144064sahdowParticipantThanks for the reply, I figured out the issue - sharing in case anyone else has the same problem:
It's a plugin conflict with "Q and A FAQ and Knowledge Base for WordPress" The plugin overrides the theme functions which is why I couldn't get any excerpt functions to work.
sahdowParticipantThanks, genrock but it doesn't work, hence my reason for the post - see my original post
sahdowParticipantBasically, want the featured widgets to display below the post content and sidebar (content_sidebar_wrap) and move it down immediately above the footer widgets.
sahdowParticipantFind the following in post functions:
/** Add post image above post title */
add_action( 'genesis_before_post_title', 'decor_post_image' );
function decor_post_image() {if ( is_page() ) return;
if ( $image = genesis_get_image( 'format=url&size=post-image' ) ) {
printf( '<a href="%s" rel="bookmark" class="post-photo"><span class="post-date">%s</span><img src="%s" alt="%s" /></a>', get_permalink(), do_shortcode( '<em>[post_date format="j"]</em>[post_date format="F Y"]' ), $image, the_title_attribute( 'echo=0' ) );
}}
Change to:
/** Add post image above post title */
add_action( 'genesis_before_post_title', 'decor_post_image' );
function decor_post_image() {if ( is_page() ) return;
if ( $image = genesis_get_image( 'format=url&size=post-image' ) ) {
printf( '<a href="%s" rel="bookmark" class="post-photo"><img src="%s" alt="%s" /></a>', get_permalink(), $image, the_title_attribute( 'echo=0' ) );
}}
sahdowParticipantDid you import your content from another WordPress site, or are you using multi-site?
sahdowParticipantAlso note the width of "home-middle-1" - you are placing a 900 px slider in a 285 px box
sahdowParticipantI find it's easiest to deal with one issue at a time. From what I can see (just glancing) you haven't defined margins. Think of the margin as the container, but the padding as the space inside the container and how close to the walls.
Start by centering your footer menu:
Top left/right Bottom
0 auto 0http://www.w3schools.com/css/css_margin.asp
Then look at your list items, set to display inline
http://www.w3schools.com/css/css_list.asp
December 1, 2012 at 10:03 am in reply to: Looking for feedback / suggestions on my Surf / Kayak Studio Press News Blog #2756sahdowParticipantPage background makes top menu hard to read, perhaps add a background to the menu.
sahdowParticipantHave you tried adding a float left to the images?
something like ( I didn't test):
# nav li img {
float: left;
margin-right: 10px;
}Also check the rss and twitter classes in your style sheet and you can use the #follow id associated with the list item the foloow information is in.
sahdowParticipantI used a slider not long ago that allowed me to have more than one. Unfortunately can't remember what it was called but a quick search found:
sahdowParticipantI don't want to step on any toes and I don't want to get paid for something like that either, but if you post exactly what you have so far on the page template and functions.php I'll tweak it since (as far as I can tell - you basically have it).
sahdowParticipantSozo is right, I forgot it's a page template, so there is a place to select the simple sidebars.
As for my example, all the bolded items are what need to be changed.
-
AuthorPosts