WPIntell

Source evidence

Doesn't work

Electric Studio EU Cookie Law Compliance · support · 2012-10-25T09:23:00+00:00

complaintsentiment
highseverity
0.96relevance
3replies
Evidence linked to opportunitycommercial context

Proof Health

Open evidence

Commercial opportunities need traceable source links before they are treated as build-worthy.

4 / 25 rows with source links

16.0% of this page's analysis has direct source links.

0 build-decision rows missing links

0 rows here require auditable proof before promotion.

21 rows with no attached evidence

0 rows have source counts but still need direct links.

Conversation

support
websanity unresolved
Click ‘continue’ to accept cookies and the cookie message remains on screen. Also click to find out more opens in new window – which I can kind of see the need for, but it’s messy. http://wordpress.org/extend/plugins/electric-studio-eu-cookie-law-compliance/ I think this might be a Firefox thing. Currently to clear the cookie the Continue link, links to #. Very interesting says Firefox, I’ll just do nothing. If you update line 43 in escn-ajax.php to say this: a href=”<?php echo add_query_arg( ‘rnd’, rand(1,65535) ); ?>” id=”escn-continue”><span class=”escn-icon continue”></span><?php printf( ‘%s’, ‘Continue’ ); ?> Then all should be well again. This leads to Continue adding a random number as a parameter: http://www.mysite.co.uk/?rnd=RANDOM_NO or http://www.mysite.co.uk/?existing_param=1&rnd=RANDOM_NO Which will force a refresh of the page and thus allow Continue to Continue! Nice plugin – if you fix it, and I hope you do, please post response here and I’ll change my ‘Broken’ to ‘Working’! Cheers, Gerald Hang on that’ll get the wp-admin directory in there Try this instead: ” id=”escn-continue”><span class=”escn-icon continue”></span><?php printf( ‘%s’, ‘Continue’ ); ?> Sorry, G Hi, just update the JQuery script, you can add this to your functions.php file: function es_load_jquery () { $url = 'http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js'; $check_url = @fopen( $url, 'r' ); wp_deregister_script( 'jquery' ); if( !$check_url ) wp_register_script( 'jquery', 'http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js', false, 1 ); else wp_register_script( 'jquery', get_template_directory_uri() . 'LINK-TO-JQUERY-IN-YOUR-THEME', false, 1 ); wp_enqueue_script( 'jquery' ); } add_action( 'wp_enqueue_scripts', 'es_load_jquery' );

Comments

3 shown
websanity 2012-10-25T09:43:00+00:00

I think this might be a Firefox thing. Currently to clear the cookie the Continue link, links to #. Very interesting says Firefox, I’ll just do nothing. If you update line 43 in escn-ajax.php to say this: a href=”<?php echo add_query_arg( ‘rnd’, rand(1,65535) ); ?>” id=”escn-continue”><span class=”escn-icon continue”></span><?php printf( ‘%s’, ‘Continue’ ); ?> Then all should be well again. This leads to Continue adding a random number as a parameter: http://www.mysite.co.uk/?rnd=RANDOM_NO or http://www.mysite.co.uk/?existing_param=1&rnd=RANDOM_NO Which will force a refresh of the page and thus allow Continue to Continue! Nice plugin – if you fix it, and I hope you do, please post response here and I’ll change my ‘Broken’ to ‘Working’! Cheers, Gerald

websanity 2012-10-25T10:25:00+00:00

Hang on that’ll get the wp-admin directory in there Try this instead: ” id=”escn-continue”><span class=”escn-icon continue”></span><?php printf( ‘%s’, ‘Continue’ ); ?> Sorry, G

Electric Studio 2012-11-15T16:49:00+00:00

Hi, just update the JQuery script, you can add this to your functions.php file: function es_load_jquery () { $url = 'http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js'; $check_url = @fopen( $url, 'r' ); wp_deregister_script( 'jquery' ); if( !$check_url ) wp_register_script( 'jquery', 'http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js', false, 1 ); else wp_register_script( 'jquery', get_template_directory_uri() . 'LINK-TO-JQUERY-IN-YOUR-THEME', false, 1 ); wp_enqueue_script( 'jquery' ); } add_action( 'wp_enqueue_scripts', 'es_load_jquery' );