squrler
Forum Replies Created
-
This all sounds very promising David!
Certainly very interested in those other improvements your mentioning! Really the only thing that I’m looking for right now is to have a pulldown for categories and a pulldown for tags in the Add Media popup modal. If that would be possible to add that would be fantastic. Any indication on when the new version will be released?
Glad you liked the avatar David!
While I of course respect your decision if you don’t want to pursue this feature, I would just like to say it would really really be super useful if it were possible to have the option to filter on both in the popup modal.
I noticed this plugin https://github.com/Horttcore/Media-Taxonomies has the capabilities to have both, and it seems to work great. Would it be possible to adapt some of his code for this? Space wise it seems to fit, and it would be a great feature to have. Please consider it..? ??
Forum: Plugins
In reply to: [W3 Total Cache] MFUNC still not workingHey there,
Haven’t tried abecoffman’s workaround yet so I can’t comment on that, but I would very very much like a good, stable fix for this functionality. It is absolutely essential functionality.
Thanks to Frederick for your work!
Forum: Plugins
In reply to: [Infinite-Scroll] [Plugin: Infinite-Scroll] Infinite scroll and Masonry issueThe ‘imagesLoaded is not a function error’ stemmed from the fact that another copy of jQuery was loading other than in the header.
So I removed that and finally got the WHOLE thing to work with this code:
// hide new items while they are loading var $newElems = jQuery(newElements).css({ opacity: 0 }); // ensure that images load before adding to masonry layout $newElems.imagesLoaded(function(){ // show elems now they're ready $newElems.animate({ opacity: 1 }); $container.masonry( 'appended', $newElems, true ); });
Succes!! Finally… ??
Forum: Fixing WordPress
In reply to: A cause of the "submit for review" problemAs an elaboration on blak111’s post, this is how I managed to fix this problem:
First I repaired all tables.
Then I made sure all primary keys had auto-increment.
Then I checked the wp_posts table for records with insanely high ID’s, and I deleted all of them.
Finally I reset the auto_increment value of the wp_posts table to a normal number, otherwise the database would start from the insanely high number again which would break WP and lead to the ‘Submit for review’ problem.
You can reset the auto-increment value for the WP_Posts table by issuing this MySQL command:
ALTER TABLE some_table AUTO_INCREMENT=1000
Of course, you can set ‘1000’ in this example to anything you want. Make sure it is higher than the record with the highest number in the wp_posts table.
Forum: Plugins
In reply to: [Infinite-Scroll] [Plugin: Infinite-Scroll] Infinite scroll and Masonry issueOk, I managed to get it to work. This is what I’ve inserted into the callback field:
var $newElems = $( newElements ).css({ opacity: 1 }); $container.masonry( 'appended', $newElems, true );
Forum: Plugins
In reply to: [Infinite-Scroll] [Plugin: Infinite-Scroll] Infinite scroll and Masonry issueNow I’m trying
// hide new items while they are loading var $newElems = $(newElements).css({ opacity: 0 }); // ensure that images load before adding to masonry layout $newElems.imagesLoaded(function(){ // show elems now they're ready $newElems.animate({ opacity: 1 }); $container.masonry( 'appended', $newElems, true );
I’m getting the error: ‘imagesLoaded is not a function’. But imagesLoaded works on the page just fine… It just won’t work in the callback.
This is absolutely maddening. What am I doing wrong???Yes I did manage to solve it.
Turned out this occurs only when you the directory for uploads is configured as a relative path. So in the field “Store uploads in this folder” in Settings > Media, if you have a relative path there, W3 won’t change the URL’s to a CDN location.
When I changed that, the CDN function worked like a charm.
Forum: Plugins
In reply to: [Plugin: W3 Total Cache] CDN url replacement stops workingI would also like to know this. I have exactly the same problem: enabled CDN, made sure media library is uploaded, but urls of images do not get rewritten.
Forum: Plugins
In reply to: [Advanced Category Excluder] Plugin Broken under PHP 5.3I can confirm this: have PHP 5.3.3 and activating this plugin made my site completely unresponsive. After deactivating the plugin I even had to flush the memcache to make the site come back up.