Forum Replies Created

Viewing 2 replies - 16 through 17 (of 17 total)
  • To disable the “Enter your email” box, go into your editor and find

    ultimate-landing-page-and-coming-soon-page/template/template1.php

    <form action="https://feedburner.google.com/fb/a/mailverify" method="post" target="popupwindow" onsubmit='window.open("https://feedburner.google.com/fb/a/mailverify?uri=<?php echo $ulp_options['feedburner_address'] ?>", "popupwindow", "scrollbars=yes,width=550,height=520");return true'>
                        <input type="hidden" value="<?php echo $ulp_options['feedburner_address'] ?>" name="uri"/>
                        <input type="hidden" name="loc" value="en_US"/>
    		    <input type="hidden" name="landing_page_id" value="<?php echo $ulp_options['landing_page_id'] ?>"/>
                        <input id="notify-email" type="text" name="email" placeholder="Enter Your Email"/>
    
                        <button id="notify-btn" type="submit">Add Me!</button>
        			</form>

    add php comments around this form like so:

    <?php
    /*					
    
    <form action="https://feedburner.google.com/fb/a/mailverify" method="post" target="popupwindow" onsubmit='window.open("https://feedburner.google.com/fb/a/mailverify?uri=<?php echo $ulp_options['feedburner_address'] ?>", "popupwindow", "scrollbars=yes,width=550,height=520");return true'>
                        <input type="hidden" value="<?php echo $ulp_options['feedburner_address'] ?>" name="uri"/>
                        <input type="hidden" name="loc" value="en_US"/>
    		    <input type="hidden" name="landing_page_id" value="<?php echo $ulp_options['landing_page_id'] ?>"/>
                        <input id="notify-email" type="text" name="email" placeholder="Enter Your Email"/>
    
                        <button id="notify-btn" type="submit">Add Me!</button>
        			</form>
    */
    ?>

    currently this fix is being used at https://mechagnome.com/newgenerationsphotography/

    I am having a similiar problem that I can’t seem to figure out, but I can tell you right now that the code you just quoted does absolutely nothing.

    What you have there is a comment and nothing else. I do believe the code your looking for is:

    <?php comments_popup_script(); ?>

Viewing 2 replies - 16 through 17 (of 17 total)