• Great template!! Still, some tweaking needed, as I got the above error message when inputing an email address for the subscription. For others who have been experiencing this, here is the solution from the Feedburner/Google forum: https://tinyurl.com/5q8qvn

    Following those instructions, I edited the following three parts of the LaunchPad template file using the code generated by Feedburner:

    1. onsubmit= (give what Feedburner provides instead of what the template says)
    2. value= (give what Feedburner provides for the url)
    3. value= (give what Feedburner provides for the title, although this may not be necessary)

Viewing 3 replies - 1 through 3 (of 3 total)
  • Matthew

    (@bodhidharma74)

    Here is a simple solution that worked for me.

    You need to edit the Launchpad Theme index.php.

    Find the form
    Select all of the code for the form and paste following code over it.

    <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 $lp_feedburner_id; ?>', 'popupwindow', 'scrollbars=yes,width=550,height=520');return true">
    				<p class="form-label">Enter your email address:</p><p><input type="text" style="width:140px" name="email"/></p>
    				<input type="hidden" value="<?php echo $lp_feedburner_id; ?>" name="uri"/>
    				<input type="hidden" name="loc" value="en_US"/>
    				<input type="submit" value="Subscribe" />
    			</form>

    Thanks aptitudo! That worked for me. ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘“The feed does not have subscriptions by email enabled”’ is closed to new replies.