• 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

MissKitty

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 34 total)
1 2 →
  • Author
    Posts
  • November 7, 2017 at 11:25 am in reply to: Altitude Pro: add widget area to home page and one other page only #213362
    MissKitty
    Participant

    Hi Brad,
    Good timing! I was just about to post here that I got it to work 🙂

    //* register testimonials widget jlr
    
    genesis_register_sidebar( array(
    	'id'		=> 'testimonials-widget',
    	'name'		=> __( 'Testimonials Widget', 'altitude-pro' ),
    	'description'	=> __( 'This is the testimonials widget area for home and contact page.', 'altitude-pro' ),
    ) );
    
    //* Add the page widget in the content - HTML5
    add_action( 'genesis_before_footer', 'mwi_add_testimonials', 1 );//'genesis_entry_footer',
    function mwi_add_testimonials() {
    	if ( is_home() || is_front_page() || is_page('get-in-touch') )//is_page('703')
    	genesis_widget_area ('testimonials-widget', array(
            'before' => '<div class="testimonials-widget"><div class="wrap">',
            'after' => '</div></div>',
    	) );
    }
    
    November 6, 2017 at 12:01 pm in reply to: Altitude Pro: add widget area to home page and one other page only #213329
    MissKitty
    Participant

    I wanted it just before the footer, so it sits flush up against the footer and is full-width (I tried using the genesis_before_footer hook but it didn't work).

    Here are two screenshots showing, I hope, what I'm trying to accomplish:
    Home page....
    Contact page....

    November 6, 2017 at 10:56 am in reply to: Altitude Pro: add widget area to home page and one other page only #213325
    MissKitty
    Participant

    So I must have mucked something up?

    October 3, 2017 at 8:52 am in reply to: Agency Pro: Home Top Widget button hyperlink doesn't work in Chrome? #212123
    MissKitty
    Participant

    Ah! Thank you, Andrea 🙂

    October 2, 2017 at 6:23 am in reply to: Agency Pro: Home Top Widget button hyperlink doesn't work in Chrome? #212075
    MissKitty
    Participant

    Dave, thank you! That worked beautifully!!
    Sridhar, you are the best!!

    August 2, 2017 at 11:56 am in reply to: Infinity Pro Flexible Widgets: Trouble with 2 rows, 4 widgets #209916
    MissKitty
    Participant

    Update: The incredibly smart and talented Victor Font was able to fix this issue for me by correcting an item in the front-page.php file.

    THANK YOU, VICTOR!

    August 2, 2017 at 8:26 am in reply to: Infinity Pro Flexible Widgets: Trouble with 2 rows, 4 widgets #209903
    MissKitty
    Participant
    This reply has been marked as private.
    August 1, 2017 at 2:10 pm in reply to: Infinity Pro: renaming front-page-1, front-page-2, etc. #209852
    MissKitty
    Participant

    Brad, you ROCK!
    Worked like a charm 🙂 cannot thank you enough.

    July 20, 2017 at 1:51 pm in reply to: How to remove slug from url #209345
    MissKitty
    Participant

    My apologies for the late reply - as usual, you are a rock star! I located it right away in the functions file. Thanks so much!

    July 20, 2017 at 1:48 pm in reply to: Tutorial: How to Use Your Browser's Inspect Tool #209344
    MissKitty
    Participant

    That's great, Victor!

    July 17, 2017 at 12:41 pm in reply to: How to remove slug from url #209225
    MissKitty
    Participant

    Victor, I'm considering Cafe Pro for a new website, and am also interested in changing this slug to something more custom. Is it possible to do so in functions.php?

    Thanks in advance.

    July 13, 2016 at 11:49 am in reply to: Who Are You Using For Your Web Hosting? #189405
    MissKitty
    Participant

    Pressidium.

    July 12, 2016 at 2:25 pm in reply to: Workstation Pro: create hamburger menu left, logo centered, social right? #189340
    MissKitty
    Participant

    Thank you... is there any way I can get a little more guidance, though? Do you mean I should modify the media queries to target the new custom menu? And I'm not sure what you mean by "remove it completely from the media queries".

    June 13, 2016 at 5:34 pm in reply to: Workstation Pro – Contact page showing featured image? #187493
    MissKitty
    Participant

    Well.... for anyone seeking a solution, here's mine, fwiw:

    I commented out the native code like so:

    //* Add featured image above the entry content
    //add_action( 'genesis_entry_header', 'workstation_featured_photo', 5 );
    //function workstation_featured_photo() {
    
    //	if ( is_attachment() || ! genesis_get_option( 'content_archive_thumbnail' ) )
    //		return;
    
    //	if ( is_singular() && $image = genesis_get_image( array( 'format' => 'url', 'size' => genesis_get_option( 'image_size' ) ) ) ) {
    //		printf( '<div class="featured-image"><img src="%s" alt="%s" class="entry-image"/></div>', $image, the_title_attribute( 'echo=0' ) );
    //	}
    
    //}
    

    and added:

    add_action( 'genesis_before_entry', 'featured_post_image', 8 );
    function featured_post_image() {
      if ( ! is_singular( 'post' ) )  return;
    	the_post_thumbnail('post-image');
    }
    June 13, 2016 at 1:58 pm in reply to: Workstation Pro – Contact page showing featured image? #187489
    MissKitty
    Participant

    Oops.... just realized, it is happening on other pages, not just the contact page.
    I'm guessing I could comment out this code, although I'm not sure that's what I want to do....

    //* Add featured image above the entry content
    add_action( 'genesis_entry_header', 'workstation_featured_photo', 5 );
    function workstation_featured_photo() {
    
    	if ( is_attachment() || ! genesis_get_option( 'content_archive_thumbnail' ) )
    		return;
    
    	if ( is_singular() && $image = genesis_get_image( array( 'format' => 'url', 'size' => genesis_get_option( 'image_size' ) ) ) ) {
    		printf( '<div class="featured-image"><img src="%s" alt="%s" class="entry-image"/></div>', $image, the_title_attribute( 'echo=0' ) );
    	}
    
    }
    
    June 10, 2016 at 2:18 pm in reply to: add_image_size not working #187361
    MissKitty
    Participant

    My apologies - I figured it out! 🙂

    June 10, 2016 at 2:05 pm in reply to: add_image_size not working #187360
    MissKitty
    Participant

    Oops one other question, how would I edit the extra code if I had more than one custom thumbnail size?
    thanks in advance.

    June 10, 2016 at 1:33 pm in reply to: add_image_size not working #187346
    MissKitty
    Participant

    Oh my word, you are a GENIUS, Victor 🙂
    A million thank you's, that worked like a charm

    June 10, 2016 at 1:15 pm in reply to: add_image_size not working #187339
    MissKitty
    Participant

    Hi guys - I'm having the same issue. I've added a custom size and regenerated thumbnails:
    add_image_size( 'medium-small', 200, 200, TRUE );//custom jlr
    and I can apply the custom size using the text editor, but the custom size doesn't show up in any drop-down (media or media gallery).

    Any update on this?

    May 20, 2016 at 11:25 am in reply to: Pre Sales Question #185981
    MissKitty
    Participant

    Hi Padman,
    I'm not braddalton 🙂 but wanted to chime in here.

    Though it's been a while since you posted your question, I wanted to say that I'm a long-time Studiopress/Genesis user. However, I recently tried the Divi theme for a new project, thinking the drag and drop feature would make it easier for my client to maintain once I turned it over to her. However, I ended up "returning" and getting refunded by Elegant Themes after only a few days. I went back to using Studiopress for that same client and do not regret it - it's always presented the best framework, themes and documentation, in my opinion. And to give my client drag/drop functionality, I think I'll be using Beaver Builder. They have a limited/free version, and a couple of annual paid versions. It looks really sturdy. There are others I ran across, also....
    http://www.codeinwp.com/blog/motopress-content-editor-vs-visual-composer-vs-siteorigin-page-builder-vs-beaver-builder/

    Anyway... to wrap up, I would encourage you to give Genesis a go, if you haven't already decided.

    Hope that helps 🙂

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

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