Remove all links in a post content of wordpress

Edit functions.php,  add the following code: add_filter(‘the_content’, ‘removelink_content’,1); function removelink_content($content = ”) { preg_match_all(“#<a(.*?)>(.*?)</a>#i”,$content, $matches); $num = count($matches[0]);for($i = 0;$i < $num;$i++){ $content = str_replace($matches[0][$i] , $matches[2][$i] , $content); } return $content; }

How to Change “Congratulations! You have successfully installed your Zen Cart® E-Commerce Solution.”?

After we installed zen-cart v1.5.5f, how to change “Congratulations! You have successfully installed your Zen Cart® E-Commerce Solution.”? Go to includes\languages\english\responsive_classic, and edit index.php. Replace: define(‘HEADING_TITLE’, ‘Congratulations! You have successfully installed your Zen Cart&reg; E-Commerce Solution.’); } elseif ($category_depth ==… Read moreHow to Change “Congratulations! You have successfully installed your Zen Cart® E-Commerce Solution.”?