It’s possible to use the Avia Layout Builder on tag description field?
Hi alnalu!
I’m not sure what you mean by tag description field? Could you try to explain a bit further or maybe send us a link with the element you are referring to please?
Regards,
Rikard
This field
Hey!
I’m not sure there would be any point to that, as far as I know that field is only used for search engine result pages?
Best regards,
Rikard
It could be more usefull.
Hi!
Please add following code to Functions.php file in Appearance > Editor
function getting_tag_desc {
$description = tag_description();
return $description;
}
add_shortcode( 'tag_desc', 'getting_tag_desc' );
and then place your tag descriptions in your content using [tag_desc] shortcode
Regards,
Yigit