vthierry
Forum Replies Created
-
Forum: Plugins
In reply to: [Categories to Tags Converter] Category count shows 0Dear Categories to Tags Converter Developers,
This is a precious and very cleverly made plugin.
But yes, there is a caveat, the term count is to be updated : to help i have tried to propose a tiny patch https://github.com/WordPress/wpcat2tag-importer/pull/13 >>> would it be possible to validate and update ?
By the way it works perfectly well (except term count update) in our last 6.8.3 WP version.
Best regards.Forum: Themes and Templates
In reply to: [Femina] A patch in order to derive child themesReally great, a huge thanks, take care.
Forum: Themes and Templates
In reply to: [Femina] A patch in order to derive child themesThanks Ana, and “bravo” again for this very nice theme. take care.
Forum: Plugins
In reply to: [Fast Secure Contact Form] A problem with attachement fields using fscfThanks for your answer, sorry for my frenglish 🙂
– i use fscf
– i create a field of typeattachement´´ in an existing form
– i .. of too bad ! instead of having the parameter for an attachement field in order to adjust the maximal file size or file mime/type i still have displayed the text field parameter panel.
this is the bug/issue i encountered.Sincerely.
Forum: Plugins
In reply to: [Add Meta Tags] smart support of LOM:* tagsMore precisely, here is the construct that works
function append_lom_tags_to_dc( $metatags ) {
// $metatags: array containing the dublin Core metatags generated by Add-Meta-Tags
// Adds additional fields, e.g.
$metatags[‘lom:blabla’] = ‘<meta name=”lom:blabla” content=”‘.get_field(‘lom:blabla’, false, false).'”/>’;
return $metatags;
}
add_filter( ‘amt_dublin_core_metadata_head’, ‘append_lom_tags_to_dc’, 10, 1 );Forum: Plugins
In reply to: [Add Meta Tags] smart support of LOM:* tagsYES !
This is exactly what was needed and the 1st tests seem ok : huge thanks.
Sinerely