• Resolved ysandhu

    (@ysandhu)


    I love this plugin .. simple and powerful.

    So I have a situation where on two different sections on the website i want option for people to subscribe and want to maintain that independently.

    I checked creating two different group.. but some problem

    How to create a widget for subscription to one group only.

    And if that is possible.. how to handle unsubscribe option for each group.

    Thanks

    http://wordpress.org/extend/plugins/knews/

Viewing 8 replies - 1 through 8 (of 8 total)
  • Plugin Author creverter

    (@creverter)

    Hello @ysandhu! Thanks for your words.

    You can create two mailing lists. You can create the registration form by two ways:

    Put the following “shortcode” on any page or post, now you can specify a mailing list id: [knews_form id=1] (where 1 is the ID mailing list.

    Or you can write in your theme: `<?php echo knews_plugin_form(array(‘id’=>1)); ?>

    In the admin mailing lists page, put the mouse over the mailing list and you will see the ID of the list in the link.

    The unsubscribe option works for now trough the unsubscribe link in the bottom of the newsletters.

    Regards,
    Carles.

    Thread Starter ysandhu

    (@ysandhu)

    Thanks for reply.

    But what if one email id is subscribed for both mailing list.when that email gets unsubscribe link and click on that. Will he be removed from one or both.
    Last time I tried it removes you from both lists

    Plugin Author creverter

    (@creverter)

    Yes, for now, when one user clicks unsubscribe, his status changes from confirmed (green light) to blocked (right light). For now is impossible manage unsubscription from separate mailing lists…

    In the future we will offer some solution, but not for now.

    I’m sorry!
    Carles.

    Thread Starter ysandhu

    (@ysandhu)

    Thanks for reply,

    Is there a way to do duplicate install of this plugin so that way i can manage to separate newsletter independent to each other.

    Plugin Author creverter

    (@creverter)

    I’m affraid is really complicated duplicate the plugin.

    The “easy” way are modify the plugin, adding a mailing list ID as a param in the usubscribe link (three places: manual submit, automated submit and can’t read html page) and then modify the unsubscribe code, get the list ID and remove the user from there.

    Otherwise, you must wait, in future we plan to add a complete user/subscriber administration, and then can manage his own subscriptions… but I can’t tell you how many time it can take…

    PD: If you make the changes, please, poste it here for another users.

    Regards,
    Carles.

    Thread Starter ysandhu

    (@ysandhu)

    One more quick question

    i can use shortcode [knews_form id=1] or <?php echo knews_plugin_form(array(‘id’=>1)); ?> to get news subscrition form.

    how to use this code to include name .. surname as mandatory field. if use code it just ask for email id.

    Thanks

    Plugin Author creverter

    (@creverter)

    Update to 1.2.2 if you don’t it, and then:

    <?php echo knews_plugin_form(‘id’=>1 ‘name’=>’ask’, ‘surname’=>’required’, ‘stylize’=>1) ); ?>

    Regards,
    Carles.

    Thread Starter ysandhu

    (@ysandhu)

    ya.. got it working.. posted question without looking at latest version.

    Thanks

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘[Plugin: Knews Multilingual Newsletters] Multiple Subscription widget’ is closed to new replies.