Forum Moderators: coopster
you could split it and swap it on listing pages, you would need to figure out where to put it or how you could differentiate a listing from something else if needed
easy enough to split on pipe and then swap the first and last value
$tarr = explode('¦',$page_title);
$page_title = $tarr[2] . ' ¦ ' . $tarr[1] . ' ¦ ' . $tarr[0];
echo $page_title;
in the above code you need to swap ¦ for real pipe characters
as an aside, your urls are messed
www.example.com/Category/Accommodation.html/Hotels.html/
the double html looks like a rewrite gone wrong