Guys, have any of you managed to make dynamic forums posts based on a condition such as the Cloudflare Geo IP location? PHP can get the visitors country based on the Cloudflare header $_SERVER["HTTP_CF_IPCOUNTRY"].
if($_SERVER["HTTP_CF_IPCOUNTRY"]=='GB') {
show content for GB
} else {
show content for elsewhere
}
I suppose a work around is iframe based content.