• 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

mmjaeger

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 132 total)
1 2 3 … 5 6 7 →
  • Author
    Posts
  • June 11, 2019 at 5:24 am in reply to: Genesis 3 beta #491569
    mmjaeger
    Member

    bump

    June 8, 2019 at 2:01 pm in reply to: Genesis 3 beta #491546
    mmjaeger
    Member

    now idea what the fix would be but I think I found the reason:
    in the genesis footer.php file there is a function called genesis_footer_widget_areas - it returns the widgets like this:
    '
    //echo wp_kses_post( $footer_widgets );

    echo $footer_widgets;
    '
    commenting the first line and returning the $footer_widgets works - so we have to find a way to add the form as a valid html tag?!

    June 8, 2019 at 1:47 pm in reply to: Genesis 3 beta #491545
    mmjaeger
    Member

    Installed the twentynineteen theme and the shortcode works flawlessly so I believe it certainly has something to do with either Genesis or Genesis Sample.

    Hope somebody has some ideas?

    June 8, 2019 at 4:43 am in reply to: Genesis 3 beta #491541
    mmjaeger
    Member

    Thanks Victor

    I'm using the very same shortcode in GeneratePress and it works just fine - this is really weird

    July 9, 2017 at 5:43 am in reply to: unregister layouts #208873
    mmjaeger
    Member

    Thanks Victor - the issue was that I'm using a 'genesis_setup' function - it needed the priority set to 15 in order to make this work.

    Thanks again

    July 8, 2017 at 7:43 am in reply to: Setup menu incl. dummy pages and CPT Archives – Breadcrumbs #208845
    mmjaeger
    Member

    thanks Victor - I'm afraid my question wasn't clear - I'm just talking about Navigation and Breadcrumbs - there is basically no parent "Company" - it is just a menu item using "custom-link"

    July 5, 2017 at 6:59 pm in reply to: Genesis and facetwp #208741
    mmjaeger
    Member

    the url is page to check - the post type has 29 entries - I'm showing 10 a page so the pagination should be 1 2 3

    July 5, 2017 at 6:50 pm in reply to: Genesis and facetwp #208739
    mmjaeger
    Member

    thanks but no luck - it's exactly what I have - the numbers are just dead wrong until I set the first filter

    July 5, 2017 at 6:37 pm in reply to: Genesis and facetwp #208737
    mmjaeger
    Member

    thanks for the input - but I've read all that - the issue is just with the pagination.

    June 30, 2017 at 7:32 pm in reply to: CPT archive templates – how to #208534
    mmjaeger
    Member

    thanks - I wanted to save some work - what you're saying is basically make a duplicate of the CPT archive page and name it after the taxonomy, right?

    June 30, 2017 at 7:26 pm in reply to: CPT archive templates – how to #208531
    mmjaeger
    Member

    please ignore - figured it out

    /**
     * Template Redirect
     * Use archive-resource.php for all resources, 'resource-category' and 'resource-tag' taxonomy archives.
     *
     * @param string,  default template path
     * @return string, modified template path
     *
     */
    add_filter( 'template_include', 'thx_template_redirect' );	
    function thx_template_redirect( $template ) {
    	
    	if ( is_tax( 'resource_category' ) || is_tax( 'resource_tag' ) ) 
    		$template = get_query_template( 'archive-resource' );	
    	
    	return $template;
    }
    June 28, 2017 at 6:22 am in reply to: Hide author box after single post if user bio is empty #208369
    mmjaeger
    Member

    Thanks for your input
    I came up with the following code and it seems to work as well:

    add_filter( 'get_the_author_genesis_author_box_single', 'thx_get_the_author_genesis_author_box_single', 10, 2 );
    function thx_get_the_author_genesis_author_box_single( $value, $user_id ) {
    	
    	$field = get_the_author_meta( 'description', $user_id );
    	
    	if ($field)
    		return true;
    }
    June 25, 2017 at 6:47 am in reply to: Navigation issues #208253
    mmjaeger
    Member

    Thanks Dave - I think the issue is related to the Elementor Page Builder - I've installed just the Genesis Sample theme and the Elementor plugin and it quickly shows the hidden primary navigation upon reloading the page - I was wondering whether anybody else is experiencing this issue.

    anybody successfully working with Elementor and Genesis??

    June 22, 2017 at 4:49 pm in reply to: Removing Yoast postmeta #208134
    mmjaeger
    Member

    Thanks for your detailed response - still cannot find the setting that would allow me to delete the metadata - as to Yoast, is it worth to go premium?

    June 22, 2017 at 4:35 pm in reply to: Removing Yoast postmeta #208129
    mmjaeger
    Member

    thanks for replying - does the Yoast SEO make that much of a difference compared to the Genesis SEO?

    June 3, 2017 at 6:50 pm in reply to: Primary Nav – Sub-menu dropdown for last menu item #207310
    mmjaeger
    Member

    thanks Victor - that worked like a charm

    January 14, 2017 at 12:38 pm in reply to: How to: add additional container inside wrap #199395
    mmjaeger
    Member

    Thanks Victor - you're really an asset to this community.
    Meanwhile I figured it out - please see below:

    add_filter( 'genesis_structural_wrap-footer-widgets', 'prefix_filter_footer_widgets_structural_wrap', 10, 2);
    function prefix_filter_footer_widgets_structural_wrap( $output, $original_output ) {
        
        if ( 'open' == $original_output )
        	$output .= '<div class="wrap-inner">';
        
        elseif ( 'close' == $original_output )
        	$output .= '</div>';
        
        return $output;
    }
    January 14, 2017 at 11:24 am in reply to: How to: add additional container inside wrap #199388
    mmjaeger
    Member
    This reply has been marked as private.
    December 7, 2016 at 5:05 pm in reply to: custom post type: genesis_post_meta #197214
    mmjaeger
    Member

    anybody??
    add_filter( 'genesis_post_meta', 'sp_post_meta_filter' ); does not get processed when I'm on a single view page of a CPT that uses the standard template like the posts do - on the post page, the filter gets processed.

    what am I missing here?

    Thank you in advance for your input.

    December 6, 2016 at 11:31 am in reply to: custom post type: genesis_post_meta #197124
    mmjaeger
    Member

    the post meta shows below the posts but not below the single entries of the custom post type???

  • Author
    Posts
Viewing 20 posts - 1 through 20 (of 132 total)
1 2 3 … 5 6 7 →

CTA

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

Create a site with WP EngineShop for Themes

Footer

StudioPress

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