The Confirmation button should be removed from the confirmation page. Once the subscriber received the confirmation email and click on the confirmation link, it should complete the confirmation process.

Comments

puddyglum’s picture

This would be great to have. Some subscribers were not clicking the confirm button and some didn't understand that it was just confirming what they already submitted on the subscribe form.

Mr. Red’s picture

I used a workaround.:
1. hide button the confirmation;

.page-newsletter-confirm-add #edit-actions {
    visibility: hidden;
}

2. to add a page to the script autoclicker

//Add to button id=subscribe-btnconfirm
function redprice_form_alter(&$form, &$form_state, $form_id) {
        $form['actions']['submit']['#attributes'] = array('id' => 'subscribe-btn-confirm');
}
//Click on the button after 7 seconds
function redprice_preprocess_page(&$variables, $hook) {
    if ($variables['page']['content']['system_main']['#id'] == 'simplenews-confirm-add-form') {
        $sb_script = '(function($) {$(document).ready(function() {setTimeout(function() {$("#subscribe-btn-confirm").click();}, 7000);});})(jQuery);';
        drupal_add_js($sb_script, 'inline');
    }
}

Here is an example

anni’s picture

Issue summary: View changes

I´ve got the same problem with subscribers not clicking at the button and complain about getting no Newsletter.
Is there a workaround?

anni’s picture

Title: Remove confirmation button on confirmation page » Remove confirmation button on confirmation page / Direct subscription after klick on the mail link
Category: Bug report » Support request
anni’s picture

Title: Remove confirmation button on confirmation page / Direct subscription after klick on the mail link » Remove confirmation button on confirmation page / Direct subscription after click on the mail link
anni’s picture

Issue fixed for me with patch from here.

anni’s picture

Status: Active » Closed (duplicate)