Nick C
Forum Replies Created
-
Forum: Plugins
In reply to: [Simple Social Icons] email address isn’t encodedForum: Plugins
In reply to: [Simple Social Icons] email address isn’t encodedThank you for testing that, @shotokan-karate-of-america.
You are welcome to try the development version of the plugin here, which works to obfuscate email addresses in my tests: https://github.com/studiopress/simple-social-icons/archive/develop.zip
You’d need to uninstall the existing plugin and replace it with that version.
You will also need to enter your address into the widget as ‘test@example.com’ rather than ‘mailto:test@example.com’.
Forum: Plugins
In reply to: [Simple Social Icons] email address isn’t encodedHi, @shotokan-karate-of-america.
The next update to Simple Social Icons will include email address protection:
https://github.com/studiopress/simple-social-icons/issues/14
I don’t have a release date for this just yet. If you’d prefer not to wait, though, you could modify the plugin with the same one-line amend displayed here:
https://github.com/studiopress/simple-social-icons/pull/61/files
I recommend taking a backup of your site before editing PHP files.
@charlesjenks AgentPress Listings already works as is with Gutenberg in our tests. If you encounter issues, please feel free to open a new forum topic.
@alinaj AgentPress is working with WordPress 4.9.8 in my tests. If you still have issues, please could you open a new topic and share what you mean by “stopped working properly”? We’d be happy to investigate.
Forum: Plugins
In reply to: [CM Tooltip Glossary] Conflict with the theme customizerIt turned out to be the Dashlane browser extension.
Disabling that allowed the Customizer to load.
Forum: Plugins
In reply to: [CM Tooltip Glossary] Conflict with the theme customizerJust a friendly note to say that we at StudioPress tested the News Pro theme with CM Tooltip Glossary, and the Customizer is working for us on pages that use tooltips:
I replied to our support ticket with @hiiab offering some suggestions (disabling browser extensions such as Dashlane, temporarily removing custom scripts such as the MailChimp newsletter script in use on the site, disabling other plugins, and checking the console for JavaScript errors on the broken Customizer page). You’re very welcome to follow up by email there, hiiab.
Forum: Plugins
In reply to: [Genesis Responsive Slider] GPDR ComplianceHi, Lisa!
The Genesis Responsive Slider plugin stores no visitor data.
Forum: Plugins
In reply to: [Read More Without Refresh] Stopped working@gkouvousisg I can’t reproduce any issues with Genesis Connect and Read More Without Refresh so far.
It seems this may be specific to @gvnet’s use of the shortcode on WooCommerce product archive pages. But it works fine for me there too so far in the product archive description field. I’m awaiting more info about how the archive page is configured at https://wordpress.org/support/topic/plugins-conflict-4/#post-10580748.
Forum: Plugins
In reply to: [Genesis Connect for WooCommerce] Plugins conflict@gvnet I just found the link to your sample content at https://www.theskincareclinic.com.au/product-category/brand/skin-care/aspect-dr/ in the Read More plugin forum at https://wordpress.org/support/topic/stopped-working-296/.
It looks like you’re using the read more shortcode in a product category description field?
For me the [read] shortcode works in the category Description field in Genesis Connect 0.9.10 and 1.0.0. Please feel free to share more information about how the page is set up if you’d like further help with this.
Forum: Plugins
In reply to: [Read More Without Refresh] Stopped workingRead More Without Refresh works with Genesis Connect 1.0 in my tests. I’ve posted results at https://wordpress.org/support/topic/plugins-conflict-4/#post-10580748.
If this only occurs when both Genesis Connect and Read More are active, and it did not occur with a previous version of Genesis Connect, you’re welcome to follow up in that topic. I’d be happy to review steps to reproduce this.
- This reply was modified 7 years, 9 months ago by Nick C.
Forum: Plugins
In reply to: [Genesis Connect for WooCommerce] Plugins conflictHi @gvnet,
Read More Without Refresh 2.3 is working with Genesis Connect for WooCommerce 1.0 for me.
I tested it with the Genesis Sample theme on products and regular pages:
Are you sure it’s related to Genesis Connect and not another plugin?
If you would like to share steps to reproduce this, or link to a page where the plugin is broken, I’d be happy to review this further.
Forum: Plugins
In reply to: [Osom Author Pro] Author linkYou could add this code to the bottom of your theme’s
functions.phpfile, after all other code:add_filter( 'pre_term_link', 'custom_author_link', 10, 2 ); function custom_author_link( $link, $term ) { if ( $term->slug === 'daisy-pettles' ) { $link = '/about-daisy/'; } return $link; }- This reply was modified 7 years, 9 months ago by Nick C.
Forum: Plugins
In reply to: [Genesis Connect for WooCommerce] Description bellow the productsHi @malupillas
I recommend posting this customisation question in the StudioPress forums, or using the Slack and Facebook groups:
https://my.studiopress.com/community/
It will help people to have a link to your site and a detailed description of what content you would like to appear where.
Forum: Plugins
In reply to: [Osom Author Pro] Add sidebar to book pagesYou’re welcome, Cindy!
The Genesis Columns Advanced plugin styles are conflicting with the theme styles for the book page on your staging site.
If you disable Genesis Columns Advanced, you will see a layout that matches the demo at https://demo.studiopress.com/author/book/midnight-on-earth/.
Forum: Plugins
In reply to: [Genesis Connect for WooCommerce] Description bellow the productsHi @malupillas
You can add the full product description to the shop template when it’s set as your homepage by:
1. Editing your theme’s functions.php.
2. Adding this code to the bottom of the file:
add_action( 'woocommerce_after_shop_loop_item', 'custom_product_content_on_homepage', 9 ); function custom_product_content_on_homepage() { if ( is_front_page() ) { the_content(); } }Or use this code to output the “product short description” instead:
add_action( 'woocommerce_after_shop_loop_item', 'custom_product_description_on_homepage', 9 ); function custom_product_description_on_homepage() { if ( is_front_page() ) { the_excerpt(); } }I hope this helps as a starting point for you.
For further help with theme customisations, I recommend the StudioPress community resources here: https://my.studiopress.com/community/.