cupkate
Forum Replies Created
Viewing 6 replies - 1 through 6 (of 6 total)
-
Forum: Themes and Templates
In reply to: Live Wire Theme: white space under under footerFixed! Finally figured it out! Thanks, Andrew. 🙂
Forum: Themes and Templates
In reply to: Live Wire Theme: white space under under footerPhew, thought the gateway error was just me! XD
Forum: Themes and Templates
In reply to: Live Wire Theme: white space under under footerAndrew, the page isn’t live at the moment, but I can give you the css if that will help?
[Excessive CSS moderated, Please do not post that much CSS here. It is really not necessary. All we need is a link to your site.]
Forum: Themes and Templates
In reply to: Live Wire Theme: white space under under footerEsmi, I did plan to do that before asking here, but sadly the support forum is for paid members only. 🙁 Thank you all the same! 🙂
Forum: Fixing WordPress
In reply to: Comments not showing up on password protected posts. :(I had to replace the top piece of my comments.php file:
<?php // Do not delete these lines if ('comments.php' == basename($_SERVER['SCRIPT_FILENAME'])) die ('Please do not load this page directly. Thanks!'); if (!empty($post->post_password)) { // if there's a password if ($_COOKIE['wp-postpass_' . COOKIEHASH] != $post->post_password) { // and it doesn't match the cookie?> <?php return; } } ?>with
<?php // Do not delete these lines if ('comments.php' == basename($_SERVER['SCRIPT_FILENAME'])) die ('Please do not load this page directly. Thanks!'); if ( post_password_required() ) { ?> <p class="nocomments">Please enter password to view comments</p> <?php return; } ?>This is what worked for me, anyway! 🙂
Forum: Fixing WordPress
In reply to: Comments not showing up on password protected posts. :(And wouldn’t you know, I just fixed it! XD Very sorry, please ignore this post. *happy bunny* 🙂
Viewing 6 replies - 1 through 6 (of 6 total)