[WP Table Tag Gen]: Cannot work in case of using the SSL admin console
-
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;
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘[WP Table Tag Gen]: Cannot work in case of using the SSL admin console’ is closed to new replies.