Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • FWIW, I am having the exact same issue. I have followed all of your troubleshooting steps to the tee, and still no dice.

    The dashboard GA widget shows data, which would tend to indicate that it is not an issue with my GA account, or an authorization issue. It is just that the individual page/post data does not display, either from the back end or on the page in the admin bar.

    Please advise.

    I just ran into the same issue and concluded the same thing you did. It looks like that setting isn’t actually hooked up anywhere. To get around this I just edited the jquery.colorbox.1.3.32.js file. Just look for

    function isImage(url) {
    		return settings.photo || /\.(gif|png|jp(e|g|eg)|bmp|ico)((#|\?).*)?$/i.test(url);
    	}

    and change it to

    function isImage(url) {
    		return settings.photo || /\.(gif|png|jp(e|g|eg)|bmp|ico|php)((#|\?).*)?$/i.test(url);
    	}

    This will tell the script to treat php files as images. Keep in mind that this will be reset when the plugin is updated. Hope this helps.

Viewing 2 replies - 1 through 2 (of 2 total)