WPSubscribers vs Newsletter Plugin Wordpress
WPSubscribers vs Newsletter Plugin Wordpress
Hi,
Sorry for my poor english.
My webiste https://www.pedroalive.com has both WPSubscribers and Newsletter Plugin from http://www.thenewsletterplugin.com/?utm ... ontent=3.7.
If I use the widget from newsletter plugin everything works fine.
If I use, for example, custom opt-in code, which is present on this page: https://www.pedroalive.com/paydiamond-s ... as-online/ It doesn-t work.
Please help,
Kind Regards
Pedro
Sorry for my poor english.
My webiste https://www.pedroalive.com has both WPSubscribers and Newsletter Plugin from http://www.thenewsletterplugin.com/?utm ... ontent=3.7.
If I use the widget from newsletter plugin everything works fine.
If I use, for example, custom opt-in code, which is present on this page: https://www.pedroalive.com/paydiamond-s ... as-online/ It doesn-t work.
Please help,
Kind Regards
Pedro
-
- Posts: 283
- Joined: Tue Feb 28, 2012 10:36 am
- Location: Canillo, Andorra
-
- Posts: 283
- Joined: Tue Feb 28, 2012 10:36 am
- Location: Canillo, Andorra
Hi,
can you try to add this in jquery custom
regards,
JC
can you try to add this in jquery custom
Code: Select all
jQuery(".wps_submit").click(function(){jQuery( ".wps_submit" ).remove();jQuery(".wpsform").submit()});
function wprs_ref(){};
JC
Sorry, newb here, where can I find that "Jquery custom"?Jean-Christophe Bisoux wrote:Hi,
can you try to add this in jquery customregards,Code: Select all
jQuery(".wps_submit").click(function(){jQuery( ".wps_submit" ).remove();jQuery(".wpsform").submit()}); function wprs_ref(){};
JC
Pedro
-
- Posts: 283
- Joined: Tue Feb 28, 2012 10:36 am
- Location: Canillo, Andorra
-
- Posts: 283
- Joined: Tue Feb 28, 2012 10:36 am
- Location: Canillo, Andorra
can you try this :
JC
Code: Select all
jQuery(document).ready(function(){
jQuery(".wps_submit").click(function(){jQuery( ".wps_submit" ).remove();jQuery(".wpsform").submit()});
function wprs_ref(){};
});
-
- Posts: 283
- Joined: Tue Feb 28, 2012 10:36 am
- Location: Canillo, Andorra
It's seems sahifa didn't add the script tag, can you try this
JC
Code: Select all
<script type="text/javascript">
jQuery(document).ready(function(){
jQuery(".wps_submit").click(function(){jQuery( ".wps_submit" ).remove();jQuery(".wpsform").submit()});
function wprs_ref(){};
});
</script>
-
- Posts: 283
- Joined: Tue Feb 28, 2012 10:36 am
- Location: Canillo, Andorra
Arrgh I made a mistake, it's not wprs_ref but wps_ref
The code is
cross finger
JC
The code is
Code: Select all
<script type="text/javascript">
jQuery(document).ready(function(){
jQuery(".wps_submit").click(function(){jQuery( ".wps_submit" ).remove();jQuery(".wpsform").submit()});
function wps_ref(){};
});
</script>
JC
Fingers crossed , same resultJean-Christophe Bisoux wrote:Arrgh I made a mistake, it's not wprs_ref but wps_ref
The code iscross fingerCode: Select all
<script type="text/javascript"> jQuery(document).ready(function(){ jQuery(".wps_submit").click(function(){jQuery( ".wps_submit" ).remove();jQuery(".wpsform").submit()}); function wps_ref(){}; }); </script>
JC