RightPress_Support
Forum Replies Created
-
Hi,
The issue is related to PHP cURL extension not being loaded on your host server, which is a plugin requirement. Can you please check with your hosting company if cURL is enabled on your server or not?
Hi. Please email us the details at support@rightpress.net instead.
Hi there,
Please submit a support ticket here so that i can assist you better with this issue. Link: http://support.rightpress.net/hc/en-us/requests/new
Hi there,
No, this is not possible out of the box. You will have to customize the plugin’s code for this scenario.
Hi there,
The API key should be generated only by an Admin/Owner of the MailChimp account. Previously, it was possible for a “Manager” user-role to generate and use API keys but MailChimp now allows only the Owners/Admin of the account to do so.
If you are the Admin of the account, then please generate a fresh API and try again.
Hi there,
Are all the signups being added to the list correctly? Chimpy Lite does not handle emails and they are completely managed by MailChimp on their own. Our plugin only helps you to add new subscribers to your MailChimp lists and groups.
I would suggest you to get in touch with the MailChimp support team for this.
Forum: Plugins
In reply to: [Chimpy Lite - MailChimp WordPress Plugin] Popup cut offHi there,
Thank you for your patience. This is the response from our lead developer:
This is due to lack of responsiveness – the popup is there, but it’s off the screen. We do provide support for such issues for Chimpy, but not for Chimpy Lite. So, you will have to implement this on your own.
For example, the smallest breakpoint for mobile device
@media (max-width: 370px) {
.sky-form-modal {
left: 0;
margin-left: 0 !important;
width: 100%;
}
}Forum: Plugins
In reply to: [Chimpy Lite - MailChimp WordPress Plugin] Popup cut offHi there,
The sidebar is over-riding the popup which is a Z-Index issue. Please add this CSS code to fix this:
.chimpy_popup_content .sky-form-modal {
z-index: 10000000;
}Forum: Plugins
In reply to: [Chimpy Lite - MailChimp WordPress Plugin] Popup cut offHi,
Can you share the link to this page? I might be able to fix it.
Forum: Plugins
In reply to: [Chimpy Lite - MailChimp WordPress Plugin] Popup cut offHi there,
You mentioned that it is not appearing on mobile devices. Did you dismiss the popup using the ‘Never show it again’ link?
In either case, i would suggest you to clear your browser’s cache and try again.
Forum: Plugins
In reply to: [Chimpy Lite - MailChimp WordPress Plugin] Popup cut offHi again,
Please use this instead:
.sky-form-modal {
display: block;
margin-left: 18%;
}Forum: Plugins
In reply to: [Chimpy Lite - MailChimp WordPress Plugin] Popup cut offHi there,
You can fix this with some CSS in the Override CSS field in plugin settings. Please try this:
.sky-form-modal {
display: block;
padding-left: 18%;
}Forum: Plugins
In reply to: [Chimpy Lite - MailChimp WordPress Plugin] Email Capture @ DownloadHi Melissa,
This is possible with the PRO version of this plugin where you can trigger a popup using a link and initiate download after the user fills up the form.
Forum: Plugins
In reply to: [Chimpy Lite - MailChimp WordPress Plugin] check box is not alignedHI Shelly,
The CSS rule should’ve been assigned, but it’s not there and width is still set to 100% – it might be caused by some other plugins overriding this. Please try this code as a workaround:
#chimpy_lite_checkbox_signup{ width: 20px !important; }If this does not work, then you will have to edit the plugin’s main file, chimpy-lite.php. There is a method –
render_checkbox()which just echoes all htmlecho '<p style="margin: 2px 6px 16px 0px;"><label for="chimpy_lite_checkbox_signup"><input type="checkbox" id="chimpy_lite_checkbox_signup" name="chimpy_lite_checkbox_signup" value="1" ' . ($this->opt['chimpy_lite_checkbox_state'] == '1' ? 'checked="checked"' : '') . ' /> ' . $this->opt['chimpy_lite_checkbox_label'] . '</label></p>';Just add
style="width: 20px;"beforevalue="1"like this and try again.echo '<p style="margin: 2px 6px 16px 0px;"><label for="chimpy_lite_checkbox_signup"><input type="checkbox" id="chimpy_lite_checkbox_signup" name="chimpy_lite_checkbox_signup" style="width: 20px;" value="1" ' . ($this->opt['chimpy_lite_checkbox_state'] == '1' ? 'checked="checked"' : '') . ' /> ' . $this->opt['chimpy_lite_checkbox_label'] . '</label></p>';Hope this fixes the issue.
Forum: Plugins
In reply to: [Chimpy Lite - MailChimp WordPress Plugin] check box is not alignedHi there,
Sorry for the delay. Please use this instead:
#chimpy_lite_checkbox_signup{
width: 20px;
}