Valice
Forum Replies Created
-
Was this added to the free version yet? We installed the latest version and it’s still adding the new entries to the end of the sheet after choosing “Add row at top of sheet”
Forum: Plugins
In reply to: [Banner Alerts] Doesn’t workHi @nsantana –
Our sincerest apologies for the delayed response. We have now figured out how to receive notices from this support forum.
Thank you for trying out our plugin! The banner(s) should appear at the top of the page by default. If your website theme has a fixed or absolute positioned header, then it’s likely showing up behind the header element and so you’ll maybe need to apply a z-index to the banner-alerts container. We’d be happy to take a look as well if you want to share the URL where it’s installed. Also – here is a link with some style examples: https://www.banneralertsplugin.com/style-samples/
We can confirm that this issue is also happening on a site we manage. Versions and plugins listed below:
`
### WordPress Environment ###WC Version: 3.7.1
WP Version: ? 5.2.4 – There is a newer version of WordPress available (5.3)
WP Multisite: –
WP Memory Limit: 256 MB
WP Debug Mode: –
WP Cron: ?
Language: en_US
External object cache: –### Active Plugins (10) ###
Akismet Anti-Spam: by Automattic – 4.1.3
Elementor Pro: by Elementor.com – 2.7.3
Elementor: by Elementor.com – 2.7.5
Max Mega Menu: by megamenu.com – 2.7.2
ValiceWP: by Valice – 0.8.5
WooCommerce Square: by WooCommerce – 2.0.6 – 2.0.7 is available
WooCommerce Webship Integrated Quoting: by Rock Solid Internet Systems – 1.6 – Not tested with the active version of WooCommerce
WooCommerce: by Automattic – 3.7.1 – 3.8.0 is available
Yoast SEO: by Team Yoast – 12.4
WP Mail SMTP: by WPForms – 1.7.0Forum: Plugins
In reply to: [Sidebar Login] Unable to redirect to homepageIn the ajax handler, the value of the redirect URL is always what’s posted from the form. In our scenario, we don’t know where the user should be redirected to until they login and we know who they are (different roles), so we couldn’t set a specific URL in the form post.
The filter we applied is the exact filter WordPress applies on it’s own login form and it would be great if this fix could get rolled into the next version so we don’t have to modify your plugin and stick with your core version (and your updates) and not have a modified one.
Thanks!
Forum: Plugins
In reply to: [Sidebar Login] Unable to redirect to homepageHey There –
What we ended up doing (because we needed custom redirects by role) was adding redirect filters in the functions file. Found here: https://codex.www.ads-software.com/Plugin_API/Filter_Reference/login_redirect
Unfortunately they didn’t work when ajax is used (as in the case of this plugin).
So in order for those to work with this plugin, we added this line to the ajax_handler function, below the existing redirect filter logic –
$redirect_to = apply_filters( 'login_redirect', $redirect_to, null, $user );
It just makes it so the redirect URL can be customized like it can be using the normal login page.
It would be nice if this change was integrated as we really like this plugin.