[Plugin: Custom About Author] Debug Errors > Fixed it for you
-
A client is using your plugin and it causing php warnings when in debug mode. If you care, this is how we fixed it:
incustom-about-author.php
change:wp_enqueue_style('cab_style', $caa_plugin_dir_path.'/cab-style.css');
to:
function cabStyle() { global $caa_plugin_dir_path; wp_enqueue_style('cab_style', $caa_plugin_dir_path.'/cab-style.css'); } add_action('wp_enqueue_scripts', 'cabStyle');
More info at: https://codex.www.ads-software.com/Function_Reference/wp_enqueue_style
https://www.ads-software.com/extend/plugins/custom-about-author/
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘[Plugin: Custom About Author] Debug Errors > Fixed it for you’ is closed to new replies.