Subscribe

If you run into any issues while browsing our website or forums, you can find details on how to report them in here.

Moderators: Codeman, Arrakis


ImprovinSkill
Devoted Believer
 
Posts: 8
Joined: 01 Jun 2016, 13:53

Subscribe

Post by ImprovinSkill » 01 Nov 2016, 10:54

how to confirm that i want "I wish to receive newsletter emails" becouse when i click to confirm it and refresh site is not confirm ?


TriXxXol
 
Posts: 1
Joined: 22 Oct 2016, 08:54

Re: Subscribe

Post by TriXxXol » 06 Nov 2016, 19:10

lol


Torpedo
Zealous Believer
 
Posts: 10
Joined: 18 Dec 2014, 10:06
Location: Spain

Re: Subscribe

Post by Torpedo » 08 Nov 2016, 11:32

Edit: Codeman Fixed the bug

The html form code to Subscribe has a bug.

(https://lifeisfeudal.com/billing/account/settings.php)

If you do not want to wait for developers to fix the bug, you can patch it temporarily in your browser to work, use firebug (for example) and edit the code form, replacing the original code for the next one:

Original code:
Code: Select all
<form action="" method="POST" id="subscribe">
   <input name="action" value="subscribeform" type="hidden">
   <div class="liner_form clearfix"><input class="custom_form_0" name="subscribe" checked="" onchange="document.getElementById(" subscribeform").submit();"="" type="checkbox">
   I wish to receive newsletter emails.</div>
</form>


Correct Code to Subscribe:
Code: Select all
<form action="" method="POST" id="subscribe">
   <input name="action" value="subscribe" type="hidden">
   <div class="liner_form clearfix"><input class="custom_form_0" name="subscribe"  onchange="document.getElementById('subscribe').submit();" type="checkbox">
   I wish to receive newsletter emails.</div>
</form>


Correct Code to Unsubscribe:
Code: Select all
<form action="" method="POST" id="subscribe">
   <input name="action" value="subscribe" type="hidden">
   <div class="liner_form clearfix"><input class="custom_form_0" name="subscribe" checked="" onchange="document.getElementById('subscribe').submit();" type="checkbox">
   I wish to receive newsletter emails.</div>
</form>



An finally, click on checkbox and enjoy you subscribe/unsubscribe
Last edited by Torpedo on 08 Nov 2016, 18:32, edited 1 time in total.

User avatar
Codeman
 
Posts: 32
Joined: 22 Mar 2016, 18:57

Re: Subscribe

Post by Codeman » 08 Nov 2016, 17:47

Torpedo wrote:The html form code to Subscribe has a bug.


Thank you for message. Now this feature works :good:


Torpedo
Zealous Believer
 
Posts: 10
Joined: 18 Dec 2014, 10:06
Location: Spain

Re: Subscribe

Post by Torpedo » 08 Nov 2016, 18:35

Thanks to you, Codeman.

I am glad to have been helpful.

Return to Website Support