clanderf
Forum Replies Created
-
Wait.
Sorry, I didn’t have the updated plug-in (Register Plus Redux).
Shame on me.
This is not currently how the plug-in is working. I have admin verification enabled (and email verification disabled), and it’s sending my custom new user email BEFORE admin verification (rather than waiting until verification).
After verification, it’s sending a separate verification email that I cannot customize unless I go and change the code of the plugin (and I don’t know PHP code well enough to do this).
So, I just wanted to let you know that how you described the email notification system for admin-approved users doesn’t seem to be how the plug-in is currently working.
Unless I’m mistaken…
Forum: Fixing WordPress
In reply to: Need to display URL of Current User's Website (from their Profile)Nevermind! I figured it out. I just needed to install the Exec-PHP plugin, which allows one to execute PHP script in WordPress pages.
It worked great.
Thanks again for all of your help, keesie! I’m going to go ahead and close this issue now.
Forum: Fixing WordPress
In reply to: Need to display URL of Current User's Website (from their Profile)Any idea what the problem might be, keesie?
I feel like I should maybe close and re-post this issue because it’s really a new issue altogether, which is “Why won’t this PHP script work when pasted into a WordPress page, but it seems to work when posted in the header php template?”
Forum: Fixing WordPress
In reply to: Need to display URL of Current User's Website (from their Profile)Damn it. Not sure why the link paste function isn’t working. Here’s the link:
Forum: Fixing WordPress
In reply to: Need to display URL of Current User's Website (from their Profile)Forum: Fixing WordPress
In reply to: Need to display URL of Current User's Website (from their Profile)All righty. Here we go.
Here is the link to the WordPress page template that we are using. We have a few different page templates, but the code isn’t working on ANY of them, and this is the page template where we need to place the code to have the link with the user’s url, so this is the page template that we’re concerned about really.
As I said, the code is working in the header but not in the actual WordPress pages. Thus, I figured that it might be useful to paste in the code for our header as well, in case there’s something in the header that is clearly allowing the code to work in the header, or perhaps there’s some kind of code in the header that is making the page template malfunction. So here’s the code to my header as well:
Forum: Fixing WordPress
In reply to: Need to display URL of Current User's Website (from their Profile)So strange. I pasted that same exact code in a blank page that uses every page template I have, and it still won’t work correctly.
Check out how it displays: https://www.vinovirtuoso.com/link-test-page
However, when I paste it as a header link, it works just fine.
I think there must be something in my page templates that is screwing it up once the code rests in an actual page. Or something in my header template that specifically makes it work correctly…
Forum: Fixing WordPress
In reply to: Need to display URL of Current User's Website (from their Profile)It doesn’t show the link at all and it’s not clickable. It just shows part of the code as actual text. In fact, it just says: “user_url) : ?>”
I tried the code that you gave me and put it in the header php template, so I know that it works just fine in php template. I guess I can just create a custom page template. Just not sure how to integrate the code into the body of the page doing this (I just know how to place php code in the header/footer/sidebar…not the body of the page).
I’ll play around with it and will figure it out though.
Thanks a ton.
Forum: Fixing WordPress
In reply to: Need to display URL of Current User's Website (from their Profile)Hmm. Well, this page that I’m trying to paste the code into is actually in WordPress (it’s a WordPress page–not an outside HTML page).
Do I still need to try this method out or is there an easier way if it’s a WordPress page?
I guess I could just create a new php template page with this php code in it?
Thanks again for all your help.
Forum: Fixing WordPress
In reply to: Need to display URL of Current User's Website (from their Profile)This code only displays correctly when it’s placed in a template file (php). But we need to actually place it in the body of a page (html). How does one do this? I know this is a pretty rookie question, but I’m a rookie.
I just tried putting it in div tags in the HTML of one of my pages, but it isn’t displaying correctly. Here’s how I placed it into the body of one of my pages:
<div> <?php global $current_user; get_currentuserinfo(); if($current_user->user_url) : ?><a href="<?php echo $current_user->user_url; ?>">HERE</a><?php endif; ?> </div>
Forum: Fixing WordPress
In reply to: Need to display URL of Current User's Website (from their Profile)Worked perfectly! You’re my new favorite person.
Thanks a ton. I REALLY appreciate it.
Forum: Fixing WordPress
In reply to: Need to display URL of Current User's Website (from their Profile)Okay, let me try it out real quick.
Forum: Fixing WordPress
In reply to: Need to display URL of Current User's Website (from their Profile)Any help?? I’d really appreciate it. I’m dying here.
Forum: Fixing WordPress
In reply to: Need to display URL of Current User's Website (from their Profile)Whoops. Here are the 2 pieces of code that tried to use.
<a href="<?php global $userdata; get_currentuserinfo(); echo(' . $userdata->user_url . '); ?>">HERE</a>
<a href="<?php echo get_currentuserinfo('$userdata->user_url'); ?>">HERE</a>