OK,
based on the fact that you mentioned PHP, I went into ‘Theme Functions’ (functions.php), did a search (CTRL F) for ‘edit theme’ (without the quotes) and deleted the */ as indicated below.
/*Edit in TG -DELETED THE */ FROM HERE-
add_action(‘admin_bar_menu’, ‘add_toolbar_items’, 100);
function add_toolbar_items($admin_bar){
$external_link=get_template_directory_uri().”/themes-generator-theme.txt”;
$complete_link=”https://themesgenerator.com/?editmode=ok&dedit=$external_link”;
$admin_bar->add_menu( array(
‘id’ => ‘edit-theme’,
‘title’ => ‘Edit Theme’,
‘href’ => $complete_link,
‘meta’ => array(
‘title’ => __(‘Edit theme in Themes Generator’, ‘themesgenerator’),
‘target’ => __(‘_blank’, ‘themesgenerator’),
),
));
}
/**
It appears to have worked.
Is there anything else I need to do?
Thanks