Emma
Forum Replies Created
-
Thanks @hjogiupdraftplus! Good to hear that this issue is already under process. Much appreciated!
Hi @martinrtr,
I have checked your site’s source code where the tracking code for Analytify is inserted. Please search “gtag” and you can see yourself under the comment
<!-- This code is added by Analytify (5.4.3) https://analytify.io/ !-->
Also, I verified from Tag Assistant and it shows your Tag connected fine and hits are also sending.
Can you please check again and confirm the above? I’m looking forward to it so we can determine if there’s any issue.
Forum: Plugins
In reply to: [Custom Login Page Customizer] I can’t change font colour under login boxHi @kloader04,
Yes, please place this CSS in the Login Customizer > Customizer > Custom CSS and JavaScript > Custom CSS section.
body.login a, body.login #nav a{
color: #fff;
}Let me know if this works!
Forum: Plugins
In reply to: [Custom Login Page Customizer] Redirect custom link after loginGreat! You’re welcome
Forum: Plugins
In reply to: [Custom Login Page Customizer] Redirect custom link after loginHello @amministratore01pi,
This feature is not available in Custom Login Page Customizer, but you can use this code snippet in your theme’s functions.php file to achieve your goal:
function custom_login_redirect( $redirect_to, $request, $user ) {
????if ( isset( $user->roles ) && is_array( $user->roles ) ) {
????????// If the user is an administrator, allow them to go to the default admin dashboard
????????if ( in_array( 'administrator', $user->roles ) ) {
????????????return admin_url();?
????????} else {
????????????// Redirect all other users to a specific page
????????????return home_url( '/wp-admin/admin.php?page=wpbc-new' );
????????}
????}
????return $redirect_to;?
}
add_filter( 'login_redirect', 'custom_login_redirect', 10, 3 );This code will redirect all users to the URL specified except administrators. It will work if all other roles have access to this specific page that you mentioned.
Let me know if this works!
Glad to hear that you managed to resolve the issue. Thank you for your kind words!
My pleasure!?? Thank you so much for the kind words!
Hey @jason1995,
Don’t worry! We already have a good news for you. ??
We have already addressed this issue and resolved it. We will soon release an update so that Divi users do not encounter this problem.
Your patience is appreciated!
Hi @stevlandambrose,
Thank you for reaching out and for the detailed report. ??
I understand the issue you’re facing with the Logo URL. However, after testing on our end, we could not replicate the issue. In our environment, the URL is being added properly as expected:
<h1><a >https://mysiteurl.pro</a></h1>
That said, we’ll be conducting another round of QA to ensure that this doesn’t occur under specific conditions. If the issue is again not replicated on our end, we may need temporary access to your setup to investigate.
For now, instead of changing the code directly in the LoginPress plugin, you can use this filter in your theme’s functions.php file:
function custom_login_logo_url() {
return 'https://your-custom-url.com'; // Replace with your desired URL
}
add_filter('login_headerurl', 'custom_login_logo_url');Thanks again for your patience and for using LoginPress. We’re committed to ensuring everything works seamlessly.
Hi @a4jpcom,
I hope you are doing well.
I’m reaching out to let you know that we’ve successfully launched our latest release, version 3.2.1. This release includes the fix for the sub-directory/folder issue you highlighted.
If you have any questions, please feel free to contact us. We appreciate your patience and look forward to making further improvements to our product to provide an even better user experience.
We value your feedback on LoginPress, as it will greatly assist us in pursuing further achievements. Show your support here.
Thank you!
Sure! Thanks for the code snippet. We’ll add this to our documentation for Analytify Filters.
Forum: Plugins
In reply to: [Custom Login Page Customizer] Need to use 2FA security codeHi @mnst,
Login Customizer does not have 2FA. Enabling Wordfence 2FA will automatically show the 2FA form after you fill out the login form customized by Login Customizer, as both plugins are supported.
If you are facing any issues with the 2FA form not showing, please check your settings or contact Wordfence support for help.
Hi @eoinlennon,
We couldn’t replicate this issue on our end, and there doesn’t appear to be any conflict with the LightStart Maintenance Mode plugin.
Please contact us on our?support forum so we can check this issue.
Interesting! Thanks @generosus for your contribution.
I’m adding this to our roadmap so we can consider this later on. Thank you! ??
Hi,
In the
class-wpa-adminbar.php
file, here’s the code for Admin Bar menu options on lines # 39– 40, where these two menu options are added: “Dashboard” and “Refresh Stats.” The other menu options are shown through line#42 when the pro plugin and add-ons (Woo, EDD, Campaigns) are activated.Now the problem here is that if we make a filter for you, this could conflict with the current flow as you can see the filters are already applied according to the activated plugin. (line#42)
So, we can suggest you comment the line#42 and add other menu options manually after line#40 in the sequence you want. Following are the
$menus['xxx']
supported:$menus['analytify-dashboard&show=detail-realtime'] = ( 'Real Time', 'wp-analytify-pro' ) ;
$menus['analytify-dashboard&show=search-terms'] = ( 'Search Terms', 'wp-analytify-pro' );
$menus['analytify-dashboard&show=detail-demographic'] = __( 'Demographics', 'wp-analytify-pro' );
$menus['analytify-woocommerce'] = __('WooCommerce', 'wp-analytify-woocommerce');
$menus['page=edd-dashboard'] = __( 'EDD', 'wp-analytify-edd' );
$menus['analytify-campaigns'] = __( 'Campaigns', 'wp-analytify-campaings' );Let me know if this fulfills your current requirements.