Ratch
Forum Replies Created
-
Forum: Plugins
In reply to: [EthPress - Web3 Login] Trigger Popup into buttonThanks @ethereumicoio
Could you also take a look at Trust Wallet. It doesnt seem to work anymore, no redirect once signed.Forum: Plugins
In reply to: [EthPress - Web3 Login] Trigger Popup into buttonHi, I understand what you are saying, in pro, I can customise the text but one time.
I want to be able to have a button and add custom text to that button to trigger login.Amazing. Thank you and appreciate you taking my feedback/questions.
Looking forward to potential updates ??Yeah that login idea is great.
I don’t have a wp-login page anymore, its completely customised to a specific page. Used the functions and permanent redirects (safely).
I’ve completely disabled admin logins and use server end if any issues to enable, i think more experienced devs/site owners will also know this.
More on the security side of it all, inc disabling wp access for anyone bar an admin. Could even go one further and require multisig login for admins lol but thats pushing it.
Reason for my only wallet login requirement was for just that, data protection on emails, password security etc while only requiring a sig from the user for registration/login.
GDPR and all that too.- This reply was modified 1 year, 9 months ago by Ratch.
Hey @davisshaver, just wanted to give you an update which could help others using the plugin, from my experiences and messing around with the code and customisation.
To use the block (Login button) on Elementor or Divi page builders, you can use a plugin called: Reusable Blocks Extended. This will allow you to create a custom block with shortcode that you can drop in anywhere on your site.
You can also create a class for this individual shortcode to then customise styling, spacing etc along with the button.
it’s totally free to use and has no errors or issues. All up to date as of February 2023.
Another tip:
Autoptimize, WP Fastest Cache and WP Rocket really effects the functions of the plugin.
You can use them but the images for the wallets and the triggers no longer work if you minify anything. So avoid these, or alternatively customise the plugin so it’s excluded from cache/minification.
I tried with Autoptimize but there was absolutely no way of if being active and the Rainbow wallet popup working properly. I tried many custom codes.
Sole Login using Rainbow Wallet ( no email or password needed, just web).
Add a function that redirects wp-admin/wp-login to a custom login page.// Disable wp login
function custom_login_page() {
$new_login_page_url = home_url( '/**ADD YOUR PAGE SLUG HERE' ); // new login page
global $pagenow;
if( $pagenow == "wp-login.php" && $_SERVER['REQUEST_METHOD'] == 'GET') {
wp_redirect($new_login_page_url);
exit;
}
}
if(!is_user_logged_in()){
add_action('init','custom_login_page');
}
Anyway, just my experiences and update on how to use the button as a shortcode.
Have a great day and hope this info helped.- This reply was modified 1 year, 9 months ago by Ratch.
- This reply was modified 1 year, 9 months ago by Steven Stern (sterndata).
- This reply was modified 1 year, 9 months ago by Steven Stern (sterndata). Reason: format
I will try and figure out how to add the block to a elementor based page template. I’ve tried a few ways but didn’t work.
Will keep trying.Forum: Plugins
In reply to: [EthPress - Web3 Login] Wallet Connect IssueThanks
Forum: Plugins
In reply to: [EthPress - Web3 Login] Wallet Connect IssueFixed. Please close.
Caching error.Forum: Plugins
In reply to: [EthPress - Web3 Login] Individual PopupsFixed. Thanks
Forum: Reviews
In reply to: [Beautiful Cookie Consent Banner] Does the jobupdated.
Also, trying to get the login button to work on an elementor page. ??
Perfect. That little bit of info helped.
In regards to the shortcode, you can ask ChatGPT to create the shortcode function for you and then implement as part of the plugin. This offers a much greater feature as can be used as a header trigger login popup.Forum: Plugins
In reply to: [EthPress - Web3 Login] Individual Popupsi guess your not interested in responding to your paying customers