maclemming
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Hide & Security Enhancer] Possible Conflict with All in One SEOMany thanks for your prompt response – that did the trick!
A bit more testing but a developers license may well be purchased shortly.
I’m having the same issue – it seems to prevent any style sheets from NextGen from loading… if I disable All In One… they load again. Very strange.
Panic over, I fixed the problem.
My subdirectory with the WordPress files in was missing the index file.
…hope this may help someone else in the future!
Forum: Plugins
In reply to: [NextGEN Image Cropper] No Crop LinkFor everyone’s info, this was the site the problem was occurring on: aquadri.co.uk
Forum: Plugins
In reply to: [NextGEN Image Cropper] No Crop LinkI’m marking this as resolved – as my fix seems to do the trick!
Forum: Plugins
In reply to: [NextGEN Image Cropper] No Crop LinkAlso, in the more recent versions of WordPress, the cropping panel that appears to edit images in is a bit obscured by the new WordPress layout. To fix this, go back to the same file mentioned above and then do the following:
1) Locate second function (which starts ‘$(‘form#updategallery’).on(‘click’…’
2) Find the line within the function: position: [100,100],
3) Change this to:position: [250,100],
Hope this helps.
Forum: Plugins
In reply to: [NextGEN Image Cropper] No Crop LinkAlthough I have not heard anything from the developer – I have spent a little time looking into the issue and have concluded that changes in the way the more recent versions of NG Gallery handles image ID’s when managing individual galleries is to blame.
Although, perhaps not the best way of fixing the problem (feel free to pick holes in it!), below is my solution:
1) Open up the ‘gallery.js’ file, which is within the ‘js’ folder of the the Image Cropper plugin.
2) Delete the first function (starts with ‘$(‘form#updategallery #ngg-listimages…’ and ends just before ‘$(‘form#updategallery’).on(‘click’…’.
3) Past the following code into the location of what you have just deleted:
$('form#updategallery #ngg-listimages tbody tr .row-actions').each(function(index) { var imageID = $(this).closest('tr').prev().find('.column-2').html(); if(imageID) { $('<span class="crop"> | <a href="' + ngg_crop.plugin_path + 'ajax/imagecrop.php?pictureID=' + imageID + '" class="ngg_crop_dialoglink" title="Crop">Crop</a></span>').appendTo($(this)); } });
Thanks.