• 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

martag

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 31 total)
1 2 →
  • Author
    Posts
  • April 27, 2018 at 12:25 pm in reply to: Responsive Menu / Menu Toggle Moving and being lost on smaller screens #219346
    martag
    Participant

    Thanks Brad - I have deactivated all the plugins, cleared the cache and the menu still moves off screen didn't help. BUT you pointed me in the right direction and today I found the custom CSS code that was being the culprit.

    Thanks!!

    September 15, 2016 at 6:01 pm in reply to: Remove Primary Navigation from Specific Page #193226
    martag
    Participant

    Thank you!! Got it to work by also changing

    if (is_single('007') ) {

    to

    if (is_page('007') ) {

    ~Marta

    April 8, 2016 at 7:04 pm in reply to: After migrating site from dev server to live server responsive menu disappeared #183194
    martag
    Participant

    Figured part of it out! It's the W3 Total Cache plugin. Turned that off and the responsive menu came back. Any ideas on how to exclude the menu from the caching settings?

    ~Marta

    March 3, 2016 at 4:41 pm in reply to: Altitude Pro Featured Posts – side-by-side not stacked #180583
    martag
    Participant

    Thanks David! You have totally made my day!! I had thought of that but couldn't figure out how to always have the 3 most recent.... and you answered a question I've been curious about and never got around to asking... what "number of posts to offset" meant!!

    I soooo appreciate it!! Love it when I learn something new 🙂

    January 20, 2016 at 9:42 pm in reply to: Featured Page Widgets Out of Alignment #177063
    martag
    Participant

    Oh my word - thank you!!! Never even thought to check that - the title field was blank... but a space was added, that fixed it!

    November 20, 2015 at 12:23 pm in reply to: Altitude Pro Widget Title Font Sizes #171641
    martag
    Participant

    Thanks Tom! Appreciate the help. That should do it, hadn't tried that combination yet.

    ~Marta

    November 6, 2015 at 4:49 pm in reply to: Parallax Pro on Small Mobile Screens #170368
    martag
    Participant

    Perfect thank you!!! Appreciate your help.

    October 13, 2015 at 7:20 pm in reply to: WPHeader Missing in Schema for Metro Pro #168081
    martag
    Participant

    Thanks for taking the time to reply. I have sent the info to Sridhar for some feedback.

    July 22, 2015 at 4:31 pm in reply to: Prose Theme Site Shifted Left #160149
    martag
    Participant

    Thank you!!!

    There were 2 different body settings one had the correct margin: 0 auto; CSS and one didn't. Got the 2nd one fixed.

    ~Marta

    July 1, 2015 at 2:59 pm in reply to: Centering Logo in Executive Pro #158084
    martag
    Participant

    Thanks! I tried that but it didn't work. I'm scratching my head on this one, this usually works!

    ~Marta

    May 22, 2015 at 7:38 pm in reply to: Secondary menu bold on active page #153367
    martag
    Participant

    Oh thank you!!! I just had facepalm moment... of course that is what I am looking for.

    Yes it has been a long week, you just saved me a huge headache for missing that.

    Thank you!!!

    November 20, 2014 at 6:42 pm in reply to: Centric Mobile Navigation & Home Widget #2 Alignment #132328
    martag
    Participant

    Thank you!!! You taught me all sorts of new stuff today.

    The Icon.. thought that was an graphic... sheesh LOL.

    July 21, 2014 at 10:39 pm in reply to: Parallox Pro Row – Turn into side-by-side Widgets #115318
    martag
    Participant

    Aaaaahhhhh, thanks Tom, I'm seeing it now. You taught me something new today. I can run with that now. Very cool thanks!

    ~Marta

    July 21, 2014 at 4:10 pm in reply to: Parallox Pro Row – Turn into side-by-side Widgets #115262
    martag
    Participant

    Correct on the 4 for right now, that will probably need to change and that is okay. The default .home-section-2 .widget is 1 wide section and I would rather not use column classes if I can avoid it so the client can update without needing to worry about messing up the code. I'm using the default front-page.php file.

    
    <?php
    /**
     * This file adds the Home Page to the Parallax Pro Theme.
     *
     * @author StudioPress
     * @package Parallax
     * @subpackage Customizations
     */
    
    add_action( 'genesis_meta', 'parallax_home_genesis_meta' );
    /**
     * Add widget support for homepage. If no widgets active, display the default loop.
     *
     */
    function parallax_home_genesis_meta() {
    
    	if ( is_active_sidebar( 'home-section-1' ) || is_active_sidebar( 'home-section-2' ) || is_active_sidebar( 'home-section-3' ) || is_active_sidebar( 'home-section-4' ) || is_active_sidebar( 'home-section-5' ) ) {
    
    		//* Enqueue parallax script
    		add_action( 'wp_enqueue_scripts', 'parallax_enqueue_parallax_script' );
    		function parallax_enqueue_parallax_script() {
    
    			if ( ! wp_is_mobile() ) {
    
    				wp_enqueue_script( 'parallax-script', get_bloginfo( 'stylesheet_directory' ) . '/js/parallax.js', array( 'jquery' ), '1.0.0' );
    
    			}
    
    		
    		}
    
    		//* Add parallax-home body class
    		add_filter( 'body_class', 'parallax_body_class' );
    		function parallax_body_class( $classes ) {
    		
       			$classes[] = 'parallax-home';
      			return $classes;
      			
    		}
    
    		//* Force full width content layout
    		add_filter( 'genesis_pre_get_option_site_layout', '__genesis_return_full_width_content' );
    
    		//* Remove primary navigation
    		remove_action( 'genesis_before_content_sidebar_wrap', 'genesis_do_nav' );
    
    		//* Remove breadcrumbs
    		remove_action( 'genesis_before_loop', 'genesis_do_breadcrumbs');
    
    		//* Remove the default Genesis loop
    		remove_action( 'genesis_loop', 'genesis_do_loop' );
    
    		//* Add homepage widgets
    		add_action( 'genesis_loop', 'parallax_homepage_widgets' );
    
    	}
    }
    
    //* Add markup for homepage widgets
    function parallax_homepage_widgets() {
    
    	genesis_widget_area( 'home-section-1', array(
    		'before' => '<div class="home-odd home-section-1 widget-area"><div class="wrap">',
    		'after'  => '</div></div>',
    	) );
    
    	genesis_widget_area( 'home-section-2', array(
    		'before' => '<div class="home-even home-section-2 widget-area"><div class="wrap">',
    		'after'  => '</div></div>',
    	) );
    
    	genesis_widget_area( 'home-section-3', array(
    		'before' => '<div class="home-odd home-section-3 widget-area"><div class="wrap">',
    		'after'  => '</div></div>',
    	) );
    
    	genesis_widget_area( 'home-section-4', array(
    		'before' => '<div class="home-even home-section-4 widget-area"><div class="wrap">',
    		'after'  => '</div></div>',
    	) );
    
    	genesis_widget_area( 'home-section-5', array(
    		'before' => '<div class="home-odd home-section-5 widget-area"><div class="wrap">',
    		'after'  => '</div></div>',
    	) );
    
    }
    
    genesis();
    
    July 7, 2014 at 11:14 am in reply to: Show only 1 post on category page #113226
    martag
    Participant

    Thanks Kellylise, will definitely checkout the plugin and Sridhar's post. I end up on his site a lot! Hadn't come across this tutorial yet, something new to read!!

    April 4, 2014 at 5:07 pm in reply to: Lifestyle Banner Cut off at Full Width on the right #98544
    martag
    Participant

    Aha! thank you! And to think I asked my math teacher in high school, when will I use this math?? 🙂 Thank you!

    March 17, 2014 at 12:45 pm in reply to: Executive Theme Post Expcerpt – Continue reading #95351
    martag
    Participant

    Thanks! I finally figured it out. I didn't read the instructions well enough. I was using the code for showing excerpt using the content limit setting instead of using the code for the more tag. Now it is working the way I needed to.

    Thanks~
    ~Marta

    March 12, 2014 at 12:12 pm in reply to: Beautiful Pro Header & Continue Reading #94477
    martag
    Participant

    Thanks again for your help and pointing me in the right direction - that did help me figure out there was interference in my CSS changes and a plugin. It is now doing what I want it to do. Thanks!!

    March 11, 2014 at 11:44 pm in reply to: Beautiful Pro Header & Continue Reading #94384
    martag
    Participant

    Figured the continue reading thing - doh! The link shows when the more tag is used not when the blog page is set to show an excerpt only. Sheesh, I totally missed that one.

    For the .site-header .wrap - I had reduced that to 10 earlier today but for some reason it is still showing up as 40px/40rem in the inspector. Need to go take a look again, maybe plugin interference? My client does have a caching plugin installed but it has not been activated and I even deleted the cache to make sure that wasn't it but thinking now that something is still interfering.

    Thanks for your help!! I may be back for more brainstorming help tomorrow.

    ~Marta

    March 11, 2014 at 7:25 pm in reply to: Beautiful Pro Header & Continue Reading #94351
    martag
    Participant

    Thanks! I was using Chrome Inspector and Firebug in Firefox but not seeing line numbers, I'll go look at that again.

    Any chance you have an idea on the continue reading button?

    Thanks again!
    ~Marta

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