开发者 |
pk2000
Eero Hermlin grimmdude noahkagan marnietave |
---|---|
更新时间 | 2022年12月13日 09:17 |
捐献地址: | 去捐款 |
PHP版本: | 3.0.0 及以上 |
WordPress版本: | 6.1.1 |
版权: | GPLv2 or later |
版权网址: | 版权信息 |
Please check following:
You must use some MailChimp plugin what provides MailChimp submission form either by shortcode or Widget.
<form>
tags, they are included to notification e-mail automatically.<input name="Feedback" type="text" value="" />
. HTML content of Scrollbox will become something like this:
`
Sign up for our NewsletterOptions in "Actions after form submission" and "Auto close" section will work only with plugin own submission form and when "Actions after form submission"->"Send submitted values to email" is filled.
Sorry, but preview is not developed yet.
Adjust settings in "Scrollbox design"->"Popup box dimensions"
Best way to change some of plugin styles is with adding style definition to your own theme css file and overwriting plugin css values with !important keyword.
Example. Changing submit button border, text color and background color needs adding of following block into some of your theme css file:
input.stb-submit { color: navy !important; border: 2px solid black !important; background-color: whitesmoke !important; }
Avoid changing any plugin files under plugin directory, including css files. Such changes will get lost during upgrades. Overwriting with !important is sufficient.
Go ahead, "Thank you" field allows you to use HTML.
There's no "user-friendly" way at the moment, but it can be achieved by entering into ""Thank you" message" field this piece of HTML:
<script>window.location='http://yourdomain.com/path';</script>
(Of course use actual URL instead of 'http://yourdomain.com/path').
Inside box html, add following:
As button:
<button onClick="$DGD.closeAfterSubmit(jQuery(this).closest('.dgd_stb_box').attr('id'));">I'm already subscribed</button>
As regular link:
<a onClick="$DGD.closeAfterSubmit(jQuery(this).closest('.dgd_stb_box').attr('id'));" href="javascript:void(0);">I'm already subscribed</a>
"Element" field takes any single jQuery selector. General examples about them: