• 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

genevishgraphics

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 20 posts - 1 through 20 (of 48 total)
1 2 3 →
  • Author
    Posts
  • June 9, 2017 at 12:58 pm in reply to: Column Class issues after upgrade to 2.5.1 #207526
    genevishgraphics
    Member

    YAY all fixed. Thanks guys!

    June 9, 2017 at 10:30 am in reply to: Column Class issues after upgrade to 2.5.1 #207512
    genevishgraphics
    Member

    Using Featured Custom Post Types for Genesis Plugin and have the same situation. Should be 3 cols but showing up in one 🙁

    January 30, 2015 at 7:09 am in reply to: Executive Pro – responsive automatic dropdown sub-menu? #139038
    genevishgraphics
    Member

    I am having this exact issue! The mobile menu is just not intuitive to click on a tiny down arrow to open the second level. There has to be a better solution. It makes more sense to have it open upon clicking the menu item text rather than the icon. Any suggestions here??

    June 24, 2014 at 11:23 am in reply to: Remove Blog posts on home page eleven40Pro #111311
    genevishgraphics
    Member

    Thank you so much, it worked perfectly 🙂

    February 4, 2014 at 10:14 am in reply to: Need help displaying full titles in Runway theme #88536
    genevishgraphics
    Member

    Any update on this?

    January 28, 2014 at 2:04 pm in reply to: Show comment form on home page #87547
    genevishgraphics
    Member

    Front Page displays your latest posts. That is why I am soooo confused. Everything is set correctly - any other ideas?

    January 28, 2014 at 9:55 am in reply to: Show comment form on home page #87519
    genevishgraphics
    Member

    I totally removed the home.php and the home page still does not display the blog page normally - I have combed through the entire functions.php and there is nothing related to the home page at all. So confused!

    November 18, 2013 at 6:23 pm in reply to: Function – Agency_post_image #74077
    genevishgraphics
    Member

    Thanks!!

    November 18, 2013 at 6:19 pm in reply to: Function – Agency_post_image #74075
    genevishgraphics
    Member

    Worked great, whew! I just knew it had something to do with that function, still learning conditional statements 🙂
    Thanks for sticking around to help!!

    November 18, 2013 at 6:05 pm in reply to: Function – Agency_post_image #74071
    genevishgraphics
    Member

    Seems like is is the code snippet I noted earlier - here is the full thing

    <?php
    // Start the engine
    require_once( get_template_directory() . '/lib/init.php' );
    
    // Child theme (do not remove)
    define( 'CHILD_THEME_NAME', 'Runway Theme' );
    define( 'CHILD_THEME_URL', 'http://my.studiopress.com/themes/runway/' );
    
    // Add Viewport meta tag for mobile browsers
    add_action( 'genesis_meta', 'sample_viewport_meta_tag' );
    function sample_viewport_meta_tag() {
    	echo '<meta name="viewport" content="width=device-width, initial-scale=1.0"/>';
    }
    
    add_filter( 'wpbdp_form_field_html_value', 'my_mailto_filter', 10, 3 );
    function my_mailto_filter( $value, $post_id, $field ) {
    if ( $field->has_validator('email') ) {
    return sprintf('<a href="mailto:%s">%s</a>', $value, $value);
    }
    return $value;
    }
    
    // Add support for custom background
    add_theme_support( 'custom-background' );
    
    // Add support for 3-column footer widgets
    add_theme_support( 'genesis-footer-widgets', 3 );
    
    // Enqueue sticky menu script
    add_action( 'wp_enqueue_scripts', 'custom_enqueue_script' );
    function custom_enqueue_script() {
    wp_enqueue_script( 'sticky-menu', get_stylesheet_directory_uri() . '/js/sticky-menu.js', array( 'jquery' ), '', true );
    }
    
    // Reposition the secondary navigation menu
    remove_action( 'genesis_after_header', 'genesis_do_subnav' );
    add_action( 'genesis_before', 'genesis_do_subnav' );
    
    // Unregister other site layouts
    genesis_unregister_layout( 'content-sidebar-sidebar' );
    genesis_unregister_layout( 'sidebar-sidebar-content' );
    genesis_unregister_layout( 'sidebar-content-sidebar' );
    
    // Customize the post info function
    add_filter( 'genesis_post_info', 'post_info_filter' );
    function post_info_filter($post_info) {
    if ( !is_page() ) {
        $post_info = '[post_date]';
        return $post_info;
    }}
    
    //* Add font awesome
    add_action( 'wp_enqueue_scripts', 'prefix_enqueue_awesome' );
    
    function prefix_enqueue_awesome() {
    wp_enqueue_style( 'prefix-font-awesome', '//netdna.bootstrapcdn.com/font-awesome/3.2.0/css/font-awesome.min.css', array(), '3.2.0' );
    }
    
    // Modify the speak your mind text
    add_filter( 'genesis_comment_form_args', 'custom_comment_form_args' );
    function custom_comment_form_args($args) {    
    $args['title_reply'] = 'Leave a Comment';    
    return $args;
    }
    
    function make_mce_awesome( $init ) {
        $init['theme_advanced_text_colors'] = '72bf44,ec0080';
        return $init;
    }
     
    add_filter('tiny_mce_before_init', 'make_mce_awesome');
    
    /** Add Post image above post title, single posts only */
    add_action( 'genesis_before_post', 'agency_post_image' );
    function agency_post_image() {
    if ( is_front_page() ) return;
    if ( $image = genesis_get_image( 'format=url&size=post-image' ) ) {
    printf( '<a href="%s" rel="bookmark"><img class="post-photo" src="%s" alt="%s" /></a>', get_permalink(), $image, the_title_attribute( 'echo=0' ) );
    }
    }
    
    // Add News Widget Area
    register_sidebar( array(
    	'id'				=> 'news',
    	'name'			=> __( 'News', 'runway' ),
    	'description'	=> __( 'This is the news section.', 'runway' ),
    ) );
    
    add_action( 'genesis_before', 'runway_news_genesis' );
    	/**
     * Add news widget support for site. If widget not active, don't display
     *
     */
    function runway_news_genesis() {
    			genesis_widget_area( 'news', array(
        'before' => '<div class="news widget-area">',
    		) );
     
    	}
    // Add Slider Widget Area
    genesis_register_sidebar( array(
        'id' => 'home-featured',
        'name' => __( 'Home Featured', 'runway' ),
        'description' => __( 'This is the widget area for the Genesis Responsive Slider.', 'runway' ),
    ) );
    
    /** Custom image sizes */
    add_image_size( 'Grid', 200, 200, TRUE );
    add_image_size( 'Featured-Home', 750, 500, TRUE );
    November 18, 2013 at 6:03 pm in reply to: Function – Agency_post_image #74068
    genevishgraphics
    Member

    Hmmm I took out the gallery shortcode and it is still there. So its not the gallery its the theme. If you look at this page, I have the same issue with the featured image - it is above the title, only this time it really is a featured image, however its a page not a post, and the function is directed towards the front page only, so it shouldnt affect any other pages, right?

    November 18, 2013 at 5:50 pm in reply to: Function – Agency_post_image #74060
    genevishgraphics
    Member

    Nope just plain old regular default - I am sure I am missing something here, or do you think it is a conflict with wp built-in gallery and the theme?

    November 18, 2013 at 4:47 pm in reply to: Function – Agency_post_image #74050
    genevishgraphics
    Member

    I really dont want to switch the theme to genesis since it is a live site 🙁

    November 18, 2013 at 1:48 pm in reply to: Function – Agency_post_image #74004
    genevishgraphics
    Member

    Thats just it - there is no featured image attached to the page at all - weird right?

    November 18, 2013 at 1:43 pm in reply to: Function – Agency_post_image #74001
    genevishgraphics
    Member

    Sure - I have combed through and dont see the repeat image

    <p>[gallery link="file" ids="7381,2492,2488,2062,2060,2059,2057,1732,1717"]</p>
    <p>&nbsp;</p>
    <h1>As seen on</h1>
    <p><a href="http://www.greenqueen.com.hk/wp-content/uploads/2011/10/logo-veggy.jpg"><img class="alignleft size-full wp-image-2565" alt="Veggy Japan" src="http://www.greenqueen.com.hk/wp-content/uploads/2011/10/logo-veggy.jpg" width="242" height="111" /></a></p>
    <p><a href="http://www.greenqueen.com.hk/wp-content/uploads/2011/10/playtimes.png"><img class="alignleft size-full wp-image-2564" alt="Playtimes Magazine" src="http://www.greenqueen.com.hk/wp-content/uploads/2011/10/playtimes.png" width="216" height="69" /></a></p>
    <p><a href="http://www.greenqueen.com.hk/wp-content/uploads/2011/10/scmp.png"><img class="alignleft size-full wp-image-2560" alt="South China Morning Post SCMP" src="http://www.greenqueen.com.hk/wp-content/uploads/2011/10/scmp.png" width="621" height="58" /></a></p>
    <p><a href="http://www.greenqueen.com.hk/wp-content/uploads/2011/10/sassymama.png"><img class="alignleft size-full wp-image-2559" alt="sassymama" src="http://www.greenqueen.com.hk/wp-content/uploads/2011/10/sassymama.png" width="492" height="111" /></a><img class="alignleft size-full wp-image-2547" alt="Sassy Hong Kong" src="http://www.greenqueen.com.hk/wp-content/uploads/2011/10/sassy-hk.png" width="387" height="172" /></p>
    <p><img class="alignleft size-full wp-image-2545" alt="Foodie Magazine" src="http://www.greenqueen.com.hk/wp-content/uploads/2011/10/foodie-magazine.png" width="252" height="144" /><img class="alignleft size-full wp-image-2550" alt="expatlivingrevamp_logo" src="http://www.greenqueen.com.hk/wp-content/uploads/2011/10/expatlivingrevamp_logo.jpg" width="520" height="154" /><img class="alignleft size-full wp-image-2574" alt="Hong Kong Tatler Dining" src="http://www.greenqueen.com.hk/wp-content/uploads/2011/10/tatler-online.png" width="261" height="112" /><img class="alignleft size-full wp-image-2561" alt="Healthy Hong Kong Blog" src="http://www.greenqueen.com.hk/wp-content/uploads/2011/10/healthyhkblog.png" width="341" height="85" /><br class="Apple-interchange-newline" /><a href="http://www.greenqueen.com.hk/wp-content/uploads/2011/10/the-list.png"><img class="alignleft size-full wp-image-2558" alt="The List Magazine" src="http://www.greenqueen.com.hk/wp-content/uploads/2011/10/the-list.png" width="387" height="116" /></a></p>
    <p><img class="alignleft size-full wp-image-2557" alt="hk mag asiacity_logo" src="http://www.greenqueen.com.hk/wp-content/uploads/2011/10/hk-mag-asiacity_logo.png" width="222" height="93" /><a href="http://www.greenqueen.com.hk/wp-content/uploads/2011/10/hkyantoyan.png"><img class="alignleft size-full wp-image-2555" alt="HK Yanto Yan" src="http://www.greenqueen.com.hk/wp-content/uploads/2011/10/hkyantoyan.png" width="350" height="97" /></a></p>
    <p><img class="alignleft size-full wp-image-2549" alt="Hip Hong Kong " src="http://www.greenqueen.com.hk/wp-content/uploads/2011/10/hhklogo.gif" width="125" height="124" /><a href="http://thehkhub.com/featured-posts/green-queens-guide-to-hong-kong/"><img class="alignleft size-full wp-image-2553" alt="thehkhub" src="http://www.greenqueen.com.hk/wp-content/uploads/2011/10/thehkhub.png" width="181" height="119" /></a><img class="alignleft size-full wp-image-2554" alt="localiiz" src="http://www.greenqueen.com.hk/wp-content/uploads/2011/10/localiiz.png" width="216" height="83" /><img class="alignleft size-full wp-image-2551" alt="little_steps_logo_all_0" src="http://www.greenqueen.com.hk/wp-content/uploads/2011/10/little_steps_logo_all_0.png" width="642" height="120" /></p>
    November 18, 2013 at 1:38 pm in reply to: Function – Agency_post_image #73999
    genevishgraphics
    Member

    Its just on the press page, a large image above the title of the page, then the gallery below that.

    September 10, 2013 at 10:55 am in reply to: Annoying browser style question – box shadow on input #61697
    genevishgraphics
    Member

    NM got it finally! I guess I was overthinking it`input:focus{
    box-shadow: none!important;
    outline: none!important;
    }`

    Thanks David anyways!

    September 9, 2013 at 1:20 pm in reply to: Search Widget CSS style HTML5 #61563
    genevishgraphics
    Member

    I think I am having a relevant issue myself. I am trying to get RID OF the box-shadow of the Search Box and cannot remove it for Chrome and Safari no matter what I do!
    I have tried -moz-box-shadow: none!important;
    -webkit-box-shadow: none!important;
    box-shadow: none!important;
    On input and search and everything, nothing will get rid of the ugly drop shadow - only Firefox doesnt display the shadow. I am using a Mac, is it mac related or is it mac/browser related or what? Thanks!

    September 9, 2013 at 12:53 pm in reply to: Genesis Theme Settings: Navbar: RSS/Twitter/Search #61558
    genevishgraphics
    Member

    Just change the background image specified at dynamic-min css line 2:

    .genesis-nav-menu li.twitter a {
    background: url(default-images/twitter-nav.png) no-repeat center left;
    padding: 0 0 0 20px;
    }

    I suggest you use Firebox (Firefox) or Developer for Chrome - You can right-click and inspect elements of the page.

    As far as the linking itself goes, I am not familiar with Dynamik web builder 🙁

    June 10, 2013 at 1:37 pm in reply to: Add header left widget Minimum 2.0 #45108
    genevishgraphics
    Member

    Yes but if I want to customize the background color etc as well I have to use custom body class right?
    Why won't adding
    `
    if ( is_archive()) work?`

  • Author
    Posts
Viewing 20 posts - 1 through 20 (of 48 total)
1 2 3 →

CTA

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

Create a site with WP EngineShop for Themes

Footer

StudioPress

© 2025 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