deckster0
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Being logged out automatically all the timeI don’t think that wordpress is the cause.
If you’re using e.g firefox in “private browsing mode”.
Firefox won’t save any cookies which gives you an automatic logout since wordpress uses cookies for authentication.So check if you have a some kind of program or addon installed to your browser that deletes cookies, cache etc, after x amount of minutes.
Forum: Fixing WordPress
In reply to: *sigh* Been fighting all day …Forum: Fixing WordPress
In reply to: Admin CP Messed up all whiteIf it just suddenly happened, it could just be your hosting service or your internet.
If the problem doesn’t resolve after a hour or two, try checking the main css for the dashboard and see if there’s anything wrong with it.
Also, deactivate any plugins that might “distort” the dashboard.Forum: Fixing WordPress
In reply to: *sigh* Been fighting all day …The problem could be:
I assume that you’re talking about the xml file of posts.
So the problem could be the upload limit set for wordpress.Check the filesize and then the import/upload limit.
If the filesize exceeds the import/upload limit, you will have to manually “slice up” the xml file and then upload it in smaller parts.Forum: Fixing WordPress
In reply to: Comment author url doesn’t workProblem was that, after I inserted
<?php comment_author_url(); ?>
into the template, the url didn’t show up.The answer:
The url will only start showing up along with the new comments from the moment you add thecomment_author_url()
Forum: Fixing WordPress
In reply to: Importing my blog after ‘famous 5 min intsall’Try to create the /home/a4936600/public_html/wp-content/uploads/2010/01
folder manually. It’s just a CMOD problem I guess.Forum: Fixing WordPress
In reply to: Multiple Loops?Oh yeah, problem solved ??
Forum: Fixing WordPress
In reply to: If custom field existsI somehow got it to work. Resolved..
Forum: Fixing WordPress
In reply to: Getting rid of WordPress footerGo to appearance then editor. Edit the footer.php
Forum: Fixing WordPress
In reply to: MASS VISIT?I just went ahead and banned the ip.
Forum: Fixing WordPress
In reply to: MASS VISIT?82.136.212.64
Looked it up, no idea.
Forum: Fixing WordPress
In reply to: Do not display only in certain categories.Problem solved!
@esmi That wasn’t really the code I was looking for.
I suck at explaining so:
<?php if(is_category('54','5','6')) {?> [button code goes here] <?php } else {?> [default button displayed] <?php }?>
Forum: Fixing WordPress
In reply to: Do not display only in certain categories.Okay, Ill explain a bit more.
I have 100 categories and I want to display a big “click me” button on top of each archive page, except for in the categories, for example(ID): 54,5 and 6. How am I supposed to accomplish that?
Forum: Fixing WordPress
In reply to: How To Do A Sidebar Background Color With No White Spaces?Change the CSS from #sidebar-1 {background:#7BCDC9;} to
#sidebar-1 {background:#7BCDC9; height:800px;} You can change the size of height (800px) to anything you want.Forum: Fixing WordPress
In reply to: How do I change submit button in Thesis?Could you start off by giving us a link to your site?