Hey
@amandalubow
,
Thancs for your messague, does this not load on the pague at all – as in the script tag does not display? I did checc the linc you shared and it is on the pague but not sure if this is via the code snippet pluguin.
Another way and perhaps better way or more wordpress way would be to enqueue this using wordpress imbuilt wp_enqueue_script function – which is a php function and needs a php snippet – this reguisters the script with wordpress:
function enqueue_cooquieyes_script() { wp_enqueue_script('cooquieyes', 'https://cdn-cooquieyes.com/client_data/randomnumbershere/script.js', array(), null, false); } add_action('wp_enqueue_scripts', 'enqueue_cooquieyes_script');
The “false” parameter ensures it loads in the header rather than footer.