• 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

Tom

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 44 total)
1 2 3 →
  • Author
    Posts
  • April 13, 2017 at 2:49 am in reply to: Insert a Featured Video for Post #204716
    Tom
    Member

    Hi Victor,

    Yes I do, I'm using a solution by Sridhar (https://sridharkatakam.com/custom-video-insert-image-fallback-genesis/)

    March 22, 2016 at 9:30 am in reply to: Flexible Widget Classes Question #182023
    Tom
    Member

    Hi Victor,

    Thanks for the input, I found a solution in the end by playing around with the PHP for Flexible Widgets. This is probably not the best practice:

    Before:

    //* Flexible widget classes
    function rmo_widget_area_class( $id ) {
    
    	$count = rmo_count_widgets( $id );
    
    	$class = '';
    
    	if( $count == 1 ) {
    		$class .= ' widget-full';
    	} elseif( $count % 3 == 1 ) {
    		$class .= ' widget-thirds';
    	} elseif( $count % 4 == 1 ) {
    		$class .= ' widget-fourths';
    	} elseif( $count % 2 == 0 ) {
    		$class .= ' widget-halves uneven';
    	} else {
    		$class .= ' widget-halves even';
    	}
    	return $class;
    
    }

    After:

    //* Flexible widget classes
    function rmo_widget_area_class( $id ) {
    
    	$count = rmo_count_widgets( $id );
    
    	$class = '';
    
    	if( $count == 1 ) {
    		$class .= ' widget-full';
    	} elseif( $count % 3 == 1 ) {
    		$class .= ' widget-thirds';
    	} elseif( $count % 4 == 1 ) {
    		$class .= ' widget-fourths';
    	} elseif( $count % 5 == 1 ) {
    		$class .= ' widget-fourths';
    	} elseif( $count % 2 == 0 ) {
    		$class .= ' widget-halves uneven';
    	} else {
    		$class .= ' widget-halves even';
    	}
    	return $class;
    
    }
    February 12, 2016 at 9:27 am in reply to: Date appearing in Meta Description? #178891
    Tom
    Member

    Any ideas?

    February 1, 2016 at 5:07 am in reply to: Utility Bar Text being Indexed in Meta Description by Google #178028
    Tom
    Member

    Hey Neil,

    Thanks for this, I just thought it was a little odd how it was indexing this text and not the Post Content.

    Also something else I noticed is the date appearing in front of the Meta Description for Pages. For example, the 'about-us' page in your screenshot. Which is something I haven't seen before for Pages...

    Do you know of a way to hide the date for Pages?

    January 10, 2016 at 4:37 pm in reply to: How to remove 'site-inner' class from Enterprise Pro #176175
    Tom
    Member

    ... Saying that, I noticed that the Widget Areas and Footer are sitting outside of the 'site-container' class.

    I noticed this isn't the case with some of the other Child Themes, is there a particular reason this happens and is it bad practice?

    January 10, 2016 at 4:09 pm in reply to: How to remove 'site-inner' class from Enterprise Pro #176173
    Tom
    Member

    Hi Christoph,

    Thanks for the reply! You pointed me in the right direction 🙂

    I used the following:

    // Add home bottom widgets
    add_action( 'genesis_after_header', 'enterprise_home_bottom_widgets' );
    .enterprise-home .site-inner {
        display: none;
    }

    If anyone else has any alternative suggestions, that would be great!

    January 10, 2016 at 12:39 pm in reply to: How to remove 'site-inner' class from Enterprise Pro #176159
    Tom
    Member

    Apologies for the bump, any suggestions or advice would be super!

    April 30, 2015 at 7:48 am in reply to: Making WordPress Gallery (.gallery-item) Responsive? #149600
    Tom
    Member

    Thanks buddy. The issue I'm having is with the column classes, for example I think by default WP puts the gallery into 3 columns .gallery-columns-3 in my code this is with the width: 33%.

    If I try and target the .gallery-item class to a width of 50%, it works for resizing the image however it's still placing the images in 3 columns so there is a lot of white space.

    November 5, 2014 at 9:09 am in reply to: Calling Another Stylesheet for Plugin? #130598
    Tom
    Member

    So for the WP-Listings plugin, there are 3 CSS files. If I copy these and apply the changes, your saying dequeue the CSS styles from the plugin and then enqueue the new CSS files within the functions.php in the child theme?

    I'm assuming this will then load the custom styles over the plugin styles?

    Would you be able to provide an example for the .php required for this?

    Many Thanks,
    Tom

    November 4, 2014 at 9:57 am in reply to: Calling Another Stylesheet for Plugin? #130426
    Tom
    Member

    Thanks Brad,

    The WP Listings - Search Widget, I would like to have it the same as The AgentPress Search Widget. The WP Listings - Featured Listings Widget I happy with the defaults (well a few minor Colour and Text changes could be made).

    October 2, 2014 at 1:30 pm in reply to: How to remove active style from navigation? #126574
    Tom
    Member

    Perfect, cheers Tom! I was so close as well.

    September 30, 2014 at 9:38 am in reply to: Removing Breadcrumbs From a Landing Page? #126307
    Tom
    Member

    Made an oopsie, ignore this...

    September 22, 2014 at 2:40 pm in reply to: AgentPress Listings on AgentPress Pro Theme #125359
    Tom
    Member

    Has somebody come into contact with the same issue? If you are located outside of the USA the field names will pretty much be irrelevant to the industry.
    Or if AgentPress Listings has been used to display something else rather than real estate.

    Tom.

    September 18, 2014 at 7:35 am in reply to: Ninja Forms Auto feed in agentpress #124893
    Tom
    Member

    So you would like to take information from a taxonomy (i.e 'Property Type') and display this as a completed filed within a Ninja Form.
    If so, I was going to try and do this soon. Did you have any luck?

    Tom

    September 18, 2014 at 7:29 am in reply to: AgentPress Pro taxonomies bug? #124891
    Tom
    Member

    Hi Bill,

    Where are you making the change? Can you post the code or a screenshot of what you have?

    Cheers,
    Tom

    September 18, 2014 at 7:23 am in reply to: AgentPress Pro Archive Display Issue #124889
    Tom
    Member

    Hi there,

    Did you find a solution in the end?
    Also, Is 'countries' a custom post type or a taxonomy you have created?

    Tom

    September 16, 2014 at 11:50 am in reply to: AgentPress Listings on AgentPress Pro Theme #124692
    Tom
    Member

    Going to have to bump this, sorry.

    September 16, 2014 at 7:23 am in reply to: Customizing AgentPress Listings with Another Theme #124643
    Tom
    Member

    Ah okay, so did you have the same trouble? After changing the details as above, you couldn't get the details to change on the listing?

    For example: http://s29.postimg.org/uxsb0n3vb/Screen_Shot_2014_09_14_at_21_25_04.png

    The details I was trying to change are 'Encino, California 91436' with the class .listing-city-state-zip if you look in the screenshot below, in the web inspector panel you will see I have changed this class to correspond with the new details .listing-town-area-zip

    http://s29.postimg.org/63ge2005j/Screen_Shot_2014_09_16_at_14_15_59.png

    It's bugging me now... Haha

    Tom

    September 15, 2014 at 5:02 pm in reply to: Customizing AgentPress Listings with Another Theme #124581
    Tom
    Member

    Hi Guys,

    How did you overcome this issue? (http://www.studiopress.community/topic/agentpress-listings-on-agentpress-pro-theme).

    You may only experience it if you are using the AgentPress Pro Theme...

    Many Thanks,
    Tom

    September 15, 2014 at 4:59 pm in reply to: AgentPress Listings on AgentPress Pro Theme #124580
    Tom
    Member

    After trying to figure this out today, I am returning to this post for advice...

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

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