Reply To: Adding a code in the widget title

The support forum is open for members only. To add a topic or reply in the forum, please login or register.

Support Forum Moved
The Pojo Themes support has been transferred to a faster and more personal ticketing platform, so the forums are no longer active.
  • If you want to learn how to use Pojo themes, check out our extensive documentation guides.
  • Need help with using our themes? Contact us with a detailed explanation of your issue in the support page.
  • Have a pre-sale question or other inquiry? Feel free to contact us about it.

Support › Forums › Support (Legacy) › Adding a code in the widget title › Reply To: Adding a code in the widget title

#234
Noa
Keymaster

Welcome!

By “widget title” do you mean in the WordPress widget area, or in in the Page Builder?

Either way WordPress has entered a filter blocking any HTML from being added to this field…..but if you want to disable it, you can just place the following code in your [functions.php] file:

remove_filter( 'widget_title', 'esc_html' );

P.S.

Our Page Builder system works according to the WordPress widget standards, so the code written above will apply to the widget area as well.