MyBB Community Forums

Full Version: Replace Entire Template
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How to replace entire template usingĀ find_replace_templatesets('forumbit_depth1_cat', ' ', ' ');
1. You should never replace entire templates, otherwise you may remove variables and other stuff added by other plugins etc. and people will complain.
2. But if you really want to, find_replace_templatests()'s 2nd argument is a search regex passed to preg_replace() in the function. You can use .* or anything similar.