thanks again for taking your time to reply! The & issue is now solved by removing the part you suggested and adding line $url = str_replace ('&', 'and', $url); But for some reason the ’ character is a tricky one! I replaced my previous additions with your line: $url = str_r...
thanks for the reply! I had successfully fixed the issue with character ' But trying to do the same for character ’ didn't work. I tried various ways of trying to disable replacing that character with a dash. I added these lines: $url = str_replace ("’", '', $url); $url...
Hi there, I'm trying to use your sitemap mod along with SEO URLs V2 by mgutt. So far I figured out I had to switch to Advanced rewriting type and replace $this->seo_delim = array('cat' => '-vc', 'forum' => '-vf', 'topic' => '-vt', 'user' => '-u' with $this->seo_delim = array('cat' => '-c', '...