Ben Huson
Forum Replies Created
-
Is the link from your image that you click to exactly the same domain as your website?
ie. Home page = http://www.example.com
Link = http://www.example.com/link-to-pageForum: Plugins
In reply to: [ShareThis: Free Sharing Buttons and Tools] define('SCRIPT_DEBUG', true);Yep, throwing an error for me too in my development environment where I already have
SCRIPT_DEBUGdefined in my wp-config.php for debugging.1.7.4 being released immediately with a fix.
Forum: Plugins
In reply to: [Content Parts] Can't publish postsI cannot replicate an issue with saving posts.
Could you give more details as to how to replicate the problem. Have you tried deactivating all other plugins and switch to a default WordPress theme?
Forum: Plugins
In reply to: [List Pages Shortcode] The shortcode returns nothingThat’s very odd.
Do you know what version of PHP do you have running on your VPS?
Forum: Plugins
In reply to: [List Pages Shortcode] Add PHP7 ComplatibiliyThanks. I’ll release an update soon.
Many thanks 🙂
Forum: Plugins
In reply to: [Taxonomy Images] You don't have permission to attach files to this post.If version 0.9.4 hasn’t fixed this issue, please open a new support thread. Thank you. 🙂
Forum: Plugins
In reply to: [Taxonomy Images] You don't have permission to attach files to this post.@inetpeter I can replicate and confirm the Uppercase characters issue – that will be fixed in the next release 🙂
Forum: Plugins
In reply to: [Taxonomy Images] You don't have permission to attach files to this post.Hi Tim,
Weird, I’m not getting any errors when testing. Can you try clearing your browser cache, just in case some older JavaScript is caching?
What version of WordPress do you have installed?
Ben
Forum: Plugins
In reply to: [Taxonomy Images] You don't have permission to attach files to this post.Hopefully this is fixed in version 0.9.3
Please post your feedback if it is/isn’t fixed in this version for you.
Forum: Plugins
In reply to: [Taxonomy Images] You don't have permission to attach files to this post.I’m currently working on a fix for this.
I would encourage you to follow this support ticket:
https://github.com/benhuson/Taxonomy-Images/issues/28…and try out the development version mentioned here if you are able, providing any feedback if it helps resolve your issue (or not:
https://github.com/benhuson/Taxonomy-Images/issues/28#issuecomment-173008591Many thanks
Ben
Forum: Plugins
In reply to: [WP Subtitle] include the plugin in functions.phpI would not recommend you include the plugin file in the theme as it would then not receive any plugin updates if there are any security issues etc.
It’s best just to build the theme so that it works with/without the plugin and direct users to download the plugin to add that functionality.
Just ensure you use
function_existswhen using the plugin code in your templates so it doesn’t produce errors if the plugin is disabled.<?php if ( function_exists( 'the_subtitle' ) ) the_subtitle(); ?>Forum: Plugins
In reply to: [WP Subtitle] running two versions of plugin for two different subittles?It’s not possible to install the plugin twice (I’m guessing you want 2 fields?)
You might find a plugin like Advanced Custom Fields is more suitable for what you are trying to do?
Forum: Plugins
In reply to: [WP Geo] Custom markersIt is via some filters which are not yet documented.
There is some older documentation for the filters here that may help.