• Resolved Abhik

    (@itsabhik)


    Just noticed that an additional
    tag is being added after the comment checkbox if enabled from option.

    How do I Remove that?

    <p><input value="1" id="aweber_checkbox" style="width:inherit;" name="aweber_signup_checkbox" type="checkbox">
    <label for="aweber_checkbox">Subscribe To Our Newsletter</label></p>
    <br>    <------ This is what I am talking about>
    <p class="comment-subscription-form"><input ...

    https://www.ads-software.com/extend/plugins/aweber-web-form-widget/

Viewing 2 replies - 1 through 2 (of 2 total)
  • It’s in the file aweber-web-form-widget/php/aweber_webform_plugin.php under the function add_checkbox:

    function add_checkbox()
        {
            $options = get_option($this->widgetOptionsName);
            ?>
            <p>
            <input value="1" id="aweber_checkbox" type="checkbox" style="width:inherit;" name="aweber_signup_checkbox"/>
                <label for="aweber_checkbox">
                <?php echo $options['create_subscriber_signup_text'];?>
                </label>
            </p>
            <!--</br>-->
            <?php
        }

    Searched a while for this myself. Hope it helps!

    Thread Starter Abhik

    (@itsabhik)

    Thanks Alex,
    I found that too by myself soon after I posted this support thread.

    Anyway, I moved to a better alternative recently.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘[Plugin: AWeber Web Form Plugin] How Do I remove the at the Comment Checkbox?’ is closed to new replies.