Shaun Robinson
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce Direct Variation Link] Bundled ProductsI too came across this issue, and have a fix for it – I’ve published it as a pull request on this plugin’s Github page.
https://github.com/wp-plugins/woocommerce-direct-variation-link/pull/1
+1 please move this!
I get this error as well, if there is a “maximum number allowed in cart” then it triggers the error.
It’s line 136:
$this->json_headers();
That’s what triggers the error.
Forum: Plugins
In reply to: [Campaign Monitor for WooCommerce] Please shorten/move admin menu name+1!
Forum: Plugins
In reply to: [WP Broadbean] Apply Form inline rather on a separate pageThanks for your reply, in the end we set up our own form using Gravity Forms.
I’m not sure what it is, I tried disabling all plugins except those 2, and changing the theme to Twenty Twelve, and it still said “Untitled” yet when I try it on a fresh install it works.
WordPress 4.7.1 and SEO Framework 2.7.3
Is there another way I can override the title myself?
Hi, was there ever a filter added? We need to have custom title tags for archive pages and I’m not seeing any way to do that currently.
Hi,
OK thanks for that, yes if you removed it on purpose then there are several places which mention links to the CV that should be removed – in the email, and on the actual application edit screen (it says Attachments to this Application are listed below).
Thanks
ShaunForum: Plugins
In reply to: [WordPress REST API (Version 2)] Get drafts?You can only get draft posts if you’re authenticated as a user who has access to those drafts, see here: http://v2.wp-api.org/guide/authentication/
Forum: Plugins
In reply to: [The SEO Framework – Fast, Automated, Effortless.] Remove from a taxonomy?Thanks, I had to adjust the code to use $current_screen as an object instead of an array but after that it worked perfectly.
Updated code, for reference:
add_action( 'current_screen', 'my_remove_tsf_metabox', 9 ); function my_remove_tsf_metabox() { if ( function_exists( 'the_seo_framework' ) ) { global $current_screen; //* Dump the name you need to fill in 'taxonomy_slug' further down below. Remove the following line after you've found its name. var_dump( $current_screen->taxonomy ); //* Replace 'taxonomy_slug' with the one found from the dump. if ( isset( $current_screen->taxonomy ) && 'taxonomy_slug' === $current_screen->taxonomy ) remove_action( 'current_screen', array( the_seo_framework(), 'add_taxonomy_seo_box_init' ), 10 ); } }Forum: Plugins
In reply to: [The SEO Framework – Fast, Automated, Effortless.] Remove from a taxonomy?Hi,
That removes it from all taxonomies, including the default.. is there a way to pick and choose which taxonomies to remove it from?
Regards
ShaunForum: Plugins
In reply to: [The SEO Framework – Fast, Automated, Effortless.] Remove from a taxonomy?Hi,
I’m using CustomPress which sets “public” to “advanced”, letting you pick and choose the settings but it doesn’t make the required change you’re talking about.
https://premium.wpmudev.org/project/custompress/
So if you can write a custom snippet that would be perfect, thanks!
Forum: Plugins
In reply to: [Stripe for WooCommerce] TLS 1.2I don’t think it has, I am getting the following error:
Stripe no longer supports API requests made with TLS 1.0. Please initiate HTTPS connections with TLS 1.2 or later. You can learn more about this at https://stripe.com/blog/upgrading-tls.
Forum: Plugins
In reply to: [The SEO Framework – Fast, Automated, Effortless.] Remove from a taxonomy?Hi,
I’d like the remove the entire “SEO” box, because it’s not necessary on this taxonomy (it’s hidden on the frontend).
Regards
ShaunForum: Fixing WordPress
In reply to: Media titles being sanitizedYes that’s it. Glad to see it’s being investigated, thanks.