grindflow
Forum Replies Created
-
Forum: Plugins
In reply to: Register Plus Reduxis it the method=”post’?
where would I modify that?
I need the style=’display: none; to go away…. or to say block…
firefox is crashing on me for some reason, using other element inspectors, i can disable the element.style { and it shows my page just fine
Forum: Plugins
In reply to: Auto-Login After Registration with Register Plus ReduxSorry, I forgot that I didn’t get this from the wordpress plugins…
some aussies were kind enough to write a plug-in and shared it through their site…. i remember it took a couple hours to get through this, and I usually don’t take modules from other repositories, in this case i did
here’s where i found it:
https://blog.coderaustralia.com/tag/wordpress-auto-login-and-redirectForum: Plugins
In reply to: Auto-Login After Registration with Register Plus ReduxI believe I am using wp-auto-login to achieve this….
Forum: Fixing WordPress
In reply to: 3.1.1 Update keeps failingi’m convinced that proftp is needed, but wonder if you or anyone knows why? we didn’t have problems before and i’ve gone through every menu on my server and have found no possible way to switch (from my feeble understanding anyway)…
basically, what’s so “heavy” about this theme-editor.dev.css?
Forum: Fixing WordPress
In reply to: 3.1.1 Update keeps failingSame problem, fresh install of 3.1 failing on update in same fashion through autoupdate
I read through esmi’s link….
seems that everyone is fixing this if they’re using cPanel/WHM to change their ftp server service, didn’t notice any mention of a permissions fix being successfuli don’t have the ftp option as we aren’t using cPanel
stuck at 3.1 for now
Forum: Plugins
In reply to: Auto login after register and redirect to profile pageI found an auto-login plugin, worked perfectly, no conflicts
https://blog.coderaustralia.com/wordpress-plugins/wordpress-auto-login
Forum: Plugins
In reply to: Auto login after register and redirect to profile pageI used the following code to create a successful registration>auto-login>redirect to page-x; however, this conflicted with Register Plus Redux plugin in two ways: 1) I am not receiving notifications of new users; and 2) New user profiles do not contain the custom field information that was required on registration
<?php function tml_new_user_registered( $user_id ) { wp_set_auth_cookie( $user_id, false, is_ssl() ); wp_redirect( 'https://mysite.com/congrats' ); exit; } add_action( 'tml_new_user_registered', 'tml_new_user_registered' ); ?>
How can i let the other plugin finish it’s business before this redirection begins…
Of all the modules for WP, it’s unusual that there isn’t a plugin for auto-login or reg redirect
Forum: Plugins
In reply to: Auto-Login After Registration with Register Plus ReduxI almost had this working with the following code that i found on theme-my-login, which I also use, but there was a conflict with RPR … the conflict resulted in none of my RPR field information making it to the user profile and i was no longer receiving my new user notifications…
i added this to the end of the register-plus-redux.php
<?php function tml_new_user_registered( $user_id ) { wp_set_auth_cookie( $user_id, false, is_ssl() ); wp_redirect( 'https://mysite.com/congrats' ); exit; } add_action( 'tml_new_user_registered', 'tml_new_user_registered' ); ?>