• Skip to main content
  • Skip to forum navigation

StudioPress

  • Shop for Themes
  • My StudioPress

Forum navigation

  • Home
  • General Genesis Discussions
  • StudioPress Themes
  • Genesis Blocks
    • Genesis Blocks
    • Genesis Custom Blocks
  • Retired Themes
  • FAQs
  • Forum Rules
  • Internationalization and Translations
  • Forum Bugs and Suggestions
  • Forum Log In

Are You Using The WordPress Block Editor?

Genesis now offers plugins that help you build better sites faster with the WordPress block editor (Gutenberg). Try the feature-rich free versions of each plugin for yourself!

Genesis Blocks Genesis Custom Blocks

davebonds

Welcome!

These forums are for general discussion on WordPress and Genesis. Official support for StudioPress themes is offered exclusively at My StudioPress. Responses in this forum are not guaranteed. Please note that this forum will require a new username, separate from the one used for My.StudioPress.

Log In
Register Lost Password
  • Profile
  • Topics Started
  • Replies Created
  • Engagements
  • Favorites

Forum Replies Created

Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • April 20, 2014 at 10:10 pm in reply to: Genesis_custom_loop next page link does not work on homepage. #101580
    davebonds
    Member

    Try adding your page slug as a pagename parameter to the query args. Replace sample-page with your page slug:

    'pagename' => 'sample-page',

    So this:

    $args = array(
    		'thumb' => true,
    		'post_type' => 'post',
    		'author' => '16',
    		'paged' => $paged,
    		'posts_per_page' => 8
    		);

    Becomes this:

    $args = array(
    		'thumb' => true,
    		'post_type' => 'post',
    		'author' => '16',
    		'pagename' => 'sample-page', 
    		'paged' => $paged,
    		'posts_per_page' => 8
    		);
    April 13, 2014 at 7:49 pm in reply to: Issue with website view in chrome #100114
    davebonds
    Member

    Looks like you just need to clear the floats for it to display after all the floated elements. Try adding this bit of CSS:

    p.more-from-category {clear: both;}

    April 13, 2014 at 11:57 am in reply to: How to remove WordPress comment system? #100063
    davebonds
    Member

    It sounds like Disqus requires the default WP comments to be displayed in order to display Disqus, and as they mention, it will show default WP comments while the page loads then it will be replaced with Disqus.

    You can probably hide the default comments section with CSS to prevent it from showing in the browser while the page loads:

    .entry-comments {display: none;}

    April 13, 2014 at 11:41 am in reply to: How to remove WordPress comment system? #100059
    davebonds
    Member

    Looking at your site and all I'm seeing is Disqus. Not seeing what is in your screenshot or any remnants of the default WP comments.

    April 13, 2014 at 10:42 am in reply to: How to remove WordPress comment system? #100032
    davebonds
    Member

    Try adding this to your functions.php file to remove the genesis_get_comments_template action:

    remove_action( 'genesis_after_entry', 'genesis_get_comments_template' );

    April 11, 2014 at 4:49 pm in reply to: Outreach Pro Home Bottom Widget Problem #99748
    davebonds
    Member

    You have this block of CSS in the .footer-widgets section which adds extra padding to the 1 and 2 widgets but none to the 3 and 4 widgets:

    .footer-widgets-1,
    .footer-widgets-2 {
    	margin-right: 40px;
    	margin-right: 4rem;
    }

    Remove that bit of CSS or add .footer-widgets-3 and .footer-widgets-4 to that declaration so they all have the same padding.

    April 2, 2014 at 11:43 pm in reply to: MAC vs PC: MetroPro Theme displayed differently on both? Help! #98232
    davebonds
    Member

    No worries. I enjoy trying to figure out strange issues like this that seem to have no rhyme or reason. It's always just a process of elimination.

    We can tell what is active and being loaded by looking at the source code. We can't know what is not active. Your source code is clean right now (except for the stray quote I mentioned earlier) but as @anitac mentioned, there could always be something loaded in the backend through PHP (a hack or other bad code) and we can't determine that without getting into your account.

    April 2, 2014 at 11:31 pm in reply to: MAC vs PC: MetroPro Theme displayed differently on both? Help! #98226
    davebonds
    Member

    Very odd. I see no plugins are active now, but doing an Inspect Element on your page still shows two <body> tags. Again, strangely, only one <body> tag is in the actual source code.

    I noticed that your div.footer-widgets and footer.site-footer are outside of the div.site-container when they should be inside. Don't know if this is causing the issue (it shouldn't), but it is incorrect.

    Did a W3C validation and noticed a stray quote in your "Track with me" text widget code, on the Google+ link, in the img element after the closing slash. Remove that quote at the end and see if it has any effect:
    <a rel="author" href="https://plus.google.com/u/0/+RandallRRussell/about"><img src="http://randallrussell.com/wp-content/uploads/2014/03/randall-russell-google-48x48.png" border="0" alt="" /"></a>

    April 2, 2014 at 10:08 pm in reply to: MAC vs PC: MetroPro Theme displayed differently on both? Help! #98211
    davebonds
    Member

    Both sites are still showing active plugins. Also, both sites (only on PC) show two body tags when doing an inspect element, but not in the actual source code, meaning the browser is adding that, usually due to invalid HTML, or javascript after page load.

    Each of the sites have an invalid body tag of: <body style>
    Followed by a <body> tag with no classes.

    Your main site has the <body style> tag in the middle of the <head> which is then closed by the browser. That is followed by code that is supposed to be in the <head>, but isn't, after the <body style> tag.

    Your other site has the <body style> tag followed immediately by the <body> tag.

    The common plugin I see on both is the a10-imaio plugin. I know you've said you deactivated it, but it's still showing active, so be sure to deactivate that plugin and clear any caches.

    April 2, 2014 at 6:41 pm in reply to: MAC vs PC: MetroPro Theme displayed differently on both? Help! #98191
    davebonds
    Member

    Has to be the <div> in the <head>. You can't do that. The browser, some at least, will think that is the beginning of the <body>. Looking at the source on a PC, you'll see there are no body classes are being added because of that.

    April 2, 2014 at 6:27 pm in reply to: MAC vs PC: MetroPro Theme displayed differently on both? Help! #98187
    davebonds
    Member

    Found the issue...

    Different browsers on different OS's can sometimes ignore bad HTML.

    The problem is with your Facebook code. Viewing the source, you have a <div> within the <head> section. This is creating two body classes when it's rendered by the browser and Genesis relies on adding body classes for colors and layout. While mobile browsers, and apparently on Mac browsers, overlook this error, it breaks on PC browsers.

    The offending code is this: <div id="fb-root"></div>

    It's probably in the Genesis > Theme Settings > Header Scripts section. Remove that <div> and the <head> won't end prematurely and should render properly.

    Edit: If it's not a script added to the theme settings, it's probably a Facebook plugin of some kind. If so, deactivate any FB plugin you have.

  • Author
    Posts
Viewing 11 posts - 1 through 11 (of 11 total)

CTA

Ready to get started? Create a site or shop for themes.

Create a site with WP EngineShop for Themes

Footer

StudioPress

© 2026 WPEngine, Inc.

Products
  • Create a Site with WP Engine
  • Shop for Themes
  • Theme Features
  • Get Started
  • Showcase
Company
  • Brand Assets
  • Terms of Service
  • Accptable Usse Policy
  • Privacy Policy
  • Refund Policy
  • Contact Us
Community
  • Find Developers
  • Forums
  • Facebook Group
  • #GenesisWP
  • Showcase
Resources
  • StudioPress Blog
  • Help & Documentation
  • FAQs
  • Code Snippets
  • Affiliates
Connect
  • StudioPress Live
  • StudioPress FM
  • Facebook
  • Twitter
  • Dribbble