mountainash
Forum Replies Created
-
Forum: Plugins
In reply to: [Yoast SEO] Table wp_yoast_seo_meta needs primary keyThis issue is going to get more pressing as Digital Ocean is now emailing daily if a table on their managed database doesn’t use a primary key.
I think this issue needs reopening (closing an issue “due to inactivity” doesn’t “resolve” the issue… it just hides it under the carpet).
Forum: Plugins
In reply to: [WP Review Slider] Digital Ocean wants all tables to have Primary KeysWhat about paying users? We are on “11.0.8 Premium” but WordPress isn’t prompting to update. Has an update been pushed to the premium channel?
Forum: Plugins
In reply to: [Google Analytics for WooCommerce] SEO by Yoast CompatibleForum: Plugins
In reply to: [WP Theater] How to setup v3 APII got it working using v3 but you need a
sever
key, not a browser key. I’m guessing this is because it’s a cURL request from the server to the YT API, not a JS request from the users browser.Forum: Requests and Feedback
In reply to: Request to add "callto" to esc_url_raw functionDigging in to this further (the beauty of open-source), I’ve discovered that “tel” is an allowed protocol (“wp_allowed_protocols”) – but it seems that “callto” is the preferred option on the web as it also triggers Skype for desktop users (along with smartphone phone call apps).
Also of note is that “tel” is not in the WP documentation (also missing is ‘mms’, ‘rtsp’, ‘svn’, ‘tel’, ‘fax’, ‘xmpp’).
Forum: Plugins
In reply to: [Plugin: New User Email Set Up] Tested with 2.8 (not compatible)Like @mindboggling I’m also getting the last letter chomped from the ‘from’ name.
I’ve added and extra character as a work around.
+ It would be nice if the preview substituted some dummy data (the admin’s details for the variables in the preview, just to check they work correctly.
Forum: Plugins
In reply to: [Plugin: WordPress Advanced Ticket System] single-ticket.php not overridingI’ve found the issue.
Line 296 of wats-template.php is missing a slash.
Instead of
if (file_exists(TEMPLATEPATH.'single-ticket.php'))
it should be
if (file_exists(TEMPLATEPATH.'/single-ticket.php'))
Also of note is that the default comments-tickets.php has a lot of French that should be in the .po and replaced with English.