Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Austin

    (@austyfrosty)

    In the theme add the function_exists wrapper around the function like so:

    if ( !function_exists( 'hex2rgb' ) ) {
    function hex2rgb() {
    ..
    }
    };

    It’s already wrapped like so in my plugin to avoid conflicts..

    Thread Starter baronne

    (@baronne)

    perfect. thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘hex2rgb declaration conflict’ is closed to new replies.