Where is CCAP data stored?

Hi,

Silly question ? Where is the CCAP stored for S2Member ?

More directly, where is it stored in the database, what tables ?

It’s becoming clearer and clearer that I have to write my own solution and it would be helpful if I knew exactly where to look.

Thanks.

Miles.

In $wpdb->usermeta table with “meta_key” named $wpdb->prefix.“capabilities”.

also be sure to use wordpress remove_cap( $role, $cap ); functions to avoid the serialized nightmare that awaits you!

Noted Matt! i’ll keep that in mind.