Forum Replies Created
-
AuthorPosts
-
Tom
MemberHi Victor,
Yes I do, I'm using a solution by Sridhar (https://sridharkatakam.com/custom-video-insert-image-fallback-genesis/)
Tom
MemberHi 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; }
Tom
MemberAny ideas?
February 1, 2016 at 5:07 am in reply to: Utility Bar Text being Indexed in Meta Description by Google #178028Tom
MemberHey 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 #176175Tom
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 #176173Tom
MemberHi 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 #176159Tom
MemberApologies for the bump, any suggestions or advice would be super!
Tom
MemberThanks 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.Tom
MemberSo 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,
TomTom
MemberThanks 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).
Tom
MemberPerfect, cheers Tom! I was so close as well.
Tom
MemberMade an oopsie, ignore this...
Tom
MemberHas 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.
Tom
MemberSo 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
Tom
MemberHi Bill,
Where are you making the change? Can you post the code or a screenshot of what you have?
Cheers,
TomTom
MemberHi there,
Did you find a solution in the end?
Also, Is 'countries' a custom post type or a taxonomy you have created?Tom
Tom
MemberGoing to have to bump this, sorry.
September 16, 2014 at 7:23 am in reply to: Customizing AgentPress Listings with Another Theme #124643Tom
MemberAh 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 #124581Tom
MemberHi 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,
TomTom
MemberAfter trying to figure this out today, I am returning to this post for advice...
-
AuthorPosts