Coming Soon Page Opt In

5 replies·opened Aug 12, 2016
T
triplewhatAug 12, 2016

I have the mail chimp api and list Id setup, but when a user subscribes to the list they are taken to a blank page with a success message that has no style.

How do I make the success message appear on the same page after they subscribe.

T
triplewhatAug 17, 2016

Can you take a look at this please?

S
SemiColonWebSTAFFAug 29, 2016

Hello,

[sb_private_reply]We Extreme Apologize about the Delays in replying to your Support Query![/sb_private_reply]

According to the Issue you have mentioned, there appears to be some jQuery Conflict on the Page due to which the Subscription Form gets redirected to the Success Page instead of showing a Notification through AJAX. Can you please provide us with a Live URL so that we can assess the exact issue and provide you with a more accurate solution for this. Thanks for your Patience.

Meanwhile, do let us know if we can help you with anything else or if you find any further issues with Canvas.

S
SemiColonWebSTAFFSep 19, 2016

Hello,

We have just checked out your Website and the issue is that the Subscription Form's Code is incorrect and needs to be enclosed inside the .subscribe-widget Container to make sure it works properly. Please find the following code on your Page:

<div class="widget-subscribe-form-result"></div>
<form data-alert-type="inline" id="widget-subscribe-form" action="include/subscribe.php" role="form" method="post" class="nobottommargin">
	<div class="input-group input-group-lg divcenter red-input" style="max-width:600px;">
		<span class="input-group-addon"><i class="icon-email2"></i></span>
		<input type="email" name="widget-subscribe-form-email" class="form-control required email" placeholder="Enter your Email">
		<span class="input-group-btn">
			<button class="btn btn-default" type="submit">Subscribe Now</button>
		</span>
	</div>
</form>

and replace it with:

<div class="subscribe-widget" data-alert-type="inline">
	<div class="widget-subscribe-form-result"></div>
	<form id="widget-subscribe-form" action="include/subscribe.php" role="form" method="post" class="nobottommargin">
		<div class="input-group input-group-lg divcenter red-input" style="max-width:600px;">
			<span class="input-group-addon"><i class="icon-email2"></i></span>
			<input type="email" name="widget-subscribe-form-email" class="form-control required email" placeholder="Enter your Email">
			<span class="input-group-btn">
				<button class="btn btn-default" type="submit">Subscribe Now</button>
			</span>
		</div>
	</form>
</div>

This will definitely work fine. Let us know if we can help you with anything else or if you find any further issues.

T
triplewhatSep 21, 2016

Works, thanks!

Have the same question, or something new?

Sign in to the Canvas dashboard to reply or open your own topic. Canvas owners get direct help from the SemiColonWeb team.

Reply on the dashboard