For the upgrade account text, redefine this function in your sweetdate-child/functions.php
COPY CODE
function kleo_membership_info()
{
global $membership_levels,$current_user;
if (! $membership_levels) {
return;
}
if (bp_is_my_profile())
{
if (isset($current_user->membership_level) && $current_user->membership_level->ID)
{
echo '<a href="'.pmpro_url("account").'"><span class="label radius pmpro_label">'.$current_user->membership_level->name.'</span></a>';
}
else
{
echo '<a href="'.pmpro_url("levels").'"><span class="label radius pmpro_label">'.__("Upgrade account",'kleo_framework').'</span></a>';
}
}
}
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution