Nick C
Forum Replies Created
-
Forum: Plugins
In reply to: [Genesis Simple Hooks] "Execute PHP" flag ERRORHi Luca!
So far I couldn’t reproduce this. For me, clicking “Execute PHP” on all fields and saving changes does not redirect to the homepage, even if I insert no PHP code.
If the plugin redirects to your homepage even when all fields are empty, it would be worth checking that your web host does not restrict use of PHP’s
eval()function, which Simple Hooks requires.Forum: Plugins
In reply to: [Osom Author Pro] "Series" Link ErrorYou’re welcome! Happy to help. Your series page is looking great. 🙂
Forum: Plugins
In reply to: [Genesis Simple Share] Facebook share count lost after migration to httpsHi, quantumsmoke!
Thanks very much for this feedback. We have an open issue to count
httpsandhttplinks that are otherwise identical as one URL, but I can’t yet confirm if or when this might be added.If you fancy modifying the source yourself or contributing a fix, counting multiple URLs likely requires one request for both URL variants, like this:
The response includes stats for each address: http://d.pr/i/16lsl. That will give you the chance to combine a count for both, rather than getting the http/https stats only, or the http stats you saw from the protocol-less URL structure.
Forum: Plugins
In reply to: [Osom Author Pro] "Series" Link ErrorHi, Gene!
It would be worth refreshing your permalinks as a starting point:
1. Visit Settings → Permalinks.
2. Click “Save Changes” at the bottom of the page. (You don’t need to make any changes.)You may find your series pages then load at http://genewhitehead.com/series/books-of-the-infinite/.
If that doesn’t solve this, have you tried disabling all other plugins temporarily?
Forum: Plugins
In reply to: [Genesis Simple Edits] Error after update to Genesis Simple Edits 2.1.3@tbrewerphoto If you still have admin access to your site, you can deactivate the plugin from Plugins → Installed Plugins by clicking “Deactivate” under Genesis Simple Edits.
If you see an “Update” link there, updating to version 2.1.4 should solve this issue.
If you can’t access the admin area, you can remove the plugin via your web host’s file browser or by using an FTP application. You’ll need to browse to
wp-content/plugins/and delete or rename thegenesis-simple-editsfolder. You should then be able to access the admin area again to update it to 2.1.4.Forum: Plugins
In reply to: [Genesis Connect for WooCommerce] The WooCommerce Product Page tabsHappy to help!
All items on that page have a class of ‘first’ for some reason, so they’re being displayed in a single column.
You could add the following code to your theme’s stylesheet to try to work around this:
.woocommerce.archive ul.products li.first { clear: none; }If you have other theme layout and styling issues unrelated to the Genesis Connect plugin, you could try posting in the StudioPress forum in the Design Tips and Tricks section: http://d.pr/8Hd1.
Forum: Plugins
In reply to: [Genesis Connect for WooCommerce] The WooCommerce Product Page tabsHi, ueprod!
It looks like the styles from your Simple Shortcodes plugin are conflicting with the WooCommerce tab styles. You could try disabling that plugin.
If I remove those styles in developer tools as a test, your tabs look good again: http://d.pr/i/18bcE
Forum: Plugins
In reply to: [AgentPress Listings] Change default "listings" directory to another nameHi, melissab737.
You can modify the ‘listings’ part of your URL like this:
1. Add the following code to your active theme’s functions.php file:
add_filter( 'agentpress_listings_post_type_args', 'custom_agentpress_listings_post_type_args' ); function custom_agentpress_listings_post_type_args( $args ){ $args['rewrite']['slug'] = 'listings'; return $args; }2. Change ‘listings’ to the new name you want to use in your URL structure.
3. Visit Settings → Permalinks in your WordPress admin area and click “Save Changes”. (You don’t have to change any settings there.)
Forum: Plugins
In reply to: [Genesis Simple Share] add text above share iconsHi govtjobs,
The final example here explains how to add text above your icons:
https://github.com/copyblogger/genesis-simple-share/wiki/Usage-Tips
You can add the code to your active theme’s functions.php file, then change the line containing “If you liked this article…” to your own custom text.
Forum: Plugins
In reply to: [Genesis Responsive Slider] Slider cutting off the bottom of picturesHi jct6878,
For me your first image was displaying at 800×400 rather than 800×533.
I refreshed the page and all are displaying at 533px height now – I don’t see any images cut off any more. Perhaps you re-uploaded them as I was looking at this and things are now resolved?
Please feel free to ask if you need any further help at all.
Forum: Plugins
In reply to: [Genesis Responsive Slider] Slider no longer animatesYou’re welcome! Glad that helped.
Only issue now is my theme’s widget borders are not appearing. Any idea what could be causing that?
I checked an older snapshot of your site at https://web.archive.org/web/20160219071242/https://carpetworkroom.com/ and for me the widget borders appear the same way now as they did then.
Perhaps you were able to resolve this? It sounds like it may be unrelated to the slider issue, but feel free to share more info if you’d like me to take a quick look for you.
Forum: Plugins
In reply to: [Genesis Responsive Slider] Slider navigation no longer workingHi, ndk227
Thanks for the report! I checked your homepage at http://techmomogy.com/ and the slider arrows are working for me.
Is this still happening for you? What browser and OS are you using? I’d be happy to take another look.
Forum: Plugins
In reply to: [Genesis Simple Share] Google and Facebook shares not workingAre you using a
localhostdomain in your local dev environment?If so, you’ll see those errors for Facebook and Google+ until you update to use a domain or local dev URL. e.g.
https://www.facebook.com/sharer/sharer.php?u=http%3A%2F%2Flocalhost%2Ftest%2F&t=Test
https://plus.google.com/share?hl=en-US&url=http%3A%2F%2Flocalhost%2Ftest%2F
As soon as you update to a non-localhost URL those errors should clear.
Forum: Plugins
In reply to: [Genesis Simple Share] Not working with lifestyle pro themeGreat to hear! Thanks for letting us know. 🙂
Forum: Plugins
In reply to: [Genesis Simple Share] Not working with lifestyle pro themeThe underlying problem is that jQuery isn’t being added to your pages. When jQuery is enqueued correctly you will no longer see “jQuery is not defined”.
As I said, normally jQuery would be enqueued automatically, but something on your site is preventing this.
Did you try the steps I mentioned in my previous reply? Disabling other plugins and temporarily undoing any theme or plugin modifications is worth trying as a starting point.