gabrieldoty
Forum Replies Created
-
Forum: Plugins
In reply to: [Sermon Manager] Can't upload images to anythingIt is an issue with the version of jQuery they upgraded to. I am not sure of the other places that it may effect and there needs to be further testing done – but quickly –
in the edit-tags.js file (includes/taxonomy-images/edit-tags.js) you can change the code on lines 3 and 9 in the following manner (this worked for series images, have not tested others)$( '.sermon-image-control a' ).live( 'click', function () {to
$( '.sermon-image-control a' ).bind( 'click', function () {and
$( '.sermon-image-control .remove' ).live( 'click', function () {to
$( '.sermon-image-control .remove' ).bind( 'click', function () {If anyone has any issues with this on multi-site – it is most likely because the network activate does not properly create the tables on the individual sites.
If you network deactivate and then activate on each blog, it will fix the issue. Also a helpful query you can do to eliminate the non-approved comments
DELETE FROM wp_(ASSUMING MULTISITE INSERT BLOG ID HERE)_comments WHERE comment_approved = 0
GWA is a great db utility to use for the above query
Forum: Plugins
In reply to: [SEO Facebook Comment] [Plugin: SEO Facebook Comment] Duplicated comments.Sorry the below comment was meant for this thread
If anyone has any issues with this on multi-site – it is most likely because the network activate does not properly create the tables on the individual sites.
If you network deactivate and then activate on each blog, it will fix the issue. Also a helpful query you can do to eliminate the non-approved comments
DELETE FROM wp_(ASSUMING MULTISITE INSERT BLOG ID HERE)_comments WHERE comment_approved = 0
GWA is a great db utility to use for the above query
Forum: Networking WordPress
In reply to: When using www. to get to a page redirects to homepageI know this is old – but just wanted to follow up and let you know that i had this same issue and it appears to be an issue with the plugin “Remove /blog slug plugin for wpmu” – if you have that installed, try disabling and then resaving your permalinks and see if that fixes it.