ehansen723
Forum Replies Created
-
Perfect, thanks!
I tried with [ email deleted, don’t post those here ] (which I could understand failing). I also tried with several of my own, real email addresses. I just tried from a private window and it worked, though. I guess something about being logged in as an admin could have conflicted with the form?
https://blog.ledbury.com/
(in the footer)I’m getting this error:
[2016-01-25 13:44:02] ERROR: Form 19906 > MailChimp API error: This email address looks fake or invalid. Please enter a real email address.
I thought it was just because I was testing with a Mailinator address but I got the same error testing with some real ones.
Forum: Plugins
In reply to: [Read More Right Here] Trigger Masonry as a callbackI wound up having to tweak it to:
‘jQuery(‘#posts’).bind(‘RMRHContentExpanded RMRHContentCollapsed’,function() {
$container.data(‘masonry’)[‘_reLayout’]()
}); ‘but that worked like a charm! Thanks so much!
Forum: Plugins
In reply to: [Read More Right Here] Trigger Masonry as a callbackThanks for pointing out the custom event names; I must’ve missed that FAQ. But I guess I’m still too new to the syntax of callbacks… I’ve tried lots of variations of the code below with no luck. (I’m including the whole chunk of script I’m using for reference.) Do you have any more insight or is this something I should contact the author of the other plugin about?
<script type="text/javascript"> $(function(){ var $container = $('#posts'); $container.masonry({ itemSelector : '.post', gutterWidth: 18 }); $('.post').bind('RMRHContentExpanded RMRHContentCollapsed',function() { $container.masonry('reLayout') }); }); </script>