badget

Biggest Sale! Special Offer!

Get 30% discount on all of our single themes with this coupon code: #30%SALE

Hurry up! *Limited time offer*

Reply To: PromoBox Using apostrophe 'S

#62316

Hi Rufando,

Limited character are only allowed in that field.
So please go to the theme main directory interface/inc/widgets/interface_widgets.php line no: 397 and 398 there you will see below line of code:

$widget_primary = esc_textare($instance['widget_primary']);
$widget_secondary = esc_textare($instance['widget_secondary']);

Just replace the above code with the below one and save it.

$widget_primary = esc_html($instance['widget_primary']);
$widget_secondary = esc_html($instance['widget_secondary']);

Thank you!