MQtranslate is a fork of Qtranslate so the hooks should be the same, and to get Qtranslate to Work in custom taxonomies I use this:
/**
* qtranslate custom taxonomies
*/
function qtranslate_edit_custom_taxonomies(){
$args=array(
'public' => true ,
'_builtin' => false
);
$output="object"; // or objects
$operator="and"; // 'and' or 'or'
$taxonomies = get_taxonomies($args,$output,$operator);
if ($taxonomies) {
foreach ($taxonomies as $taxonomy ) {
add_action( $taxonomy->name.'_add_form', 'qtrans_modifyTermFormFor');
add_action( $taxonomy->name.'_edit_form', 'qtrans_modifyTermFormFor');
}
}
}
add_action('admin_init', 'qtranslate_edit_custom_taxonomies');
this should work for you as well.
Related Posts:
- Tips for using WordPress as a CMS? [closed]
- Redesigning Custom Post Type “Add New” page
- How Do I Use The WordPress Plugin Posts 2 Posts by Scribu?
- Creating a default Custom Post Template that a Theme can override
- Jetpack plugin (ShareDaddy): Prevent share buttons showing on custom post types?
- Getting Custom Post Type content from main-site of a Multisite
- How to make a list of companies’ information and display them to user, using custom post types and a custom taxonomy?
- Custom comment type maybe?
- Twillio How To Send SMS for Custom Post Type
- Seriously stuck with some custom meta box/plugin stuff
- Enable comments for post with comments meta box removed
- [Plugin: Posts 2 Posts] reciprocal connections
- Custom Post Type Statuses
- How to Build a Movie Library in WordPress 3.x
- How do I get multiple pages by title?
- add_meta_box Callback not being called
- I need to add a custom “cover” to every new post — plugin or custom setup?
- How to get images from EDD post?
- wordpress reusable content blocks
- Allow users mark posts as “complete”?
- Is there a way to order posts and custom post types as one group?
- how do i remove posts from a WP_Query so the pagination is right?
- dynamically generating plugin syntax
- Duplicate posts when posting nulls in records in phpMyAdmin [closed]
- Loco Translate: Custom Post and Custom Taxonomy Labels not translated in wp-admin menu
- Accessing post’s meta data based on user’s click of a post
- Exclude post by custom meta with pre_get_posts
- get_post_type() and WP_QUERY issue
- List taxonomy terms for post as checkboxes
- Matching Chapters to a Custom posts [closed]
- Custom post type – no layout section of Document tab, and no author choice
- Creating a custom post type, adding custom meta fields, preventing all future editability of posts of this type
- Keep a post copy when this one is updated – issue
- how to add a button next to the wordpress view button?
- “Custom Post Type Permalinks” plugin URL strcuture
- Unable to delete custom post types, confusion around capabilities
- Custom Post Type Fields
- How to delete all trashed item in one-go
- How can I use a file in my plugin as a replacement for single.php on custom-post-type query?
- Custom setup of wordpress comments that are displayed
- publish_post action doesn’t work
- Disable Individual Plugins (specifically in Custom Post Types) on a per-post basis?
- custom post type don’t appear in the home page
- Edit Permalink Structure For Custom Post Type or Modify .htaccess?
- How to set category correctly for a custom post created by a remote API call?
- Sticky option for custom post types without using custom fields or plugins
- How do we update a custom file upload field with the Advanced Custom Field plugin?
- Price comparison table based on Custom Post Type?
- Preview with Custom Post Type Not Working
- Show related posts based of current ACF field name in a single page post (a loop within loop)
- Custom Template for wordpress cpt plugin
- What hook can I use to modify custom post data before it is displayed on the page?
- “After file loaded” action
- Custom Post Type template for homepage
- How to create repeater field manually, without plugin (ACF Pro)?
- Rename existing cpt and taxonomy with new textdomain
- how to create hierachial taxonomy and manage under single post type?
- Best method of implementing compartmentalized custom post types on a multi-site network
- How to search post titles with whole words only, but not the exact word only?
- Remove custom taxonomy name from the slug – Custom Post Type UI
- Check if theme supports sidebar
- Custom Post Type same name as Category
- Register PODS Custom Field with WPGraphQL [closed]
- Can i stream data to a custom_post_type?
- Is there a hook similar to “save_post” which only fires AFTER the post is completely published?
- How to display the custom post related blog by category?
- Undefined index: custom_post_template_present
- save_post hook partly firing in update post
- WordPress hide post from custom post-type on a single page
- custom post type get_posts() function not work
- Create multiple posts when a custom post is created
- $wpdb->insert not working inside save_post tag
- Cannot view Custom Post Type no matter what I try
- Page not found after creating the add new post slider using custom post type
- Array to string conversion error when trying to POST multidimensional array
- WordPress custom posttype meta values doesnot save
- Assigning a custom post type to a custom page
- making a glossary with wordpress
- Create custom fields on a post
- Custom Post type plugin breaking the front page shows dashboard?
- Insert data in custom table during new post creation
- get_option include in my adsense
- Top Contributors Plugin with Custom Post Type
- How can i do custom author list?
- featured image problem with custom post type
- How can I default a new post to being saved?
- Is an Office a custom post type [closed]
- Change the behaviour of archive cpt category and single cpt by plugin, not by theme
- A plugin for software reviews site like this one?
- Snippet displaying LearnDash parent course title with lesson title [closed]
- Display Custom Post Type and Custom Taxonomy Data on Front End Using Only a Plugin
- Filter custom post type returned from REST api
- Links not opening as they should. Custom WP plugin
- How to export post tags from wordpress
- How to access the page without registering in wordpress
- CPT template is not being automatically used single post pages
- How to provide page_template path in custom plugin using WordPress
- Create CPT on Ajax Call
- My site has only one page, and users access my uploaded mp3 files from there – can I analyze access by song title?
- How do I know if an archive correspond to a custom post type taxonomy?