stcr / subscribe-to-comments-reloaded

Subscribe to Comments Reloaded allows commenters to sign up for e-mail notifications of subsequent replies.
56 stars 32 forks source link

Subscribe To Comments Reloaded does not work #153

Open Maudus opened 8 years ago

Maudus commented 8 years ago

Hello,

Subscribe To Comments Reloaded does not work (Checkboxes do not appear on my pages of articles) with my theme Wordpress "Plane" and Wordpress 4.3.1.

Sincerely,

Maude

Reedyseth commented 8 years ago

Hello @Maudus this usually happens when you has a hidden or display none into your label tag.

Tche111 commented 8 years ago

Hi Reedy, I have the same issue. Actually it was working in the past but it is not anymore and the bad thing is that I dont know when or why it stopped. I have included this in my comments.php: `

` Online as well as in firebug, the text appears but not the subscribe_reloaded checkbox. I have tried as an admin but also whan I was not logged in. Here is the link to the page: http://tst.allwewish.org/je-voeu-bricoler/ I hope you will be up to help. Many thanks in advance!

Tche'ers

Reedyseth commented 8 years ago

Guys the error is that the checkbox is controll by jQuery and the selector defined on the script is not matching yours, my bad.

You should take a look at #196 and This

Tche111 commented 8 years ago

Hi Reedyseth,

Thanks a lot for your work, your great plugin and your answers!

I tried the mentioned solution but I dont know why it doesnt work with my child-theme. I desactivated all other plugins but the problem remains. Do you have an idea where I should look at, what I should do?

Many thanks in advance for your help!

Reedyseth commented 8 years ago

@Tche111 , I apologize for this inconvience, This error is part of a missing selector, this will be fixed on the next update by using the WordPress code instead of jQuery. In the meantime I can help you to have yours working.

Reedyseth commented 8 years ago

Please if you can find the stcr-plugin.js file under the path

/subscribe-to-comments-reloaded/includes/js/

Replace this line: var submit_button = $('form input.Cbutton'); for this line: var submit_button = $('form input[type="submit"]');

Then set to Yes on the StCR Box Position option.

Tche111 commented 8 years ago

Hi Reedyseth, Thanks for your answer and sorry for the time of reply. I tried this solution but it didnt work... I then browsed the threads here and the following code you provided: <?php global $wp_subscribe_reloaded; if (isset($wp_subscribe_reloaded)){ $wp_subscribe_reloaded->stcr->subscribe_reloaded_show(); } ?> Makes a droplist appear where I want it. Nevertheless I can not confirm the choice made and I wonder how to do it? Maybe you can help me (and others) further? Sincerely, Tche

Reedyseth commented 8 years ago

Hi @Tche111

Nevertheless I can not confirm the choice made and I wonder how to do it?

Do you mean that how an administrator knows what option a user did? Can you explain this a bit more?

Regards.!!

Tche111 commented 8 years ago

Hi Reedyseth, Thanks for your answer here are some further explanations: The hereabove code allows me to display the droplist or the tickbox where I want in my posts. The user can make the choice or tick the box but he can not confirm his choice... To do so he has to submit a new comment.

I have been using stc or stc-reloaded for years and I believe that it was possible to subscribe without posting a comment.

I hope this will help you to help me ;) Many thanks in advance! Yours Sincerely, Tche

Reedyseth commented 8 years ago

I have been using stc or stc-reloaded for years and I believe that it was possible to subscribe without posting a comment.

Hi @Tche111 , yes, you can subscribe without commenting, in order to do that you have to add the tag [subscribe_link]

You can create a link by putting the tag [subscribe_link] on the link address (anchor tag),

image

so to have the result like the following image you will do something like this:

Notify me of followup comments via e-mail. You can also <a href="[subscribe_link]">subscribe</a> without commenting.
Reedyseth commented 8 years ago

@Maudus @Tche111 ,

A new update has been released, are you still having issues ?