Allow Ad Relisting just for a specific membership
Hi,
to set up a special membership benefit, I like to grant the functionality "Allow Ad Relisting" only for a membership called "Premium".
So i already found the code line "if ( get_option('cp_allow_relist') == 'yes' ) {"
in the file "tpl-dashboard.php"
and I know it must be extended like
if (get_option('cp_allow_relist') == 'yes' OR MEMNERSHIP == 'premium') {
but I don't know the exactly way to check a special kind of mermnbership.
So can anyone help?