Forum Replies Created
-
In reply to: Login/Logout Not Appearing on Pages
You’re right – I think when I hid the top header it also removed the Login/Logout buttons. Do you know what code in the PHP file controls these buttons? I know I didn’t delete any of the PHP code, I just applied display:none to the CSS file.
In reply to: Login/Logout Not Appearing on PagesI also just noticed that when you click login, there is no link to Register and the only way to get to the Register form is the try to login with a random user name/password.
In reply to: Reply to Topic Link Not WorkingI figured it out – $path or $page must be variables used by bbPress, so I changed their names and it works now. Thanks!
In reply to: Reply to Topic Link Not WorkingI figured out what the problem was, although I’m not sure how to fix it (I’m still learning PHP). The problem is this PHP code which I have in an include (along with all my code for the site’s navigation):
<?php
// Extracts the file name from the file name
$path = $_SERVER;
$page = basename($path);
$page = basename($path, ‘.php’);
?>
The code extracts the the file name from the file to select the current tab in my navigation. When I remove this section of code, the Reply form appears and works as normal. Is the problem having PHP code in an include file?
In reply to: Reply to Topic Link Not WorkingI am comparing the two right now to see if I deleted something important. Do you know which php file I should be looking in? I did not integrate the forum with WordPress and am using the latest version of bbPress (I just installed it a few days ago). The only plugins I am using is the Akismet plugin. I guess I must have deleted something although I’m not sure what!