• 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

braddalton

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
  • Favorites

Forum Replies Created

Viewing 20 posts - 1 through 20 (of 15,159 total)
1 2 … 758 →
  • Author
    Posts
  • October 20, 2020 at 11:18 pm in reply to: Outreach Pro Home Bottom Alignment and Feature Images #501527

    braddalton
    Participant

    Try CSS Grid https://www.w3schools.com/css/css_grid.asp

    There are several CSS Grid methods.

    Or

    Atomic Blocks plugin


    2600 Genesis Tutorials

    October 13, 2020 at 8:07 pm in reply to: Creating a pop-up window. #501440

    braddalton
    Participant

    There's 2 ways to do this :

    1. Find a plugin which includes the functionality you need.
    2. Write custom code to do the same thing. This may require several hours of work unless you can find a tutorial which already includes the functionality you need.


    2600 Genesis Tutorials

    October 12, 2020 at 8:53 am in reply to: Author Pro Theme: No Sidebar on Mobile #501421

    braddalton
    Participant

    Works in Chrome when i test it.


    2600 Genesis Tutorials

    October 10, 2020 at 8:08 am in reply to: Change "search" string to local language – essence pro theme #501399

    braddalton
    Participant

    Try this https://my.studiopress.com/documentation/snippets/search-form/customize-the-search-form-input-box/


    2600 Genesis Tutorials

    October 8, 2020 at 8:41 pm in reply to: Add CSS bullet points for text block in Genesis Sample Theme #501390

    braddalton
    Participant

    You can add a class directly to your HTML

    <ul class="my-list">

    Sounds like the problems with the CSS.

    Link to your live site please.


    2600 Genesis Tutorials

    October 8, 2020 at 7:16 pm in reply to: Show Hide Featured Image option using Advanced Custom Fields #501389

    braddalton
    Participant

    You would need to use a custom function to check if ACF is true or false. https://www.advancedcustomfields.com/resources/true-false/

    And wrap that code in a hook which executes before your remove action like genesis_meta with a 3rd parameter of 9. Untested but it should work.

    To write the working code for this would require the setup of ACF using exactly the same settings as what you're using.

    That should be enough to get you started.


    2600 Genesis Tutorials

    October 8, 2020 at 5:33 am in reply to: Remove pagination in genesis_custom_loop #501381

    braddalton
    Participant

    Try using -1 as the value for posts_per_page

    Also, you can use the genesis_custom_loop function like this


    2600 Genesis Tutorials

    October 7, 2020 at 6:12 am in reply to: Remove pagination in genesis_custom_loop #501372

    braddalton
    Participant

    Please rephrase your question. As it stands, it doesn't make sense. Also, please publish your entire working code snippet.


    2600 Genesis Tutorials

    October 7, 2020 at 5:01 am in reply to: Hello, awesome people! #501368

    braddalton
    Participant

    You can try the Genesis > Theme Settings > Content Archives > featured Image Size settings.


    2600 Genesis Tutorials

    October 6, 2020 at 6:33 am in reply to: How to remove spacing in testimonials and a line near the footer in Academy Pro #501353

    braddalton
    Participant

    You should be using FTP to access files along with a code editor so you can find the line numbers.

    You can read the HTML from the front end using inspect element https://youtu.be/9oYhq84ZqaE


    2600 Genesis Tutorials

    October 6, 2020 at 3:30 am in reply to: Adding Simple Social Icons to Altitude Pro menu bar #501348

    braddalton
    Participant

    You should see the function in your child themes functions file which removes the header right widget area and remove that line of code.


    2600 Genesis Tutorials

    October 6, 2020 at 3:28 am in reply to: Listings Archives page on Winning Agent Press Pro 2.0 #501347

    braddalton
    Participant

    Looks like you have it worked out. Just need to create your custom taxonomy terms for your search widget.


    2600 Genesis Tutorials

    October 6, 2020 at 3:17 am in reply to: Change Blog Posts Per Page #501346

    braddalton
    Participant

    It depends on how you setup your blog page but you can try your WordPress > Settings > Reading Settings > Blog pages show at most.


    2600 Genesis Tutorials

    October 6, 2020 at 3:14 am in reply to: How to remove spacing in testimonials and a line near the footer in Academy Pro #501345

    braddalton
    Participant

    If you inspect the element, you'll find the CSS rule and line number the CSS rule is located on in your child theme style.css file.

    .front-page-4 blockquote cite {
    	line-height: 45px;
    	vertical-align: middle;
    }
    

    2600 Genesis Tutorials

    October 2, 2020 at 9:50 pm in reply to: Drop Downs with Images, Exerpts in Genesis #501300

    braddalton
    Participant

    Mega menu might work https://www.megamenu.com/documentation/genesis-framework/


    2600 Genesis Tutorials

    October 1, 2020 at 11:45 pm in reply to: Help with Slush Pro Theme as zigzagpress.com never respond to enquries #501286

    braddalton
    Participant

    @keith What do you need help with in relation to Slush Pro?


    2600 Genesis Tutorials

    October 1, 2020 at 8:44 pm in reply to: Adding Simple Social Icons to Altitude Pro menu bar #501284

    braddalton
    Participant

    You can add the header right widget area back or add a widget area to the nav menu.


    2600 Genesis Tutorials

    September 30, 2020 at 11:54 pm in reply to: How to add products from various categories on the homepage? #501276

    braddalton
    Participant

    It depends on your front page setup.

    There are at least 3 ways :

    1. If using blocks, you can use a WooCommerce block.

    2. If using widgets, you can use a WC widget.

    3. If using a standard loop, you can add support for your WC Product CPT like this in your child themes functions.php file

    add_action( 'pre_get_posts', 'add_custom_post_type_to_query' );
    function add_custom_post_type_to_query( $query ) {
        if ( $query->is_home() && $query->is_main_query() ) {
            $query->set( 'post_type', array('post', 'product' ) );
        }
    }
    

    2600 Genesis Tutorials

    September 30, 2020 at 10:56 pm in reply to: Add CSS bullet points for text block in Genesis Sample Theme #501275

    braddalton
    Participant

    This will work if you add the HTML correctly.

    Your list container needs to be wrapped in a ul tag and each list item needs to be wrapped in the li tag

    <ul>
    	<li>list one</li>
    
    	<li>list two</li>
    </ul>
    

    Then you can use CSS to style your list.


    2600 Genesis Tutorials

    September 30, 2020 at 8:51 pm in reply to: Show Feature Images on Posts and Pages (News Pro / Genesis version 3.3.3) #501274

    braddalton
    Participant

    Try the Genesis > Theme Settings > Content Archive > Display the featured image? settings.


    2600 Genesis Tutorials

  • Author
    Posts
Viewing 20 posts - 1 through 20 (of 15,159 total)
1 2 … 758 →

CTA

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

Create a site with WP EngineShop for Themes

Footer

StudioPress

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