So I went to Settings > Sublanguage > Taxonomies > (My Taxonomy) > Options
And I enabled term meta translations.
But on the “edit term” page I don’t see a way to translate them.
The term meta fields appear, but they only update the main (english) language.
Also I’m just wondering: has development on this plugin stopped? Hopefully not. I’m using it for simple projects, but not sure if it will work for my next one.
Thank you!!
]]>I simply want to read post meta and term meta via webhook, but this plugin only sets term
(set_term) as I see.
So I’d like to do the following:
after a custom post (of a custom post type like Books or Cars) is created or updated, I’d like to pass post meta (post id, post title, etc.) and term meta (like Books Genre or Cars Tag) values via webhook to an integration service like Zapier.
I might also want to pass custom field values, but I don’t see this feature even in the Pro version.
I consider buying the Pro version if that does what I need – without coding (I’m not a PHP pro)
Thank you
]]>I am making use of get_term_meta() and have noticed that pwb_brand_banner seems to be missing when there are no products associated with the brand. pwb_brand_banner_link can still be found.
Thanks,
Costa
]]>Wanted to prompt a feature request to update the plugin to utilize term_meta rather than options for the wpseo_taxonomy_meta.
Also can it be consistent naming for variables. When it’s a post the meta field for keywords is ‘_yoast_wpseo_metakeywords’ but for terms the meta field for keywords is ‘wpseo_metakey’. I understand why _yoast is dropped but can we be consistent with variable name so it’s ‘wpseo_metakeywords’.
Thanks
]]>Exemples:
Term meta Http://oi64.tinypic.com/2qu3p1e.jpg
Background in action https://oi63.tinypic.com/66aook.jpg
add_term_meta()
,get_term_meta()
,update_term_meta()
,delete_term_meta()
https://www.ads-software.com/plugins/aceide/
]]>Any direction or ideas on how to do it?
https://www.ads-software.com/plugins/gravity-forms-custom-post-types/
]]>wp_yyxk_woocommerce_termmeta: Table ‘actsmark_wordpress7ff.wp_yyxk_woocommerce_termmeta’ doesn’t exist
when i went to our webhost i found that table existed and its status was ok. how do i solve this problem?
]]>I use the code below to add an image meta to taxonomy “category”. When I go to Categories I see no custom meta, but I see it inside a post.
Here it is:
add_action( ‘rwmb_meta_boxes’, ‘encuentro_register_taxonomy_category_meta_boxes’ );
function encuentro_register_taxonomy_category_meta_boxes( $meta_boxes ) {
$prefix = ‘socialityencuentro_’;
$meta_boxes[] = array(
‘title’ => __( ‘Επιλογ? Εικ?να? για Κατηγορ?α/Χ?ρα’, ‘textdomain’ ),
‘taxonomies’ => ‘country’, // List of taxonomies. Array or string
‘fields’ => array(
array(
‘name’ => __( ‘Εικ?να’, ‘textdomain’ ),
‘id’ => $prefix . ‘featured_category_taxonomy_icon’,
‘type’ => ‘image’,
),
),
);
return $meta_boxes;
}
Any help would be appreciated. Thank you in advance.
https://www.ads-software.com/plugins/meta-box/
]]>a:2:{s:3:”url”;s:64:”https://demo.hocwp.net/phongtro123/wp-content/uploads/hocwp/T.Ham_.jpg”;s:2:”id”;s:3:”120″;}
Meta key: icon
Term ID: 11
$meta = get_term_meta(11, 'icon', true);
The result is empty, please help me with this case.
Thank you very much.
]]>