L luutruong Active member Sep 4, 2012 #1 I try to find "thread prefix name" in database xenforo but i cant find it. Please help
Jake Bunce Well-known member Sep 4, 2012 #3 Replied to your PM. Jake Bunce said: The actual prefix names are stored as phrases. Run this query: Code: SELECT * FROM xf_phrase WHERE title LIKE 'thread_prefix%' Click to expand... Upvote 0 Downvote
Replied to your PM. Jake Bunce said: The actual prefix names are stored as phrases. Run this query: Code: SELECT * FROM xf_phrase WHERE title LIKE 'thread_prefix%' Click to expand...
L luutruong Active member Sep 5, 2012 #4 Thanks Jake, but not useful with me how can i get thread prefix name by Thread Prefix_id with SQL query Upvote 0 Downvote
Thanks Jake, but not useful with me how can i get thread prefix name by Thread Prefix_id with SQL query
Jake Bunce Well-known member Sep 5, 2012 #5 Code: SELECT phrase_text FROM xf_phrase WHERE title = 'thread_prefix_1' Use the prefix_id. Upvote 0 Downvote
L luutruong Active member Sep 5, 2012 #6 Jake Bunce said: Code: SELECT phrase_text FROM xf_phrase WHERE title = 'thread_prefix_1' Use the prefix_id. Click to expand... great...this is useful with me.. Thank Jake, Upvote 0 Downvote
Jake Bunce said: Code: SELECT phrase_text FROM xf_phrase WHERE title = 'thread_prefix_1' Use the prefix_id. Click to expand... great...this is useful with me.. Thank Jake,