• 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

anyname

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 13 posts - 1 through 13 (of 13 total)
  • Author
    Posts
  • January 15, 2014 at 5:31 am in reply to: Default Commenting, Disqus or Livefyre #85314
    anyname
    Member

    I'm seeing the facebook commenting plugin used more and more on WP sites. Seems to work well. We use it on our bigger site that as a teen-20s demographic.

    Disqus seems to be getting somewhat of a following as well.

    In the end it's whatever can be used to make it hard for spammers (ie seo link farmers) to create the ubiquitous 'this post is great, I've bookmarked it!' post.

    S

    December 12, 2013 at 5:21 pm in reply to: WordPress 3.8 compatibility #78668
    anyname
    Member

    Updated site I'm developing with genesis & child theme. No issues so far as I can see.

    Love the new WP admin theme. Very clean and seems to be a tad zippier. Widget 2-column reorganisation is welcome. Fed up with multiple custom sidebars and having to infinitely scroll just to load them.

    November 16, 2013 at 3:59 pm in reply to: Backstretch & IE11 #73462
    anyname
    Member

    Forgot to mention. in the backstretch-set.js file the tag is changed to '.site-wrap' from 'body'.

    November 14, 2013 at 3:59 am in reply to: Genesis Featured Widget Amplified — Dead Plugin? #72901
    anyname
    Member

    The WordPress included jQuery version has moved on somewhat in the last few release cycles especially since 3.5. Along with this is a number of deprecated features of jQuery which may cause issues with existing plugins. In this case the 'live' function is deprecated in favour of event delegation using 'on'

    ('select.widget-control-save').live('change', function(){

    will become

    ('select').on('change', '.widget-control-save', function() {

    Try that.

    November 8, 2013 at 8:45 am in reply to: Genesis and Bootstrap 3 #71668
    anyname
    Member

    You may want to look at: http://genesissandbox.com/

    Not sure how up to date it is as far as bootstrap3 & genesis2 but worth a look.

    November 8, 2013 at 8:13 am in reply to: Genesis and Bootstrap 3 #71667
    anyname
    Member

    Yes. PHP / MySQL / jQuery.

    November 8, 2013 at 8:08 am in reply to: Genesis and Bootstrap 3 #71664
    anyname
    Member

    Clean, up-to-date. Good starting point for a lot of templates.

    Doesn't have a lot of the knobs & twiddly bits of bootstrap. Uses normalise.css as the core styling for current & legacy browsers which genesis2 does as well.

    November 8, 2013 at 4:44 am in reply to: Genesis and Bootstrap 3 #71650
    anyname
    Member

    Though they've lifted the column width calculations from bootstrap there's still a fair amount of work to either integrate the two or take the best bits from bootstrap3 and merge into the genesis child theme - possibly with options / bits from other genesis html5 themes. Saying that there's more similarity between genesis2 & bootstrap3 for html/css standards.

    If you've ever dived into bootstrap3 css you'll realise how much they use heirarchy structures for each section. Had my head spinning. Genesis is much more flat structured in comparison.

    Not sure whether the core genesis devs would ever get into this, probably too much to support. Something I've considerd doing after using bootstrap with opencart.

    Another one I'd like to see genesified is html5boilerplate.

    November 8, 2013 at 4:31 am in reply to: Structural wraps and navigation in header right widget #71647
    anyname
    Member

    Still an issue. No word from the Genesis people on this or the other structural wrap issue.

    In the end I used a non widget workaround: Your theme functions.php

    
    //* Custom header menu
    add_action( 'genesis_header_right', 'sk_header_menu', 5 );
    function sk_header_menu() {
    
    	//set header menu classes
    	$class = 'menu genesis-nav-menu menu-header';
    	if ( genesis_superfish_enabled() ) { $class .= ' js-superfish'; }
    	$args = array(
    		'menu' 		=> 'Main Menu',
    		'theme_location' 	=> '',
    		'container'      	=> '',
    		'menu_class'     	=> $class,
    		'menu_id' 	=> 'menu-main-menu',
    		'echo'           	=> 0
    	);
    
    	//add header menu
    	$headernav = wp_nav_menu( $args );
    
    	//test menu
    	if ( ! $headernav ) { return; }
    
    	//set up structural markup
    	$headernav_markup_open = genesis_markup( array(
    		'html5'   => '<nav %s>',
    		'xhtml'   => '<div id="header-menu">',
    		'context' => 'nav-header',
    		'echo'    => false
    	) );
    	$headernav_markup_open 	.= genesis_structural_wrap( 'nav', 'open', 0 );
    	$headernav_markup_close	 = genesis_structural_wrap( 'nav', 'close', 0 );
    	$headernav_markup_close	.= genesis_html5() ? '</nav>' : '</div>';
    	$headernav_output 	 = $headernav_markup_open . $headernav . $headernav_markup_close;
    
    	//output menu
    	echo apply_filters( 'sk_do_headernav', $headernav_output, $headernav, $args ); 
    }
    

    This was using a menu called 'Main Menu' I created as normal in the admin menu section. You'll obviously have to change this and the id's

    November 5, 2013 at 9:20 am in reply to: Bluehost wants to upgrade to PHP 5.4 #71049
    anyname
    Member

    IMO just go to the standard 5.4 version. I'm assuming they're using just the standard LAMP stack i.e Apache, MySQL , PHP and not some fancy nginx incarnation. MySQL will probably be 5.5+ which is fine and Apache either 2.2 or 2.4, probably the former for now.

    PHP 5.4 is fine with WP and is much improved over 5.2 and 5.3 both of which are end-of-life streams. We're on 5.5 atm with 5.4 the legacy stream. Hosts are always a stream behind at least.

    October 28, 2013 at 6:02 am in reply to: Header wrap? #69428
    anyname
    Member

    Feature? Bug? Apathy...?

    October 25, 2013 at 7:28 am in reply to: Header wrap? #68823
    anyname
    Member

    Just noticed the section in the framework init file...

    //* Maybe add support for structural wraps
    if ( ! current_theme_supports( 'genesis-structural-wraps' ) )
        add_theme_support( 'genesis-structural-wraps', array( 'header', 'menu-primary', 'menu-secondary', 'footer-widgets', 'footer' ) );
    

    So it's forcing the wrap by default for these sections? Seems strangely against the logic of their use and not in the genesis markup guide.

    September 10, 2013 at 5:03 pm in reply to: Expose Pro menu – WHAT? #61801
    anyname
    Member

    Came here to see if anyone else could figure out the logic. Damned if I can. Might have to join you in the dark corner with a cold towel over my eyes.

    Nice theme, and can see plenty of uses. But first impression of any site using it would 'nice, but err, what do I do now?'

    Maybe put the menu at the bottom / side and move to the top when scrolling. At least give someone a way to find a contact form!

    Bout as useful as a parallax page without a top button, sorry!

  • Author
    Posts
Viewing 13 posts - 1 through 13 (of 13 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