• 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

andytc

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 273 total)
1 2 3 … 12 13 14 →
  • Author
    Posts
  • July 23, 2021 at 9:01 am in reply to: Where have all the themes gone from My StudioPress ? #504350
    andytc
    Participant

    No , it didn’t mean lifetime support , it meant access to all future themes as well. It wasn’t cheap either.

    “ you get unlimited updates, themes and support for life plus every 3rd party theme they release in their marketplace”

    July 16, 2021 at 6:17 am in reply to: Where have all the themes gone from My StudioPress ? #504339
    andytc
    Participant

    Yes , I feel the same. Genesis isn’t doing it for me anymore, I’d rather spend some time moving all my clients themes away from the Genesis framework so I don’t have to suffer any more updates. Loads of themes have been ‘Archived’ , meaning finished and new ones not available as promised when the package was purchased.
    TBH it gets it the way rather than be useful these days anyway.

    July 13, 2021 at 3:03 pm in reply to: Where have all the themes gone from My StudioPress ? #504327
    andytc
    Participant

    So studiopress has reneged on the pro plus package deal. We aren’t getting ‘every 3rd party theme they release’

    June 3, 2021 at 4:52 am in reply to: How To Add Text Next To Logo Image In Header – StudioPress Genesis Altitude Pro #504192
    andytc
    Participant

    Altitude Pro already has a header right widget area ready to go , it's just been 'unregistered' in the functions.php

    To enable it , find line 103 in the themes functions.php - the code below

    // Unregister the header right widget area.
    unregister_sidebar( 'header-right' );

    and comment that out - as below

    // Unregister the header right widget area.
    // unregister_sidebar( 'header-right' );

    You can find this file using the theme editor in WordPress as shown in the tutorial you linked to (ignore the rest of it) , just comment it out as shown above and you'll then find a header right widget area ready to use in the widgets section. Of course , you'll need to add your own CSS after doing this to make it work the way you want.

    May 3, 2021 at 8:39 am in reply to: Academy Pro Hero Video Playback #503921
    andytc
    Participant

    How have you added the video ?

    By default , no browser will autoplay a video that has audio enabled , the audio must be muted in order for it to autoplay.

    April 25, 2021 at 2:53 pm in reply to: Prevent Sidebar from loading #503842
    andytc
    Participant

    I wouldn't do that , I'd just add some code to the childtheme functions.php to remove the sidebar - something like below

    if (wp_is_mobile()) {
       remove_action ('genesis_sidebar','genesis_do_sidebar');
    }

    That will probably achieve what you want , you could adjust that conditional further if you wished. You'll need to test that thoroughly using real mobile devices , DEV tools mobile simulation won't respond to that.

    Personally , I'm not keen on using wp_is_mobile on the front end , it literally targets any device considered as 'Mobile' , tablets in any orientation for example.

    Using display: none; in CSS is the most common method

    April 19, 2021 at 4:21 pm in reply to: Display date before title in latest post widget #503768
    andytc
    Participant

    Give this a try -

    .widget_recent_entries li {
        display: flex;
        flex-flow: column-reverse;
    }

    Seems to work ok with shorter titles , give it a whirl

    March 18, 2021 at 7:24 am in reply to: Styling Search Page #503509
    andytc
    Participant

    The search pages already have a body class added that can be used to target the search page only -

    .search and also .search-results

    Just pre-fix your styles with these to affect only search pages. any good ?

    March 17, 2021 at 7:21 am in reply to: Need help on home page, please #503496
    andytc
    Participant

    No problem , just one thing , I notice you have /a/contact-us/ in the link now ?

    Currently this -

    <a class="button" href="a/contact-us/">Contact us to schedule your complimentary consultation.</a>

    Should be just this -

    <a class="button" href="/contact-us/">Contact us to schedule your complimentary consultation.</a>

    still works , but just sayin' 🙂

    March 16, 2021 at 5:45 pm in reply to: Need help on home page, please #503492
    andytc
    Participant

    Replace the # with a /

    /contact-us

    March 15, 2021 at 4:08 pm in reply to: Can I modify the blog grid to be 2 or 1 columns instead of 3? #503476
    andytc
    Participant

    try changing the values directly in the style sheet rather than the customiser.

    line 1815

    .flexible-widgets.widget-odd .featuredpost:last-of-type .entry,
    .authority-grid.archive:not(.woocommerce-page) .content .entry {
    	float: left;
    	padding: 0 35px;
    	width: 50%;
    }

    line 1826

    .flexible-widgets.widget-odd .featuredpost:last-of-type .entry:nth-of-type(2n+1), .authority-grid.archive:not(.woocommerce-page) .content .entry:nth-of-type(2n+1) {
    	clear: left;
    }
    March 15, 2021 at 3:20 pm in reply to: Can I modify the blog grid to be 2 or 1 columns instead of 3? #503474
    andytc
    Participant

    The styles in the customiser are commented out , remove the comments completely for now or move the comment closing tag to the right place on the first comment.

    March 15, 2021 at 2:54 pm in reply to: Can I modify the blog grid to be 2 or 1 columns instead of 3? #503472
    andytc
    Participant

    Ok , you need victors code as well , so 2 changes. Did you modify both ?

    March 15, 2021 at 11:32 am in reply to: Can I modify the blog grid to be 2 or 1 columns instead of 3? #503469
    andytc
    Participant

    Find this entry and change the (3n+1) to (2n+1) as shown below to remove the staggered look. The layout will automatically respond to mobile devices as normal. Test it in DEV tools in your browser.

    .flexible-widgets.widget-odd .featuredpost:last-of-type .entry:nth-of-type(2n+1), .authority-grid.archive:not(.woocommerce-page) .content .entry:nth-of-type(2n+1) {
        clear: left;
    }
    February 12, 2021 at 9:00 am in reply to: php function to remove (hide) menu items from "Editor" dashboard #503028
    andytc
    Participant

    You’re welcome , I’m happy it’s what you wanted.

    February 12, 2021 at 5:34 am in reply to: php function to remove (hide) menu items from "Editor" dashboard #503021
    andytc
    Participant

    Keeping the code in place that you've used to change the capability for editors , you can add this to remove > Themes and the Customiser.

    // NON ADMIN ROLE APPEARENCE MENU EDITS
    
    if ( ! current_user_can('manage_options') ) {
    
    	// Remove submenu pages for non admins.
    	function wpdocs_adjust_the_wp_menu() {
    	  $page = remove_submenu_page( 'themes.php', 'themes.php' );
    	}
    
    	add_action( 'admin_menu', 'wpdocs_adjust_the_wp_menu', 999 );
    
    	// Remove the customsier
    	add_filter('map_meta_cap', function($caps, $cap, $user_id, $args) {
    	    if ('customize' == $cap) return ['do_not_allow'];
    	    return $caps;
    	}, 10, 4);
    
    }
    January 20, 2021 at 3:53 am in reply to: Pagination resulting in 404 error #502752
    andytc
    Participant

    Pagination is working , maybe get in touch with this user who seems to be using the exact same code for 'tracks' and the exact same problem , I problem I don't see , and also that code, if actually used , would create a blank page because it isn't calling the genesis function after removing the loop.

    https://studiopress.community/topic/pagination-not-working-in-genesis-framework/#post-502525

    weird ?

    January 20, 2021 at 3:41 am in reply to: Having a frustrating issue #502751
    andytc
    Participant

    Ok , I've checked and the styles aren't showing up in styles.css , so that's the problem.

    /* Widgets
    ---------------------------------------------------------------------------------------------------- */
    
    .widget {
    	word-wrap: break-word;
    }
    
    .widget:last-child {
    	margin-bottom: 0;
    }
    
    .widget ol > li {
    	list-style-position: inside;
    	list-style-type: decimal;
    	padding-left: 20px;
    	text-indent: -20px;
    }
    
    .widget li li {
    	border: 0;
    	margin: 0 0 0 30px;
    	padding: 0;
    }
    
    .widget_calendar table {
    	width: 100%;
    }
    
    .widget_calendar td,
    .widget_calendar th {
    	text-align: center;
    }

    Try adding the styles I gave you directly into the custom CSS section in the customiser.

    January 19, 2021 at 4:02 pm in reply to: Having a frustrating issue #502730
    andytc
    Participant

    Didn’t do much

    What did it do and what didn’t it do ?

    Did you clear your browser cache ?

    Where did you place the CSS ?

    You could place the code and leave it there so we can take another look

    January 19, 2021 at 8:10 am in reply to: Having a frustrating issue #502714
    andytc
    Participant

    EDIT : Leave out this line , not needed.

    .sidebar .mejs-container {
      padding-top: 56.25%;
    }
  • Author
    Posts
Viewing 20 posts - 1 through 20 (of 273 total)
1 2 3 … 12 13 14 →

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