Nick C
Forum Replies Created
-
Forum: Plugins
In reply to: [Genesis Responsive Slider] Slider no longer animatesHi Colin,
Thanks for sharing your site URL. I see a large number of other JavaScript errors there: http://d.pr/i/17BEI
If you temporarily disable the caching/minification and headwp plugins you’re using, does the slider work again?
Hi, anancuras.
Are you using a caching plugin or service? It would be worth clearing all server-side caches first if so.
If that doesn’t solve this, have you edited the plugin or theme files themselves? If so, you could:
1. Take a full site backup.
2. Temporarily revert to the default versions of the plugin and theme.If the city field comes back on all posts in search results after reverting any changes you made, that suggests an edit to the plugin or theme has caused this.
If you’re currently editing the plugin directly, you could instead alter the labels using this method in your theme’s functions.php file:
add_filter( 'agentpress_property_details', 'custom_agentpress_property_details_filter' ); // Replace labels such as "ZIP" with "Postcode" function custom_agentpress_property_details_filter( $details ) { $details['col1'] = array( __( 'Price:', 'apl' ) => '_listing_price', __( 'Address:', 'apl' ) => '_listing_address', __( 'City:', 'apl' ) => '_listing_city', __( 'State:', 'apl' ) => '_listing_state', __( 'ZIP:', 'apl' ) => '_listing_zip' ); $details['col2'] = array( __( 'MLS #:', 'apl' ) => '_listing_mls', __( 'Square Feet:', 'apl' ) => '_listing_sqft', __( 'Bedrooms:', 'apl' ) => '_listing_bedrooms', __( 'Bathrooms:', 'apl' ) => '_listing_bathrooms', __( 'Basement:', 'apl' ) => '_listing_basement' ); return $details; }If you’re already doing that or need more help with this, please feel free to ask.
Forum: Plugins
In reply to: [Genesis Simple Share] Not working with lifestyle pro themejQuery is enqueued by the Genesis Simple Share plugin by default, so it should be there without you having to make any changes to your theme.
On your site, I don’t see jQuery or
jquery.sharrre.min.js. It’s possible that another plugin or a theme customisation may be removing scripts. You could try:– Taking a full site backup.
– Temporarily disabling all plugins except for Genesis Simple Share.
– Temporarily reverting to an unmodified version of your theme (if your theme has been altered).
– Clearing any caching plugins or services you are using.
– Checking for errors in your server’s log files.Sorry for the late reply, Derek.
Firstly, this forum is monitored, and we appreciate your feedback!
Although mature plugins like this one with simple, useful features tend not to be updated as regularly as new or complex plugins, I’ve passed on your request. I can’t yet share an update schedule, but I wanted to let you know that we’re listening. Thanks again for sharing your comments and for making use of the plugin.
Forum: Plugins
In reply to: [AgentPress Listings] Listings Marked as Sold still showing on home pageYou’re welcome!
You’re welcome! Completely understand your desire to stick with StudioPress plugins. 🙂
There are no immediate plans to add carousel support that I’m aware of, and it’s not a request I see regularly, but you’re very welcome to modify the plugin if you wish. (I will file this as a feature request, but I can’t promise if or when it will be added.)
Forum: Plugins
In reply to: [Genesis Responsive Slider] Genesis Responsive Slider DisappearedHi kalamitykristen.
It’s possible that your custom theme may be using a homepage template that doesn’t output the widgets where you expect.
You’re welcome to email me with login info if you’d like. I’m happy to take a quick look to try and pinpoint this for you:
nick.cernis [at] copyblogger [dot] comHi, l0rily!
Genesis Responsive Slider is intended for full-width slides at the moment – it doesn’t support carousels like the one on your site by default, which is why you’re seeing the slide wrap-around issue.
To fix the layout issue with your carousel, you’d likely need to:
1. Update
wp-content/plugins/genesis-responsive-slider/js/jquery.flexslider.jsto the latest version of flexslider, which supports carousels: https://github.com/woothemes/FlexSlider/blob/master/jquery.flexslider.js2. Adapt the
$outputvariable in thegenesis_responsive_slider_flexslider_params()function atwp-content/plugins/genesis-responsive-slider/genesis-responsive-slider.phpto include theitemWidthanditemMarginproperties from the carousel demo at http://flexslider.woothemes.com/basic-carousel.html.You may need to make additional changes, but hopefully that helps as a starting point.
If you’d prefer not to adapt the plugin directly, you could consider using a slider that supports carousels by default, such as this one: http://soliloquywp.com/addons/carousel/
Forum: Plugins
In reply to: [Genesis Responsive Slider] One Image in the slider is Off CenterIf you change the “Maximum Slider Width” field to 1140 instead of 1068 at Genesis → Slider Settings, does that make the images use the full width instead of being aligned left on big screens?
(You’ll also need to make sure that the original featured images you uploaded are at least 1140px wide.)
Forum: Plugins
In reply to: [AgentPress Listings] Listings Marked as Sold still showing on home pageHi Cyndi
The featured listings widget shows the newest listings first, including those with custom text such as “sold” labels.
If you edit the publish date of your sold listings to be older than your latest listings (here: http://d.pr/i/16XyY ), you should find they no longer appear on the homepage.
@hwressnigg I answered your question here, just in case you missed it: https://wordpress.org/support/topic/add-widget-in-hook?replies=2
Forum: Plugins
In reply to: [Genesis Simple Share] Not working with lifestyle pro themeThanks for reactivating the plugin.
Are you using a plugin or modification to remove jQuery from your site? Or a plugin to load it asynchronously (such as Async JavaScript or WP Defer JavaScript)?
I see “jQuery is not defined” in the console on the page at http://www.freshers9.com/iocl-mathura-refinery-recruitment-2016/, and it looks like jQuery is not being loaded correctly: http://d.pr/i/14N3u. If you can resolve that the plugin should work well for you.
Forum: Plugins
In reply to: [Genesis Simple Hooks] Add Widget in Hook?Thanks for the kind words!
To add a new widget area you’ll need some admin hooks that Simple Hooks doesn’t offer by default.
You could follow a tutorial to add the widget code to your theme’s functions.php file, though:
http://wpsites.net/web-design/widget-genesis/
https://www.nutsandboltsmedia.com/how-to-add-a-widget-area-to-a-page-using-genesis/Forum: Plugins
In reply to: [Genesis Simple Share] Not working with lifestyle pro themeHi, igovtjobs.
I don’t see the plugin active on your site now. Did you enable the buttons in the Genesis → Simple Share settings after activating the plugin?
It’s also worth checking your console for errors: http://webmasters.stackexchange.com/a/77337/7198
Forum: Plugins
In reply to: [AgentPress Listings] Search results don't show the taxonomyHi Marcus,
I’m not sure when the next update is due out, but thanks for your feedback on this so far.
For this particular issue, the best course of action is to change or remove the “Search Results for” label in your theme, where that text is controlled.
For example, AgentPress Pro uses a custom template in place of the default search template, and so the “Search Results for” box never appears on the property search pages: http://demo.studiopress.com/agentpress/?s=test&post_type=listing&types=&bedrooms=4-bedrooms&price=
For Winning Agent you can continue to use the above filter to amend the search text if you wish, though.