What about those of us who are more comfortable with the visual editor?
]]>For example,
Site: https://example.org
Admin Console: https://example.org/wp-admin/
This plugin cannot work because some browser blocks to load the file, such as CSS, JS from the unencrypted url.
Please change the following code in add_ttg_files function.
Current
$css_file = WP_PLUGIN_URL.'/'.WP_TTG.'/css/style';
$js_file = WP_PLUGIN_URL.'/'.WP_TTG.'/js/'.WP_TTG;
Suggention
$plugins_url = WP_PLUGIN_URL;
if( function_exists('plugins_url') )
$plugins_url = plugins_url();
$css_file = $plugins_url.'/'.WP_TTG.'/css/style';
$js_file = $plugins_url.'/'.WP_TTG.'/js/'.WP_TTG;
]]>