x30marketing
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Mega Menu] Darken/ overlay background when menu is activeSorry, I thought you were using Flatsome
As long as you have “Add overlay on hover” turned on in Header > Header Bottom in the customiser – it works.And of course you are using Flatsome navigation elements.
You can build a mega menu in Flatsome, you dont need a plugin.Good Luck
Forum: Plugins
In reply to: [WP Mega Menu] Darken/ overlay background when menu is activeIf you are using a child theme add the following
.ux-body-overlay { background-color: rgba(0, 0, 0, 0.75) !important; }This is a transparancy, but you could make it a solid colour.
Hi Webtoffee support,
Regarding my previous post, I’ve finally managed to run both scenarios, images posted below
WebToffee Installed
https://snipboard.io/njiSk8.jpgStandard WordPress
https://snipboard.io/mb0Rai.jpgOn a subtotal line of £29.98 with a 10% discount
When WebToffee Smart Coupon is installed – the discount is £3.01
When pure Woocommerce coupon is active – the discount is £2.99I’ve tested it with Wholesale Pro as that is a requirement in our store.
So I can confirm that your plugin is adding things up incorrectly.Thanks
We are also getting 0 posts added for a feed at
https://www.google.com/alerts/feeds/02784764758504231522/5125065004950776448I’ve tried a multitude of settings. The feed checks out, its a valid ATOM feed
https://validator.w3.org/feed/check.cgi?url=https%3A//www.google.com/alerts/feeds/02784764758504231522/5125065004950776448Any help appreciated.
Forum: Plugins
In reply to: [Custom Contact Forms] Email notificationI got fed up of this problem and put a work around in place.
Put the code below into a PHP file and upload to your server in an accessible location.
<?php //Email information $admin_email = "chris@yourdomain.co.uk"; $email = "website@yourdomain.co.uk"; $subject = "Website Enquiry"; $comment = "Form has been triggered"; //send email mail($admin_email, "$subject", $comment, "From:" . $email); function Redirect($url, $permanent = false) { if (headers_sent() === false) { header('Location: ' . $url, true, ($permanent === true) ? 301 : 302); } exit(); } Redirect('http://www.yourdomain.com/thankspage/', false); ?>Setup the form to redirect to the page you’ve uploaded for example http://yourdomain.com/process_form.php
The page will send you a notification that the form has been triggered and then redirect to a URL you define eg a thanks page.
You’ll need to login to see the submission, but at least you’ll get some form of notification to action the event.
Saves having to recode all your forms.
Hope it helps