dxbguy
Forum Replies Created
-
Forum: Your WordPress
In reply to: Review my websiteWhich article do you mean Kim?
Thanks for the reviews so far pplz..Forum: Fixing WordPress
In reply to: Subscribers to add images in new postsNot true, contributors cannot add images to their posts either unfortunately
Forum: Plugins
In reply to: [Plugin: Theme my login] User links not showing in widgetOk I figured it out already. Someone added the ‘//’ remarks in template-functions.php
Forum: Fixing WordPress
In reply to: Would love to have more registration options for Users…Yes, if anyone knows of any security measures we can take for the theme my login plugin, post them here. Right now, they register with a sidebar widget, they get email and login. Too easy!
Try yourself: https://www.theassociator.com
Forum: Fixing WordPress
In reply to: Contact form in author.phpYes share pls.
Forum: Plugins
In reply to: Members list / directory with extra fieldsRight now, I see the best option for you is to install Profiler and the Whisper plugin.
Forum: Plugins
In reply to: [Plugin: Profiler] How do I remove the “Joined date” from the directory?Click on edit in your installed plugins. Go to profiler.php
Search for join date in the script and play around with it. Use the trial and error approach. I already removed a few unwanted fields myself.
Make sure you copy the whole script first so it’s backed up.
Forum: Themes and Templates
In reply to: Help with theme ‘thecorporation’Thank u
Forum: Plugins
In reply to: Link profiler with authorOk nevermind, I just resolved this by adding this code to profiler.php
if ($_GET["author"] || substr_count($_SERVER["REQUEST_URI"], "author")){ add_action('wp', 'pf_redirect'); } function pf_redirect(){ global $wpdb; if ($_GET["author"]){ $user_name = $wpdb->get_var($wpdb->prepare("select user_login from " . $wpdb->prefix . "users where ID = %d limit 1", $_GET["author"])); } else if (substr_count($_SERVER["REQUEST_URI"], "author")){ if (substr($_SERVER["REQUEST_URI"], -1, 1) == "/"){ $uri = substr($_SERVER["REQUEST_URI"], 0, -1); } else { $uri = $_SERVER["REQUEST_URI"]; } $pos = strrpos($uri, "/"); $user_name = substr($uri, $pos + 1); } $url = "/users?user=$user_name"; header("Location: $url"); exit(); }