Posts: 48
Threads: 11
Joined: Dec 2013
Posts: 48
Threads: 11
Joined: Dec 2013
I moved the first line so it's in the middle between these two lines like this
PHP Code:
<?php global $cmtx_default_name, $cmtx_set_name_value; ?>
<?php if ($cmtx_set_name_value) { ?>
<?php if (isset($cmtx_set_name_value) && !empty($cmtx_set_name_value) && ...
The very end is the last thing in the entire file
PHP Code:
<?php } else {
echo 'You must be logged in to post a comment.';
} ?>
There's something wrong cause everything stops here (my footer which is below the whole comment link doesn't get accessed
FOUND A PROBLEM - The line <?php if ($cmtx_set_name_value) { ?> is inside a function so the {from the function name is shut off so I moved the line out. Now I moved it to the top where I first put it
the line Add Comment appears whether I'm logged in or not and that is all - doesnt continue to myfooter line in my file.
Then I thought - AHH - you mean the <FORM> so I put them right inside. Then I tried right outside. Same problem. It "thinks" it works but doesn't display anything.
Sorry this is so long. I've really spent hours and hours trying - I really need help
Where does it decide that if there's no loggedin name to use anonymous?
Maybe that will be a better place to do keep out of this (I don't even need the line about logging in. If it's before form.php, I can just not go to form.php
Thanks