FancyThemes
Forum Replies Created
-
Forum: Plugins
In reply to: [Optin Forms - Simple List Building Plugin for WordPress] mouse focusHi,
It shouldn’t autofocus on the input. Can you please send over the URL to the website so I can check it out.
Hi Danny,
Visitor data is not being collected by the plugin.
When the visitors enter their information ( name and email ) into the forms and submit the form, that information is forwarded to the email newsletter provider ( Mailchimp, GetResponse… ), the plugin does not save/store that information.
But I’m not sure if storing that data would be breaching the rules, since most of the plugins for newsletter subscription store the data visitors willingly entered in the form so they can subscribe. In any case, this plugin does not store that information.
Hi,
I think the ownership of the plugin changed after that. Not quite sure, I was hired by the new owner about a year ago. I’ll talk to the new owner about that and it’ll most likely be implemented in May. In any case I’ll definitely get back to you with any new information.
Forum: Plugins
In reply to: [Optin Forms - Simple List Building Plugin for WordPress] Changes not savingHi,
Haven’t encountered that issue before, I’ll need access to the WP admin to check out what’s going on. Can you create a new user account with the administrator role, use this email address: skustrimovic at gmail com
Make sure the checkbox for “Send the new user an email about their account.” is checked.
Hi,
The first name and last name boxes will be fixed in today’s update. It will still remain as one input but the system will automatically separate it into first name and last name when it sends the info to Mailchimp.
As for custom fields, that’s a bit tricky, the forms are all designed with only name and email ( or only email ) in mind, so adding new fields would be a problem for the structure. Will see what can be done about that but can’t promise anything unfortunately.
Forum: Themes and Templates
In reply to: [Upright] Related Post thread removeHi,
you can remove the related posts and widen the content using following css code:
.single .post .related-box { display: none; } @media only screen and (min-width: 720px) .single .post > .entry-content, .single .post > footer { width: 100%; float: none; } }
You can add the code using the Additional CSS in customizer.
- This reply was modified 6 years, 7 months ago by FancyThemes.
Hi,
Add this in WP admin > Appearance > Customize > Additional CSS:
body.single-product #optinforms-form1-container { display: none; } body.single-product #optinforms-form2-container { display: none; } body.single-product #optinforms-form3-container { display: none; } body.single-product #optinforms-form4-container { display: none; } body.single-product #optinforms-form5-container { display: none; } body.single-product #optinforms-form6-container { display: none; }
You actually need only one of those lines, depending on which form design you are using, but you can add all of it.
Hi,
We will update the plugin in a few days.
Hi,
Mailchimp has separate fields for first name and last name, so we only included the first name field.
So the only solution would be adding an additional field for last name, so there will be 3 fields: first name, last name and email. We can add that in an update, just let me know if you want that.
You’re welcome ??
The plugin does not have a popup.
The form can be automatically placed on posts and pages. It can be after the first paragraph, after the second paragraph or at the end of the post content.
You can change the settings in WP admin > OptinForms > Form. You’ll see the “Form placement” area in there.
Or you can place it anywhere you want using the shortcode [optinform]
Hi,
Add this in WP admin > Appearance > Customize > Additional CSS:
#optinforms-form5-email-field { padding: 8px 8px 8px 33px !important }
Hi Chandra,
By “Email Solution” we’re referring to the different newsletter management solutions that are available, most popular is https://mailchimp.com/
The plugin itself does not allow you to send out email newsletters. It’s just to add a good looking, responsive form where visitors can subscribe for your newsletters, you still need to use a newsletter management solution/service.
Forum: Plugins
In reply to: [Optin Forms - Simple List Building Plugin for WordPress] Getresponse “issue”Hi Pete,
You’re welcome.
As for the button, will look into that.
Forum: Plugins
In reply to: [Optin Forms - Simple List Building Plugin for WordPress] Getresponse “issue”Hi Pete,
There’s another thing we need to do before releasing the update but there’s no need for you to wait, you can download the version with the fix you need here
And this is the code you would add in the functons.php of your theme:
function mytheme_optinforms_before_form_close() { return '<input type="hidden" name="thankyou_url" value="https://yourwebsite.com" />'; } add_filter( 'optinforms_before_form_close', 'mytheme_optinforms_before_form_close' );
Just change the https://yourwebsite.com with the URL.