Hello, I went to my SFTP, and inside the main theme's functions.php I added the following code:
add_action('bp_setup_nav','profile_tab_myBadges');
function mybadge_screen() {
// Add title and content here - last is to call the members plugin.php template.
add_action('bp_template_title','badgetab_title');
add_action('bp_template_content','badgetab_content');
bp_core_load_template('buddypress/members/single/plugins');
}
function badgetab_title() {
echo 'Badges';
}
function badgetab_content() {
echo '[mycred_badges_progress width=60 height=60 bgcolor="red" type="radial"]';
}
I then rescanned the them and still couldn't find the strings, how do I properly use the text-domains to be able to find them when scanning?