Lone Wolf Well-known member May 22, 2015 #1 I had [bd] Tag Me by @xfrocks installed on XF 1.1 now that I've moved to 1.4.7 all the old tags by [bd] are shown without '@' symbols. Is there an sql query I can run to give them all '@' symbols?
I had [bd] Tag Me by @xfrocks installed on XF 1.1 now that I've moved to 1.4.7 all the old tags by [bd] are shown without '@' symbols. Is there an sql query I can run to give them all '@' symbols?
Mike XenForo developer Staff member May 23, 2015 #2 It's not really something that can be done by a simple query, as you need to do regex-based replacements. You could likely do it with the post content replacer add-on. Upvote 0 Downvote
It's not really something that can be done by a simple query, as you need to do regex-based replacements. You could likely do it with the post content replacer add-on.
Lone Wolf Well-known member May 23, 2015 #3 It only affects those tags which appear in the post like this.... Code: [USER=2803]Lone Wolf[/USER] Basically I need a variable that does this... Code: Find: [USER=2803]Lone Wolf[/USER] Replace: @Lone Wolf Upvote 0 Downvote
It only affects those tags which appear in the post like this.... Code: [USER=2803]Lone Wolf[/USER] Basically I need a variable that does this... Code: Find: [USER=2803]Lone Wolf[/USER] Replace: @Lone Wolf
P Paul B XenForo moderator Staff member May 23, 2015 #4 Lone Wolf said: Basically I need a variable that does this... Click to expand... As Mike said, that's why you need to use regex. Upvote 0 Downvote
Lone Wolf said: Basically I need a variable that does this... Click to expand... As Mike said, that's why you need to use regex.