Nick C
Forum Replies Created
-
Forum: Plugins
In reply to: [Genesis Connect for WooCommerce] product page layoutHi, @detoner!
All recent StudioPress themes with WooCommerce support now include a fix for equal-height layouts on product archive pages.
This is something that’s implemented at the theme level so that any styling adjustments can be made to the theme directly, so it likely won’t become part of Genesis Connect.
If you’re interested in applying this to your own Genesis child themes, one way is to use the jQuery Match Height plugin. Here is how that works in Altitude Pro, for example:
add_action( 'wp_enqueue_scripts', 'altitude_products_match_height', 99 ); /** * Print an inline script to the footer to keep products the same height. * * @since 1.1.0 */ function altitude_products_match_height() { // If WooCommerce isn't active or not on a WooCommerce page, exit early. if ( ! class_exists( 'WooCommerce' ) || ( ! is_shop() && ! is_woocommerce() && ! is_cart() ) ) { return; } wp_enqueue_script( 'altitude-match-height', get_stylesheet_directory_uri() . '/js/jquery.matchHeight.min.js', array( 'jquery' ), CHILD_THEME_VERSION, true ); wp_add_inline_script( 'altitude-match-height', "jQuery(document).ready( function() { jQuery( '.product .woocommerce-LoopProduct-link').matchHeight(); });" ); }You’d need to save the jquery.matchHeight.min.js file to your theme’s
jsdirectory and add the above code to yourfunctions.phpfile, then adjust your product page styles further with CSS if you wish.Forum: Plugins
In reply to: [Genesis Connect for WooCommerce] light box supportThanks for this suggestion, @detoner!
Many StudioPress themes do add WooCommerce 3 gallery support by default now. If your theme does not, you can add these three lines to your
functions.phpfile, as described in the article you referenced:add_theme_support( 'wc-product-gallery-lightbox' ); add_theme_support( 'wc-product-gallery-slider' ); add_theme_support( 'wc-product-gallery-zoom' );It’s up to individual themes to add gallery support and adjust styling if needed, so this is not something that’s likely to be added to Genesis Connect directly.
Forum: Plugins
In reply to: [Genesis Simple Share] Causing errors in the customizerHi, @minachu!
First, it would be worth reinstalling Simple Share to make sure all files are present and that you’re running 1.1.1.
If that does not fix things, it sounds like the sharrre JavaScript library is not being enqueued in the Customizer. It’s possible that minification or other performance plugins could cause this. If you disable other plugins, does Simple Share then work for you?
If you still see the issue with other plugins disabled, please could you file a support ticket at https://my.studiopress.com/help/ and be sure to include a link to your site? We’d be happy to take a closer look for you.
Hi, @coffeehero!
You can add this to your robots.txt to dissuade Google and other crawlers from following your Simple URL links:
Disallow: /go/Forum: Plugins
In reply to: [Genesis Simple Share] error last updateGlad all is now well for you, @chris179 and @yaiko76!
Sorry to hear you’re missing your buttons, @ivcata! Please could you first try clearing all caching plugins, as well as your browser cache? If that does not solve things for you, please feel free to open a new thread with a link to a page where the buttons are missing:
https://wordpress.org/support/plugin/genesis-simple-share#new-post
Forum: Plugins
In reply to: [Genesis Simple FAQ] number of items displayedI’ve followed up in the issue, @jivedig: https://github.com/copyblogger/genesis-simple-faq/issues/29#issuecomment-341884419.
Thanks for sharing your thoughts here (and there)!
Forum: Plugins
In reply to: [Genesis Simple Share] error last updateThanks for these notes – the issue has been reported and an update to fix this will be prepared.
For now, you can either deactivate the plugin, or delete it and then download and install 1.0.9 using the form at the bottom of this page: https://wordpress.org/plugins/genesis-simple-share/advanced/
Thanks again for starting this thread, and I’m sorry for the wait in putting this right.
Forum: Plugins
In reply to: [Genesis Responsive Slider] Slider DisappearedThanks for this report – I’ve filed an issue for Genesis Simple Share. Once that’s corrected, you’ll be able to update it safely without losing your slider.
Forum: Plugins
In reply to: [Genesis Simple Share] error last updateSorry for this hiccup!
The issue has been reported to the StudioPress developers so that an updated version with some missing files can be prepared. I don’t have a timeline on this yet, but thank you for the report.
Forum: Plugins
In reply to: [Genesis Tabs] Changelog for 0.9.4 ?Hi, @bcolflesh.
The changelog for 0.9.4 is visible here:
https://wordpress.org/plugins/genesis-tabs/#developers
0.9.4
- Fixed styling issue
- Fixed strict warnings
- Discontinue use of deprecated functions
Forum: Reviews
In reply to: [GNU Terry Pratchett] I commend my soul to any God that can find it❤︎
Forum: Plugins
In reply to: [Genesis Responsive Slider] Thick grey border around sliderHi, @cheshirecatt6!
Are you able to put the site online, perhaps in a staging area?
The slider styling can be affected by your theme or plugin CSS, but I’d be happy to review it and suggest a fix if you can make it available.
Forum: Plugins
In reply to: [Genesis Simple FAQ] Caption Shortcode not displaying outputThanks for this report, Jackie! I see the same issue if the image has a caption.
Reported here: https://github.com/copyblogger/genesis-simple-faq/issues/35
Images without captions display correctly, so omitting the caption is one workaround for now.
You could alternatively modify the plugin as described in the above issue if you wish.
Forum: Plugins
In reply to: [AgentPress Listings] Plugin Hacked or Updated?You’re welcome!
Looking at the commit history for that file, the text domain did used to be
apl. Maybe you edited an old version locally and pushed the changes to the remote site (overwriting the longer text domain), or otherwise modified an older version.Well done for putting it right, anyway.
Forum: Plugins
In reply to: [Genesis Connect for WooCommerce] Deprecated Notice: woocommerce_get_page_idAn update will be released to correct these PHP warnings and introduce new features and fixes, but I don’t yet have a timeline for its release. I’m sorry for the delay there.
If you’re seeing the messages on your public site, I recommend contacting your host to ask them to disable logging to screen, as PHP warnings and errors should not be visible on a live production site. (It is fine to log messages privately to a file or make them available via a control panel.)
If you’re seeing the warnings on a private development site, I’m sorry for the noise in your logs for now.