Nate Zander
Forum Replies Created
-
Forum: Plugins
In reply to: [Multiple Featured Images] Please update your great pluginHi @marcuskober –
My sincere apologies, the error was being generated from a different plugin, multiple-post-thumbnails. We are updating a legacy site that actually has both plugins active and we are in the process of moving completely over to your plugin. Everything is working perfectly! Thank you for your hard work on this plugin and your quick response!
Forum: Plugins
In reply to: [Multiple Featured Images] Please update your great pluginYes please! We love your plugin and I’m getting new errors on WP 5.5 when trying to attach images to a post.
I guess I just don’t want to commit to a column layout (extra markup) and content needs to flow under the infobox (its floated). That said, I’ll be sure to give it a try.
Hi Ben-
Yeah I get that its a pain to accomodate every feature request. Thanks again for your active support of this plugin!
Here are a few examples. You can see it’s as simple as having access to heading blocks or lists, or maybe left align the content with a centered title.
https://www.dropbox.com/s/cmw5yk7k112le90/Screen%20Shot%202019-12-10%20at%208.25.37%20AM.png?dl=0
https://www.dropbox.com/s/fehthc5tch0g69t/Screen%20Shot%202019-12-06%20at%203.12.25%20PM.png?dl=0
Thanks again.
Hi Ben-
Opened up the plugin today and I can now choose my image crops, thank you! Performance is greatly improved!
Thanks for your continued work on this great plugin!
- This reply was modified 5 years ago by Nate Zander.
Forum: Plugins
In reply to: [Multiple Featured Images] How import Feature images with Wp all importI figured it out! The plugin stores the ID of the image you want to use as postmeta
The custom field name is
_kdmfi_your-registered-id
So if you registered your featured image like this:
add_filter( 'kdmfi_featured_images', function( $featured_images ) { $args = array( 'id' => 'slider-image', 'post_type' => array('post', 'page', 'tnb-issue'), // Set this to post or page 'label_name' => 'Hero', 'label_set' => 'Set Hero Image', 'label_remove' => 'Remove Hero Image', 'label_use' => 'Use as Hero Image', ); $featured_images[] = $args; return $featured_images; });
Then in wp-all-import set the custom field
_kdmfi_slider-image
to have the value of the ID of the image you want (i.e. the image must already be in your media library)Forum: Plugins
In reply to: [Multiple Featured Images] How import Feature images with Wp all importI’m also trying to figure this out – I assume there’s a custom field I can write to to set the path for my registered image slot?
For example, I’ve registered the id of my second featured image as
slider-image
and I’ve tried setting the value of a custom field calledkdmfi_slider-image
to the path of an image in the media library.Or perhaps we need to use the function editor to do this?
Thank you for your consideration!
Awesome.
Thanks again for the great plugin!
- This reply was modified 5 years, 7 months ago by Nate Zander. Reason: Marked as resolved
BUT, the inline styles are still added. So would still love some help on unregistering those. Thanks!
Looks like the old PHP way works. Perhaps this is best practice? (This unregisters ALL styles for the plugin, not just tabs)
function my_enqueue_scripts() { wp_dequeue_style( 'kadence-blocks-style-css' ); } add_action("wp_enqueue_scripts", "my_enqueue_scripts");
Forum: Plugins
In reply to: [Custom Fields for Gutenberg] Fields not savingShould there be a ‘save’ button? Furthermore, there is no way to add more than one custom field at a time.
I am on version 1.4 of this plugin and Gutenberg 4.5.1
- This reply was modified 6 years ago by Nate Zander.
Forum: Plugins
In reply to: [Nested Pages] High CPU usage under WordPress 4.9.1Update to the above. The 500 error is actually generated by the Amazon S3 Offload Plugin, however disabling Nested Pages clears the error. For now I have to disable Nested Pages, which is a bummer because I love this plugin.
[21-Feb-2018 17:28:39 UTC] PHP Fatal error: Uncaught Error: Call to undefined method Composer\Autoload\ClassLoader::setClassMapAuthoritative() in /Users/nathanzander/Dropbox/Sites/craftbeer.com/wp-content/plugins/amazon-s3-and-cloudfront-pro/vendor/Aws2/vendor/composer/autoload_real.php:38 Stack trace: #0 /Users/nathanzander/Dropbox/Sites/craftbeer.com/wp-content/plugins/amazon-s3-and-cloudfront-pro/vendor/Aws2/vendor/autoload.php(7): ComposerAutoloaderInitb127febfbbf51dd979ed3800a48c7fc1::getLoader() #1 /Users/nathanzander/Dropbox/Sites/craftbeer.com/wp-content/plugins/amazon-s3-and-cloudfront-pro/amazon-s3-and-cloudfront-pro.php(57): require_once('/Users/nathanza...') #2 /Users/nathanzander/Dropbox/Sites/craftbeer.com/wp-includes/class-wp-hook.php(286): as3cf_pro_init('') #3 /Users/nathanzander/Dropbox/Sites/craftbeer.com/wp-includes/class-wp-hook.php(310): WP_Hook->apply_filters(NULL, Array) #4 /Users/nathanzander/Dropbox/Sites/craftbeer.com/wp-includes/plugin.php(453): WP_Hook->do_action(Array) #5 /Users/nathanzander/Dropbox/Sites/craftbeer.com/wp- in /Users/nathanzander/Dropbox/Sites/craftbeer.com/wp-content/plugins/amazon-s3-and-cloudfront-pro/vendor/Aws2/vendor/composer/autoload_real.php on line 38
Forum: Plugins
In reply to: [Nested Pages] High CPU usage under WordPress 4.9.1I’ve been getting a 500 error when running plugin updates on my site – not sure if its related, but disabling this plugin the only solution so far.
Oh yeah that’s a great idea.