karlajw
Forum Replies Created
-
Thanks!! That was it ??
I’m so used to working in the templates with php that I just expected to use the same format.
Karla
Thanks Christian! That’s exactly what I needed.
Interested in a fix for this as well.
Thanks Cristian. I’ll log it over there.
Karla
Ok, I just did some testing and answered most of my questions. User’s are unsubscribed and not removed from the MailChimp lists. When they are upgraded/downgraded the list transitioning does appear to re-subscribe them without requiring that the user re-confirm (via email).
I think I have found a bug …
If the user’s role is changed via the bulk action dropdown above the Users list then the MailChimp lists are not processed at all. No requests are sent to MailChimp to switch lists. I had the debug log turned on and couldn’t see the appropriate entries nor were the changes made on the MailChimp side.
If however, I changed the user’s role by going into their profile and updating their record that way then the MailChimp lists were switched successfully.
What’s the process for reporting bugs to s2Member these days?
Thanks,
KarlaForum: Plugins
In reply to: [Facebook Feed Grabber] Uncaught CurlExceptionI just encountered the same error on a non-WordPress site that is using the Facebook Connect API. While researching I came across your post plus this post on the Facebook Developers site …
https://developers.facebook.com/bugs/412291762177195?browse=search_50b53a03e36cd0881849499Looks like the plugin developer will likely need to make an update to pick up the fix.
Forum: Plugins
In reply to: [Custom Thumbnails] [Plugin: Custom Thumbnails] Plugin UpdatedThanks very much! I’ll definitely check out the beta.
Karla
Forum: Plugins
In reply to: [Custom Thumbnails] [Plugin: Custom Thumbnails] Plugin UpdatedHi Baden,
Would you be willing to share your updates? I have a client who would like this functionality for their site as well.
Karla
Any idea when this fix will be available in a plugin update?
Forum: Plugins
In reply to: [amr users] [Plugin: amr users] Extra escaped quotes in CSV fileThanks Anmari.
I had also posted the same question to our hosting provider and he confirmed that the problem was due to the magic-quotes setting.
He pointed out:
The htmlspecialcharacters_decode() function turns into > and & into & etc. it does not turn \” into ” properly.
and by making the following change to the plugin was able to get rid of the extra \”
I changed line 14 from:
amr_to_csv (htmlspecialchars_decode($_POST[‘csv’]),$suffix);
to:
amr_to_csv (stripslashes(htmlspecialchars_decode($_POST[‘csv’])),$suffix);Is there any chance you would make this change a part of the plugin?
Thanks,
KarlaSorry for the delay in replying … been a busy few weeks. I’ve installed 3.4.8 and I can now export my other lists … yeah! Thanks very much for the fix.
Thanks for the quick response Anmari!
Becuase of the nature of the data in the list I think I’ll go with option 2) and re-configure list 1 for now.
Do you have a rough idea when a new fix/version might be out (days/weeks/months)?
Are you using the Secondary Lightbox with the Use iFrame checkbox checked?
I experienced extremely slow loading lightbox content until I turned on those settings.
During my troubleshooting I found that multiple page requests were being made and that slowed things down to a crawl.
Forum: Plugins
In reply to: [Lightbox Plus Colorbox] Multiple instances all overlayedJust figured this one out myself. Actually I haven’t figured out why it’s loading double the number of page requests on every subsequent click, but I did figure out the fix/workaround …
To load other page content (ie. not simple jpg’s) you need to enable the secondary lightbox settings and then check the box to use iFrame (Secondary Lightbox – Other Settings).
The problem doesn’t seem to be specific to this plugin … I tried a couple of other lightbox/thickbox plugins with their default image settings and they all did the same thing … making 2 times the page requests for each click that opens a lightbox.
Ok, thanks for letting me know.