Comments 4John Doe started the conversationOctober 2, 2021 at 9:56amJust updated to v1.9. How do I create a newsletter and use it on the site? There's no Create button in the backend. See attachment.Thanks. 252The repliedOctober 2, 2021 at 10:23amHi John, data of newsletter is taken from newsletter form in frontend. In Resido, we dont dont have newsletter. So we dont active this plugin as defaultThanks 4John Doe repliedOctober 2, 2021 at 10:37amAnd how do I create a newsletter form for the frontend? 252The repliedOctober 2, 2021 at 12:43pmSomething like that <form target="_blank" action="{{ route('public.newsletter.subscribe') }}" method="post" class="subscribe_form form-subcriber newsletter-form relative mail_part" action="{{ route('public.newsletter.subscribe') }}"> @csrf <input type="email" name="email" id="newsletter-form-email" placeholder="{{ __('Enter your email') }}" class="placeholder hide-on-focus" onfocus="this.placeholder = ''" onblur="this.placeholder = ' Email Address '"> <div class="form-icon"> <button type="submit" name="submit" id="newsletter-submit" class="email_icon newsletter-submit button-contactForm"> <i class="ti-email color-white"></i> </button> </div> <div class="mt-10 info"></div> @if (setting('enable_captcha') && is_plugin_active('captcha')) <div class="form-group"> {!! Captcha::display() !!} </div> @endif </form> Sign in to reply ...
Just updated to v1.9. How do I create a newsletter and use it on the site? There's no Create button in the backend. See attachment.
Thanks.
Hi John, data of newsletter is taken from newsletter form in frontend.
In Resido, we dont dont have newsletter. So we dont active this plugin as default
Thanks
And how do I create a newsletter form for the frontend?
Something like that