• Hello!

    I am responsable for a website which manages fotos so I did set up a custom taxonomy for the attachments which is called ‘foto_tag’. I did it manually in the functions.php of the child theme.

    I am able to request translation for each tag but I have to translate like 2.000 tags. So it would be very nice to use the bulk edit to request translation for a bunch.

    Is it somehow possible?

    Best Regards

    El asador aleman

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Contributor erichie

    (@erichie)

    @el-asador-aleman

    Thanks for bringing this to our attention. We do support bulk actions for custom post types and taxonomies but we will look into this further to see if adding them in your theme may be affecting this in some way.

    Plugin Contributor Robert Hanna

    (@robertdhanna)

    Hello @el-asador-aleman,

    We believe we have discovered the solution to the problem you are describing. If you are registering the post type manually (ie. putting the post type registering code somewhere in the PHP code) then you need to set the priority to 1.

    For example:

    add_action('init', 'create_custom_post_init', 10);

    This line registers a new post type but sets the priority for loading this post type to 10 (10 is the lowest priority), so if you change that line to this:

    add_action('init', 'create_custom_post_init', 1);

    Your post type should now get registered before our code runs. This will allow our plugin to give you bulk action options on the custom post type.

    Please let us know if this works for you.

    • This reply was modified 6 years, 7 months ago by Robert Hanna.
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Bulk edit for custom taxonomies’ is closed to new replies.