Muhammad Arslan
Forum Replies Created
-
Forum: Plugins
In reply to: [LoginPress | wp-login Custom Login Page Customizer] LoginPressHey @chengjianping
You can use custom CSS for this purpose.
Copy and paste your custom CSS code in LoginPress -> Customizer -> Custom CSS/JS -> CSS, publish and enjoy.
Although, Moving to the left will require CSS, I am writing a snippet however do change it to your taste.#login{ margin-left: 2%; } @media screen and (max-width: 767px) { #login{ margin-left: auto; margin-right: auto; } }
Have a nice day!
Forum: Reviews
In reply to: [LoginPress | wp-login Custom Login Page Customizer] Excellent plugin.Thank you for your great feedback. ???
Hey @montifit
LoginPress is ulilizing the same hook to limit the user activity on the site after login to certain time.
However, if you want to exclude certain role/s from session expiration then kindly review this documentation.
You can exclude certain roles from being expired and it will get the 14 days for those roles only.
Hope this helps.
Forum: Plugins
In reply to: [Custom Login Page Customizer] Can’t reset passwordIt seems that there is a temporary redirect on the https://workatflamingo.be/wp-login.php?action=lostpassword
Kindly temporarily deactivate the Login Customizer to see if the issue still occurs, if doesn’t do let us know.
If it does occur even after deactivating then there must be some custom coding in your environment which is interfering with reset password functionality.
Do let us know how it goes.
Forum: Plugins
In reply to: [Post Draft Preview] Not working for The Event CalanderAs you can see here the scenario: https://d.pr/i/u50YQs
I have only installed Events Calendar and its PRO version along with your plugin.
My WordPress version is 6.3 and i have also tested this on 6.2
The Events Calendar 6.1.3
The Events Calendar Pro?6.1.1
Do let me know if this can fixed, any help is appreciated.
Cool, Let us know if you need any assistance regarding this ??
Have a nice day!
Forum: Plugins
In reply to: [Post Draft Preview] Not working for The Event Calander@wpserved Is there any update on this one?
Hey @steveo123
You can use the
lostpassword_url
hook for this purpose.https://developer.www.ads-software.com/reference/hooks/lostpassword_url/
add_filter( 'lostpassword_url', 'loginpress_custom_lostpassword_url_cb', 10, 0 ); /** * * The custom URL for Lost password on wp-login.php. */ function loginpress_custom_lostpassword_url_cb() { return 'mailto:[email protected]'; // Change your mailto address. }
Have a nice day!
Forum: Plugins
In reply to: [Post Draft Preview] Not working for The Event CalanderAny Updates?
Hey @ferda2
Can you kindly explain your problem a bit as it is unclear about the label.
Are you talking about the button text or heading text?
Do let us know so we can guide you in the right direction
Looking forward.
Forum: Plugins
In reply to: [Post Draft Preview] Not working for The Event CalanderHey Apology for the late reply.
My WordPress version is 6.3 and i have also tested this on 6.2
The Events Calendar 6.1.3
The Events Calendar Pro 6.1.1
No other plugin is interacting as i have tested this on with all plugins disabled.
Looking forward for a solution ASAP.
Forum: Plugins
In reply to: [Custom Login Page Customizer] Width adjustmentHey @duber777
This issue is not replicated on my side, kindly contact us on our support forum so we can identify the issue in your environment.
Looking forward.
Forum: Plugins
In reply to: [Custom Login Page Customizer] register button/linkHey @heimoviktor
Apologies for the late reply.
Kindly share your login page URL so i can provide you custom CSS to make the register button more dominant.
Looking forward.
Forum: Reviews
In reply to: [Simple Social Media Share Buttons - Social Sharing for Everyone] Good jobHey @vireev
Thank you for the five star review.
We got you covered.
add_filter( 'ssb_buttons_output', 'add_pocket_button' ); /** * Adding Custom Social Network. * * @param array $buttons Selected social networks. * @return array */ function add_pocket_button( $buttons ) { $pocket_icon = '<svg enable-background="new 0 0 0 0" height="40" viewBox="0 0 24 24" width="40" xmlns="https://www.w3.org/2000/svg"><circle cx="12" cy="12" fill="#039be5" r="12"/><path d="m5.491 11.74 11.57-4.461c.537-.194 1.006.131.832.943l.001-.001-1.97 9.281c-.146.658-.537.818-1.084.508l-3-2.211-1.447 1.394c-.16.16-.295.295-.605.295l.213-3.053 5.56-5.023c.242-.213-.054-.333-.373-.121l-6.871 4.326-2.962-.924c-.643-.204-.657-.643.136-.953z" fill="#fff"/></svg>'; $link = get_permalink(); $buttons[] = '<button class="ssb-telegram-icon" onclick="javascript:window.open(this.dataset.href, \'\', \'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=600,width=600\');return false;" data- . esc_url( $link ) . '"> ' . $pocket_icon . '</button>'; return $buttons; }
Kindly copy and paste the following piece of code at the end of functions.php file of your theme and it will add a telegram button as well.
Have a nice day!
Forum: Plugins
In reply to: [LoginPress | wp-login Custom Login Page Customizer] Problem with Login