I have a process list in my wordpress website which I’ve built using the elementor plugin. And for the process list I’ve used another plugin "Qi addons for elementor". The process involves 3 stages and I’ve implemented it without any issue. You can see it in the photo. But under the process number there are some texts. And my requirement is to make some of the lines bold. I tried applying <b></b>
tag inside the text field but it didn’t work. Here’s the UI for the plugin where you can add or delete items.
Is there any other way to apply text bold effect to the selected lines?
2
Answers
You could try
<strong></strong>
or:<span style="font-weight: bold;"></span>
You should know that our Process Item does not allow html code within the widget text field. What you could do is to edit the plugin files for that specific widget, navigating to /wp-content/plugins/qi-addons-for-elementor/inc/shortcodes/process/templates/post-info/text.php and editing the line 4 where you would replace the existing esc_html() with wp_kses_post() function that should allow all HTML tags and attributes intact, please have a look at the screenshot below
That will allow you to place html tags such as to the text field within the widget-