parakeet
Forum Replies Created
-
Forum: Plugins
In reply to: [MC4WP: Mailchimp for WordPress] Undefined property: stdClass::$date_formatWP 6.7.2
PHP 8.2
Base plugin 4.10.1
Premium 4.10.9
The plugin does not seem to
Will the pluginremove its tables and settings on uninstall.- This reply was modified 1 year, 8 months ago by parakeet.
Thanks for clarifying. Don’t know why but I assumed the data was stored off-site, that this was a cloud-based analytics solution. Probably because your website screenshots look like a custom dashboard rather than something inside a WP admin.
So all settings stored by Duplicator contain “duplicator”?
Thanks. What is saved in wp_options?
Forum: Plugins
In reply to: [Custom Post Type UI] How to menu_position taxonomies?Oh, I guess
menu_position
is for ordering top-level menus only.I posted on the issue https://github.com/WebDevStudios/custom-post-type-ui/issues/546#issuecomment-1499173995
Forum: Plugins
In reply to: [Custom Taxonomy Order] Database storage info?Thanks
Hi loic,
I didn’t look for any at the time.
At the moment, I think I’ve manually removed just about everything.
If I ever reinstall/deactivate, I’ll take a look.
Thanks.
This is is a local-machine install. Is there any guide on manual removal?
That didn’t happen.
The only prompt was that the plugin had not yet been activated.
Plugin is deleted now, I don’t know the version. But I just reinstalled and again did not get the deletion message.
I’m discovering all sorts of data left behind. Is _cld_remote_format also a Cloudinary meta_key? Big manual effort.
Forum: Plugins
In reply to: [Post Type Switcher] Admin Columns Pro issueIt would be great to see the issue resolved, rather than the workarounds of disabling or resetting ACP.
Forum: Plugins
In reply to: [CMB2] Taxonomy field (ACF) to taxonomy_multiselect (CMB2)As I understand it, “multicheck” is for pre-populating available checkboxes from a defined list of options.
The term I am setting for users is one of 2,000+ in the taxonomy.
So, I think you’re suggesting, rather than a manually preset list of “
options
” (array), I should use “options_cb
” with, say, ‘get_my_company_terms()’… ?function get_my_company_terms() { $terms = get_terms( array( 'taxonomy' => 'company', 'hide_empty' => false, ) ); return $terms; }
That result is a WP_Term object, though, not a string. It throws an error when the admin echoes out that part of the box. What are you thinking the value should be? Ie somehow reconstitute the array so it contains only a bunch of term IDs as strings… ?
Thanks.
- This reply was modified 2 years, 2 months ago by parakeet.
Thanks.
Forum: Plugins
In reply to: [CMB2] Image field (ACF) to File field (CMB2)Yeah, I ask because, as I understand it, if you have the media ID, you can get the URL that way – and it’s probably better to.
Can I *stop* CMB2 from writing the URL field, so that it only saved the media ID?
Because I used the option to hide the URL field, but, if I remember correctly, it still actually saved the URL to the database.
This would save on database records.