ascdev
Forum Replies Created
-
..
and tried to unregister these rogue post types. I am using add_action(‘init’,’xxx’,10,2) . Is this the correct timing to run the unregister??Yes I agree.
So I have searched through every plugin & my theme for the register_post_type / register_taxonomy functions. Nothing found.Thanks for tip about Health Check – I’ll give that a try.
Yes sure, but that is what is odd. These post types and taxonomies do not appear to exist in my database. None of the themes or plugins are creating them – I’ve done a thorough check and a thorough check in the database (SQL). I can’t find any references whatsoever.
That’s why I was looking for guidance on where Pods is picking these up from.
Is there a debug mode?Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] Default map scalingThe default map zoom parameter can set through a filter.
I added this code to my theme functions.php:
add_filter( ’em_location_google_maps_embed_args’, ‘asc_change_map_args’ );
function asc_change_map_args() {
return array(
‘maptype’ => ‘roadmap’,
‘zoom’ => 10, // default = 15 in the event manager class
‘key’ => get_option(‘dbem_google_maps_browser_key’)
);
}Yes, issue is now fixed. Brilliant.
Many thanks for the prompt resolution.
Yes, I’m on a multisite
Forum: Plugins
In reply to: [WP Photo Album Plus] Problem with thumbnail resizeThanks that worked a treat.
Though I also needed to temporarily set initial width as well.Yes, I am using the backend importer.
I still cannot import meta data into an existing user without changing the user role.
I am using “Update roles for existing users” = “no”
I have disabled all plugins – so no plugin interaction.
Whenever I import a CSV file for an existing user, the role gets update to the default role.