• Resolved Jason1980

    (@jason1980)


    Since the 3.8 update this plugin does not work on my site thisisxbox.com under the reviews.

    What seems to happen is the JQuery does not work, it keeps the background color at 100% width. So that my review scores are now visible, in the plugin folder responsive-progress-bar.php I set the bgcolor option to ‘none’ so that the bgcolor overlay is not showing or hiding the text and score underneath it.

    If I choose to have a background color, the whole progress bar stays that color and does not show any score or text.

    http://wordpress.org/plugins/responsive-progress-bar/

Viewing 1 replies (of 1 total)
  • Thread Starter Jason1980

    (@jason1980)

    I actually found out the cause of this error and shall post it here for anyone who encounters a similar issue.

    WordPress users who have their Jquery hosted by google using the below in functions:

    /**
    
     * Jquery Google Hosted
    
     **/
    
    function google_jquery() {
    
    	wp_deregister_script('jquery');
    
    	wp_enqueue_script('jquery', ("http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"), false, '1.6.4', true);
    
    }
    
    add_action('wp_enqueue_scripts', 'google_jquery');

    Should amend it to show 1.9.1 – I had mine set at 1.6.4 which causes a conflict with this plugin

Viewing 1 replies (of 1 total)
  • The topic ‘Broken in wordpress 3.8’ is closed to new replies.