bulletproof
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: 2.5 How to create a category template for a gallery ?arminbw i wish i could help you but i am kinda lost with the gallery code myself.
If someone has better knowledge please help us by answering those questions. I haven’t yet added a gallery to my site because i can’t find a solution to my problem.
Thank you.
Forum: Fixing WordPress
In reply to: 2.5 How to create a category template for a gallery ?Sorry to bump this but can someone help me? Still haven’t figured it out.
Forum: Fixing WordPress
In reply to: 2.5 How to create a category template for a gallery ?I didn’t want to start a new post about this but i would like someone to help me with what i am trying to do.
I am using this code filosofo provided above for my gallery category and it works just fine.
But i want some help adding it to my index.php as well because with my current code the thumb doesn’t work (just shows the gallery shortcode).That is because i am using thumbs and excerpts on my index.php for regular posts.
So if i understand right i have to add a if function exists code for the gallery php filosofo gave , so when i post something in my gallery it shows normally on fronpage as well.I am not sure how to do it .Can someone help me please with the code.
So in a few words i need php help to make this:
If function exists > filosofo’s code (gallery) > else my regular index.phpI hope someone can help me.
Thank you in advance
Forum: Plugins
In reply to: Is there a comment pluginWell after searching high and low i have found an awesome plugin and i was able to do all the editing in 30 seconds.
Here it is for anyone else that might look for one
https://www.schloebe.de/wordpress/admin-management-xtended-plugin/
Forum: Fixing WordPress
In reply to: Let’s talk about image uploads failing in 2.5For me the image upload problem got solved only after i added an htaccess file to disable mod security as suggested by wordpress in their sticky.
I am a bit worried about it though. Will disabling mod security cause any problems that i will have no clue about? Is it safe that i’ve done so?Forum: Plugins
In reply to: [Plugin: PhotoXhibit] Looks great but no photobucket supportThanks , it really sucks, i have noticed photobucket wasn’t supported by many plugins and i was wondering why. This answers my questions, thank you.
Not very cool of photobucket…|
Forum: Fixing WordPress
In reply to: Completely Lost All My Old Posts!I think that if you e-mail( submit ticket) your host support and tell them that you installed wp 2.5 and went wrong but you have a back of your wp 2.3.3 database they should be able to help you and restore it for you. Hang in there.
Forum: Themes and Templates
In reply to: Halp! Dang Divisions Eatin’ Me Site!You must reduce the width of your main content column in the css.
For example if i want to have a 3 column theme my css would be like ( not really but anyway just giving you an idea of whats wrong):
content: 900
right column: 200
left column: 200
center: 500Basically just do some math by looking at your css content width and reduce the width of your center main content. That should fix it.
Forum: Fixing WordPress
In reply to: How to have recent Post for each category?‘<?php
$postslist = get_posts(‘numberposts=10&order=ASC&orderby=post_title&category=1‘);
foreach ($postslist as $post) :
setup_postdata($post);
?>
<div>
<?php the_date(); ?><?php the_title(); ?>
<?php the_excerpt(); ?>
</div>
<?php endforeach; ?>’where bold add the category number you want to show.
Forum: Fixing WordPress
In reply to: Image upload , paste problems, media not workingforgot to say i have disabled ALL plugins before i upgrade. None is active.