Search found 283 matches

by Jean-Christophe Bisoux
Thu Feb 05, 2015 8:21 pm
Forum: WPSubscribers
Topic: Show all fields on popup?
Replies: 4
Views: 12542

Hi,
I think the best way is to use the Name field in the optin form, and in "Other Setting" replace the Name text with "Your phone number"
If you would like use, name, email and phone, in this case you must use the custom optin form

Regards,
JC
by Jean-Christophe Bisoux
Wed Feb 04, 2015 6:33 am
Forum: WPSubscribers
Topic: How to adjust height and width of popup
Replies: 4
Views: 17555

Hi Michael,
If you use the custom popup, you must use first the "Custom Optin Form" http://www.wpsubscribers.com/tutorials/ ... -want.html

and use the

Code: Select all

[wps_custom_form id=0]
in the custom popup

Regards,
JC
by Jean-Christophe Bisoux
Mon Feb 02, 2015 6:55 pm
Forum: WPSubscribers
Topic: How to post a form with 3 fields using Get Response?
Replies: 1
Views: 10293

Hi, If you would like to send 2 differents informations (one to you and the other to Getresponse) it's not possible a form send in one direction, or you must develop a script in php with curl but it's not possible directly in WPS If all the informations will be send to get response, you must create ...
by Jean-Christophe Bisoux
Sat Jan 31, 2015 7:14 am
Forum: WPSubscribers
Topic: How to adjust height and width of popup
Replies: 4
Views: 17555

Hi Michael,

in WPS the root for the CSS is #popup, you don't need to enter it the code will be :

Code: Select all

{width:600px;height:300px;}
Regards,
JC
by Jean-Christophe Bisoux
Fri Jan 30, 2015 5:35 pm
Forum: WPSubscribers
Topic: Quick reference css adjustments
Replies: 8
Views: 15063

Sorry, I forgot to say in the Custom CSS editor you must enter the css in 1 line

Code: Select all

.wps_privacy{position: absolute;bottom: -10px;left: 400px;font-size: 11px;}
by Jean-Christophe Bisoux
Thu Jan 29, 2015 6:39 pm
Forum: WPSubscribers
Topic: Quick reference css adjustments
Replies: 8
Views: 15063

Can you try this code in CSS custom :

Code: Select all

.wps_privacy{
	position: absolute;
	bottom: -10px;
	left: 400px;
	font-size: 11px;
}
by Jean-Christophe Bisoux
Thu Jan 29, 2015 2:34 pm
Forum: WPSubscribers
Topic: Quick reference css adjustments
Replies: 8
Views: 15063

Is it posible to have a live url to see the code, with only an image it's imposible
by Jean-Christophe Bisoux
Thu Jan 29, 2015 12:51 pm
Forum: WPSubscribers
Topic: Quick reference css adjustments
Replies: 8
Views: 15063

Hi,
If you use the custom CSS, it's the normal CSS there is no particularity with WPS, all is possible ;)
by Jean-Christophe Bisoux
Thu Jan 29, 2015 12:48 pm
Forum: WPSubscribers
Topic: Using WPsubs as 2 step opt-in
Replies: 6
Views: 20585

You configure the display location normally, it's the code

Code: Select all

var notview=1;
that's say the popup don't display.
And you can to be sure set the number of time with a very large value
by Jean-Christophe Bisoux
Wed Jan 28, 2015 4:36 pm
Forum: WPSubscribers
Topic: Using WPsubs as 2 step opt-in
Replies: 6
Views: 20585

Hi, what's exactly the "2 step opt-in process, like optinlinks.com" ? If it's the double optin, it's directly on you mailing system like aweber, mailchimp, ... To open a popup with a link, you can use this : http://www.wpsubscribers.com/tutorials/how-to-open-a-popup-with-a-link.html you ca...
by Jean-Christophe Bisoux
Wed Dec 03, 2014 12:34 pm
Forum: WPSubscribers
Topic: only working when admin logged in
Replies: 4
Views: 11234

Hi,
I don't know if it's that but the quotes you use are not the good quotes, try this one

Code: Select all

<input type="hidden" name="list_id" value="2">
If not can you copy paste here the form from mallet ?

Regards,
JC
by Jean-Christophe Bisoux
Mon Nov 17, 2014 6:37 pm
Forum: WPSubscribers
Topic: only working when admin logged in
Replies: 4
Views: 11234

Hi,

It's working for me and i'm not logged in
Image

Regards,
JC
by Jean-Christophe Bisoux
Thu Oct 23, 2014 12:50 pm
Forum: WPSubscribers
Topic: CSS to adjust submit button padding
Replies: 9
Views: 11495

The only way I see is to change directly in the WPS CSS, it's in this file
http://www.safehavenwomensrehab.com/wp- ... n-form.css @ line 7

Regards,
JC
by Jean-Christophe Bisoux
Wed Oct 22, 2014 1:06 pm
Forum: WPSubscribers
Topic: CSS to adjust submit button padding
Replies: 9
Views: 11495

The problem, there is a lot of CSS rule for the submit bouton,

can you try directly whit the class

Code: Select all

.wps_submit{padding: 21px 20px;}
by Jean-Christophe Bisoux
Wed Oct 22, 2014 12:15 pm
Forum: WPSubscribers
Topic: CSS to adjust submit button padding
Replies: 9
Views: 11495

Hi,
I see in your source code that you didn't quit the quote as I mention you in my first message
try to use

Code: Select all

.icf-optin-form input[type=submit] {padding: 21px 20px;}
NOT

Code: Select all

.icf-optin-form input[type="submit"] {padding: 21px 20px;}
Regards,
JC