Bryce Corkins
Forum Replies Created
-
Forum: Plugins
In reply to: [WP eCommerce] [Plugin: WP e-Commerce] Absolute garbage, rabbit hole of bugs.I’m using shoppplugn.net right now… seems to work pretty well.. it adapted to my theme right out of the box, which is nice. Checkout seems intuitive. Setup is easy.. though it only asked for my linkpoint store number… not my PEM file, or any other security credentials, so I’m not sure how well that’s going to work (I haven’t tried it yet). But they say linkpoint is supported, so I’ve got high hopes.
Also requires SSL, which I had never set up before.. but it’s probably a good thing that I’m using it.
Forum: Plugins
In reply to: [WP eCommerce] [Plugin: WP e-Commerce] Absolute garbage, rabbit hole of bugs.Agreed. Wasted almost a year trying to get it work properly… it was operational maybe half the time.
Forum: Plugins
In reply to: [WP eCommerce] [Plugin: WP e-Commerce] 3.7.8 broke my online storeI’ve had the same experience with 3.8, as well. The same issues carried over from 3.7, plus now my themes are broken. I supposedly had a premium support ticket with their developers, but after requesting my WP username / password, I never heard back. Been six months now.
I’m looking at either cart66 or https://shopplugin.net/… leaning towards shopplugin since I don’t think cart66 supports my linkpoint payment gateway.
WPEC is a nice idea, but I’ve lost thousands of dollars in sales to the fact that it will stop working spontaneously, and take several days to bring back online again. I’m fed up.
Forum: Plugins
In reply to: Set post Featured Image from embedded videoCheck out Video Thumbnails– works well for youtube.
This looks like it would work– except it’ll still scroll the window to the top, no? I needed something that would make LazyLoad think there had been a scroll, without actually scrolling anything.
Let me know if you come up with anything else, thanks.
Forum: Plugins
In reply to: Auto login after register and redirect to profile pageAlright, got it working. Here’s how, for anyone interested:
File theme-my-login-custom.php in the /plugins/ directory (not in /plugins/theme-my-login), with the following code:
<?php function tml_new_user_registered( $user_id ) { wp_set_auth_cookie( $user_id, false, is_ssl() ); wp_redirect( wp_get_referer() ); exit; } add_action( 'tml_new_user_registered', 'tml_new_user_registered' ); ?>
In the theme’s functions.php:
function show_first_name_field(){ ?> <input type="hidden" value="' . wp_specialchars(stripslashes($_SERVER['REQUEST_URI'])) . '" name="_wp_original_http_referer"/> <?php }
After registering, a user is now automatically logged in and redirected back to the page they clicked “register” from.
Thanks for your help, Jeff
Forum: Plugins
In reply to: Auto login after register and redirect to profile pageHmm.. this doesn’t work. Instead of logging the user in and redirecting to the referrer, it brings the user to the Log In page after registering. Then when the user logs in with the new credentials, it redirects them to the registration page again– in a seemingly infinite loop.
If I were registering a user by directing them to: /login/?action=register.. would it be possible to redirect a user after registration by passing a variable to the registration page? i.e. /login/?action=register?referrer=/path/to/referrer/page ?
Thank’s for your help
Forum: Plugins
In reply to: Auto login after register and redirect to profile pageUsing this function
<?php function tml_new_user_registered( $user_id ) { wp_set_auth_cookie( $user_id, false, is_ssl() ); wp_redirect( admin_url( 'profile.php' ) ); exit; } add_action( 'tml_new_user_registered', 'tml_new_user_registered' ); ?>
Is it possible to redirect to the referrer instead of the profile?
bump bu bum bump?
Forum: Plugins
In reply to: [Theme My Login] Theme My Login – Everything Happens ThriceThe content is:
[theme-my-login-page]
No template
Forum: Plugins
In reply to: [Theme My Login] Theme My Login – Everything Happens ThriceTheme My Login v. 5.1.6
Forum: Plugins
In reply to: [Theme My Login] Theme My Login – Everything Happens ThriceNo, this is just at the /login/?registration=complete (etc.)
https://www.evolutionarycollective.com/login/?registration=complete
Forum: Fixing WordPress
In reply to: redirect after first login onlyThe minus is correct, but the < should be a >
I did a neat little JQuery twitter-style dropdown welcome message to users who have just registered… I have a short tutorial on my site if anyone finds it useful:
https://www.brycecorkins.com/blog/2010/jquery-dropdown-message-on-first-login/
Forum: Fixing WordPress
In reply to: Disable Email / Password Confirmation to New UsersHey– sorry, got busy with other things and didn’t check this thread for a bit. Thank you so much for the plugin– it’s exactly what I needed!
Forum: Fixing WordPress
In reply to: Disable Email / Password Confirmation to New UsersNo.. it doesn’t have that option. I suppose I could switch mail to SMTP, and then just not enter server info. But I may need email functionality if a user needs a password reset or something.
I’m kinda surprised there’s no way to control what emails wordpress sends out.