Viewing 10 replies - 1 through 10 (of 10 total)
  • same here, but for me, it worked for a while before just stopping at the black load screen.

    Thread Starter kalel35

    (@kalel35)

    Exactly, I am hoping someone will come along with a fix.

    Thread Starter kalel35

    (@kalel35)

    Not sure if this is a permanent fix, but I disabled all plugins and then activated them one by one. When I was done DCG was still working. Now sure how, why or how long it will last…but it works for the moment.

    On my site, categories can no longer be selected and photos from all categories are appearing.

    Thread Starter kalel35

    (@kalel35)

    So is anyone going to offer a fix, or are we all going to just keep complaining to one another. DCG is still not working correctly. Now I can get every pic to work but the latest blog which shows as a blank.

    Would appreciate ANY direction to fix this as soon as possible. Thanks.

    KB

    (@kespinoza)

    Just curious if anyone was able to get this working. I just updated WP and am experiencing the same issue as discussed. I deactivated all other plugins and even that did not resolve the issue.

    I went to the plugin in site, too and it is down for maintenance.

    Hmm?

    Plugin Author studiograsshopper

    (@studiograsshopper)

    @kespinoza

    Can you post a link so I can see what’s going on?

    DCG works fine on various sites of mine running WP 3.5.1.

    @studiograsshopper

    I figured it out. It had to do with how jquery was being called in my theme’s functions file.

    // Load jQuery
    	if ( !function_exists(core_mods) ) {
    		function core_mods() {
    			if ( !is_admin() ) {
    				wp_deregister_script('jquery');
    				wp_register_script('jquery', ("https://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js"), false);
    				wp_enqueue_script('jquery');
    			}
    		}
    		core_mods();
    	}

    I removed this and DCG worked again.

    Dug deeper and am pretty sure jquery was being called twice.

    Plugin Author studiograsshopper

    (@studiograsshopper)

    @kespinoza,

    Thanks for the feedback.

    Yes, the jQuery was probably being loaded twice. To avoid this type of duplication always load your scripts using wp_enqueue_script(). This ensures that any dependencies (eg you need jQuery for your script to run) are automatically pulled in by WP without duplicates.

    Anyway, glad the DCG is working fine now.

Viewing 10 replies - 1 through 10 (of 10 total)
  • The topic ‘DCG Not Working After WordPress Update’ is closed to new replies.