excentricjester
Forum Replies Created
-
Forum: Plugins
In reply to: [Advanced Custom Fields: Extended] Permanently delete block typeThat got it ??
It’s possible I migrated the site from local to dev at some point, but I can’t remember now.
Thanks for your help!
Forum: Plugins
In reply to: [Advanced Custom Fields: Extended] Gutenberg noteCheers!
Forum: Plugins
In reply to: [Central Color Palette] Customiser issue with Gutenberg pluginI’ve just done some more testing and with the Twenty Twenty theme the background colour palette breaks in Customise (there doesn’t appear to be a text colour setting).
The issue is introduced with the Gutenberg plugin v8.9.0. v8.8.0 works as expected.
Forum: Plugins
In reply to: [SVG Support] Target multiple class names?Thanks! I’ll keep an eye on the updates ??
Forum: Plugins
In reply to: [Skytells Guard - All-In-One Security Pack] Plugin could not be activatedThanks, this did fix the problem. Having checked it out though this is not the plugin for me.
Oh, okay thanks!
Yes, it is being generated. It wasn’t appearing in my FTP even when I refreshed, but if I visited /robots.txt it was there.
Thanks Alex! I’ve tested the update and it fixed my issues ??
Hi Alexander, I’ll send an email now with a login to our development site. I’ve tracked it down to having the NextGEN Gallery plugin active while using remove html comments, but there’s nothing in the error logs or console errors.
The robots.txt file on this site is not updating, but I tested it on another site and it did.
And RE: the import. I configured the plugin how I would like to use it and deactivated a few components I won’t use, but when I import the options into a new site I have to go back to Components and deactivate the ones I won’t use again.
Forum: Plugins
In reply to: [Ultimate Image Optimization Helpers] WP Default QualityOh, I just noticed in the optimisation tooltip it says it’s 100. Maybe either the value or label should change for this one.
Thanks for letting me know! ??
Awesome, thanks! Enjoy your weekend ??
Forum: Plugins
In reply to: [Meta Box] image_advanced field no longer on custom tax edit screenHi @rilwis,
I found what the problem was for me.
The line
$post_types = get_post_types();
was working on pages, but not my custom post types because the default is set to'post_types' => array( 'post', 'page' )
I updated that line to include my custom post types and it is working everywhere now with version 4.10.3
$post_types = array( 'post', 'page', 'press', 'residential', 'commercial' );
@dwcouch I suspect you have the same issue, so you might want to check the code inside your function.
- This reply was modified 7 years, 9 months ago by excentricjester. Reason: Editing code
Forum: Plugins
In reply to: [Meta Box] image_advanced field no longer on custom tax edit screenI just ran into the same issue on a site I took over using WP 4.7.2 and Meta Box 4.10.3.
I tried a few recent earlier releases then jumped back to 4.8.7, which is displaying the fields in the admin again.
Using the code below:
add_filter( 'rwmb_meta_boxes', 'images' ); function images( $meta_boxes ) { $prefix = 'pfim_'; $post_types = get_post_types(); $meta_boxes[] = array( 'title' => __( 'Images', 'pfim' ), 'post_types' => $post_types, 'fields' => array( // PLUPLOAD IMAGE UPLOAD (WP 3.3+) array( 'name' => __( 'Images for pages / posts', 'pfim' ), 'id' => "{$prefix}pluploader", 'type' => 'image_advanced', 'max_file_uploads' => 10, ) ) ); return $meta_boxes; }
As with @dwcouch all other meta boxes are working on the same custom post types where advanced images are not.
Forum: Plugins
In reply to: [Slick Slider] Don’t fallback to title if caption is blankThanks, that does exactly what I want!