Awesome q2a theme

How to replace the b and strong tags around the site < span class="strong" > < /span >?

0 like 0 dislike
52 views
Please tell me how to replace the tags < strong > < / strong > and < b > < /b > on < span class="strong" > < /span > on the product pages and categories of website (on wordpress)?
Thank you in advance.
by | 52 views

3 Answers

0 like 0 dislike
1. Resave the database
2. Through .htaccess or config of php-fpm to configure a connection script for every request, first of all in ob_start () at the end of check sent header to text/html and if so gives the answer where after the preg_replace and replace tags on the fly
by
0 like 0 dislike
In phpmyadmin the sql query is not?
UPDATE `table_name` SET `field` = replace(field, 'change', 'what to insert')

And so with each tag to replace
by
0 like 0 dislike
very rough, but something like that
update from the `news` set `content` = REPLACE(`content`, '', '') update from the `news` set `content` = REPLACE(`content`, '', '') update from the `news` set `content` = REPLACE(`content`, '', '') update from the `news` set `content` = REPLACE(`content`, '', '')
by

Related questions

0 like 0 dislike
7 answers
asked Mar 21, 2019 by StrangeAttractor
0 like 0 dislike
4 answers
0 like 0 dislike
1 answer
110,608 questions
257,187 answers
0 comments
40,796 users