nickkos
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Category font sizeCan you post your “comments.php”
Forum: Fixing WordPress
In reply to: Blog Page Showing Page Namechange the loop on this page to a default loop…
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <?php endwhile; else: ?> <p><?php _e('Sorry, no posts matched your criteria.'); ?></p> <?php endif; ?>
Make sure that between
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
INSERT YOUR POST THEMING CODE HERE
<?php _e('Sorry, no posts matched your criteria.'); ?></p> <?php endif; ?>
Forum: Fixing WordPress
In reply to: Posts not aligning properly in IEIts just you …however there is a line that isnt displaying at the top for me…just make sure that it is all one element.
Forum: Fixing WordPress
In reply to: Blog Page Showing Page NameMake sure that your
<?php the_title(); ?>
is after the loop start.Forum: Fixing WordPress
In reply to: Hacker damageif you have access to the SQL database you should investigate the pages/posts are still there…and so are the hackers injections.
Forum: Themes and Templates
In reply to: Can I do this on my site, using WP?If your are not a developer
There are great plugins out there to create slideshows. Just go toplugins/add new/search
If you are a developer
For full control use JQuery/CSS to create your own. WordPressForum: Alpha/Beta/RC
In reply to: Internet Explorer 9 is not an "old version"I hate to say this but IE9 is bad. It’s not consumer bad it’s not technically bad but it is inferior to similar products like chrome and firefox. I lean towards chrome personally but the IE9 life cycle has now ended. And the internet is a bit better for it.
Forum: Meetups
In reply to: San Diego WordPress MeetupI am…i work for a development company in Kearny Mesa. Email me [email protected]
Forum: Themes and Templates
In reply to: Category.php And Custom Post Types<?php global $thisCat; $thisCat = get_category(get_query_var(‘cat’),false); query_posts(&post_type=Employees&post_status=publish&posts_per_page=10&cat=.$thisCat->cat_ID); // The Loop while ( have_posts() ) : the_post(); ?> <div id="employee"> <div class="pframe"><?php if ( has_post_thumbnail() ) { the_post_thumbnail( array(100,100) ); } ?></div> <div class="ename"><?php the_title(); ?></div> <div class="eposition">Manager</div> <div class="ecompany">Section A</div> <div class="email">[email protected]</div> <div class="ext">EXT# 1234</div> </div> <?php endwhile; // Reset Query wp_reset_query(); ?>
I tried this no avail
Forum: Themes and Templates
In reply to: Category archive sidebarSimply Use Widgets you can find it under appearance / widgets
Forum: Themes and Templates
In reply to: Category.php And Custom Post TypesI am struggling with this still its not working for me.
Forum: Fixing WordPress
In reply to: How Does Category Query Work?Not exactly what I’m going for…I want it to be dynamic…so I want that cat=3 to always = the pages cat id that your are on.
Forum: Themes and Templates
In reply to: Digifoto WordPress ThemeOn line 1192 of the layout.css
.hentry { width: 640px; float: left; background: #ffffff; box-shadow: 0 1px 1px #b9b9b9; }
Change it to
.hentry { width: 640px; float: left; background: #THE COLOR CODE U WANT GOES HERE; box-shadow: 0 1px 1px #b9b9b9; }
Forum: Themes and Templates
In reply to: [Minimatica] Help! I only want to use the front page!copy the index.php file and rename it to index.html…then take the css and image files and replace their URL’s with the correct non php based relative pathing.