Jump to content

Group Titles 4.x

Featured Replies

Posted

Where can I find the g_title in 4.x of IP.Board?  Doesn't seem to live in the core_groups table any longer.

  • Author

Found it in the core_sys_lang_words, but not seeing which fields to join that to core_groups ID.

The title is saved as language string because of the multi lang support. All the titles have a core_group_ prefix followed by the group id

  • Author

Thanks Daniel, got it worked out now.  If anyone needs help with the query went with this.

select g_id, word_default
from core_sys_lang_words cs
inner join core_groups g on replace(cs.word_key,'core_group_','') = g.g_id
where word_key like 'core_group_%'
order by g.g_id asc

 

Archived

This topic is now archived and is closed to further replies.

Recently Browsing 0

  • No registered users viewing this page.