evilbeet
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Collecting bug information for Version 2.0Hi Devolux!
I really like the theme and I’m trying to use it on my site https://www.zeldalily.com, but I’m running into some issues and was hoping you can help me.
1) In the sidebar, the theme seems to always insert a hard return after anything with a link in it. This is not ideal and makes the layout look strange. How can I remove this?
2) Is there a way to make the nested comment reply functionality work? That’s really important to the audience and it doesn’t seem to be working here.
Thanks!
Forum: Fixing WordPress
In reply to: Code to Run Specific Ads on Specific PostsOh, thanks, I didn’t know about this is_single() function. I used the code you suggested and it’s working now. Thank you SO much, I really appreciate the prompt responses!
Forum: Themes and Templates
In reply to: What’s the syntax to show recent posts with date?Once you’re pointing to the post object, you can get time date and month using this:
<?php the_time(‘F jS, Y’) ?>
Forum: Themes and Templates
In reply to: How do you make an area editable?Their code is in your page source:
<div class="row-3-row-2"> <table cellpadding="0" cellspacing="0"> <tr valign="top"> <td class="row-3-row-2-col-1"><p>This is a sample.</p></td> <td class="row-3-row-2-col-2"><p>This is a sample.</p></td> <td class="row-3-row-2-col-3"><p>This is a sample.</p></td> </tr> </table> </div>
`
Just find those lines in your code and change the text.Forum: Installing WordPress
In reply to: At a loss – blank screenSorry I can’t be much help here, but you may want to try manually wiping out the whole WP install (after you’ve saved your wp_content folder, etc) and reinstalling an older version of WP that was working for you. That might get you up and running for now until you can figure out the problem.
Forum: Fixing WordPress
In reply to: Brand New to WordPress — HELP! Re: adding AdsI’m not sure what you mean exactly — you should be in the Sidebar.php code and from there you can basically put it anywhere.
What I’d do is just play around putting it different places and see what shows up right on the screen. That’s how you’ll learn anyway. Good luck!
Forum: Themes and Templates
In reply to: Getting Galleries Within a Page to Link to Image.phpI had a WP guru look at this last night and he fixed it. For anyone else who stumbles on this thread later, this was the solution:
For some reason, there’s a line of code in the <head> section of Pages
like this:<style type=”text/css”>.navigation{display: none;}</style>
It’s probably part of some theme coding or a plugin.
The ‘display: none;’ part makes the navigation block invisible. The
code doesn’t appear on Post pages, which is why you could see the nav
of those posts / pages.I could probably dig around and find some way of stopping that code
from appearing at all – but that might take a while to do. And we like
quick & easy fixes more, don’t we?So I added ‘display: block;’ to the
<div class=”navigation”… part of your image.php template. That
overrides the other code.Forum: Fixing WordPress
In reply to: Brand New to WordPress — HELP! Re: adding AdsGet the code from CJ and place it in sidebar.php if you want it to be in the sidebar.
You can access sidebar.php using an FTP client or via the WP dashboard by going to Appearance->Editor. If you’re doing it via the WP dashboard, you’ll need to make sure you have write access (if you don’t, ask your host to give it to you).
Forum: Fixing WordPress
In reply to: Comments Table Getting Overwhelmed — Is There a Fix?For what it’s worth, I recently installed the DB Cache plugin and that seems to be helping a lot. In case anyone stumbles on this thread later …
Forum: Themes and Templates
In reply to: Getting Galleries Within a Page to Link to Image.phpI just spent some more time looking at this, and what’s strange is that the code for the previous/next images is showing up in the source code for the page-based galleries, it’s just not showing up on the actual page. Here’s an example:
https://evilbeetgossip.film.com/nicole/90526x7_richie_b-gr_02/
If you look at the source code for this, it looks as though it’s showing the thumbnails for previous/next images, but they never show up on the page.
In contrast, this image — originally embedded in a post rather than a page — shows those images properly:
I’m not seeing any difference in the way the source code handles those thumbnails. Why do they show up on one but not the other?
Forum: Fixing WordPress
In reply to: Ads Between PostsYou need to use a Boolean OR.
I’m thinking if you did <?php if ($count == 1 || 3 || 5) : ?> it would work, but I’m not 100% sure how Boolean logic works in PHP.
Forum: Fixing WordPress
In reply to: Comments Table Getting Overwhelmed — Is There a Fix?Bump?
I’m still seeing this problem.
Forum: Fixing WordPress
In reply to: 400 Bad Request Error in FirefoxClearing cookies fixed it, thanks!
Any idea what causes these errors in the first place?
Thank you, Pontifus! That fixed it!! I appreciate your help!!
Forum: Fixing WordPress
In reply to: Writing posts to page other than homeYou need to write a “Page” rather than a “Post.”