equaldesign
Forum Replies Created
-
Forum: Themes and Templates
In reply to: How do I change the color of JUST my comment link?Sorry I have mis read. Use the code above and add this to your style sheet.
.commenttext a { color: #ffffff; } .commenttext a:hover { color: #f1d6c3; }That should do it
Forum: Themes and Templates
In reply to: How do I change the color of JUST my comment link?Is there a link to a site where I can take a look?
Forum: Themes and Templates
In reply to: List of Blog Titles OnlyThats working for me (the first bit off code), are you sure you have the code in correctly. Just add it before a loop.
Forum: Themes and Templates
In reply to: How do I change the color of JUST my comment link?Replace
<commentext>and</omenttext>with the following:<span class="commenttext">stuff in here!</span>then add this to your stylesheet:
.commenttext { color: #ffffff; } .commenttext:hover { color: #f1d6c3; }Forum: Plugins
In reply to: Custom template implementationMaybe this would work:
<?php query_posts($query_string.'&posts_per_page=-1'); while(have_posts()) { the_post(); <!-- put your loop here --> } ?>that will generate the latest post and then in the right column to generate the next latest post your could include:
<?php query_posts($query_string.'&posts_per_page=-1&offset=1'); while(have_posts()) { the_post(); <!-- put your loop here --> } ?>Note the &offset. I haven’t tried it but give it a go.
Forum: Themes and Templates
In reply to: List of Blog Titles OnlyWhy not try this code:
<?php $current_month = date('m'); ?> <?php query_posts("monthnum=$current_month&order=ASC"); ?> <!-- put your loop here -->then for the next month try this:
<?php $current_month = date('m'); ?> <?php query_posts("monthnum=$current_month&order=ASC&offset=1"); ?> <!-- put your loop here -->then the next this:
<?php $current_month = date('m'); ?> <?php query_posts("monthnum=$current_month&order=ASC&offset=2"); ?> <!-- put your loop here -->and so on adding 1 to the offset function each time. I have not tried it but its worth giving it a go.
Forum: Fixing WordPress
In reply to: WordPress errorIf you have upgraded have your overwritten your old wp-config file with the correct username and password on for the database etc. It is easily done. Open up the wp-config.php file that is in the root of the wordpress folder and check the details VERY carefully. Sorry to sound a little off but 9.9 times out of 10 there is a mistake with the details.
Forum: Fixing WordPress
In reply to: Approve postWell that works for me. I have just created a test user and assigned then to the role of contributer. I then logged in as the test user and then clicked on write post. I wrote a test post and then where you would normally click publish, the button says submit for review. I clicked this and then logged out and then logged back in as admin
In the list of posts their was a pending review post that i could open and then click publish. So that worked a treat for me.
P.S. is there are need for that language?
Forum: Plugins
In reply to: Instinct cart to paypal failureForum: Themes and Templates
In reply to: Not Able to Comment on BlogSo you have added new themes? Are these themes from the WordPress theme directory, have you made them yourself?
Perhaps the themes do not have the commenting code necessary to handle comments?
Forum: Fixing WordPress
In reply to: How to show how many comments after each post<?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?>That is from the default template and should do the trick.
Forum: Fixing WordPress
In reply to: Approve postI think that if you set all users to contributer role they can write posts but not publish them. That means that an admin would have to publish the posts they have written.
Forum: Fixing WordPress
In reply to: Problem adding a sidebar to single post viewA quick look at the code for your single.php file tells me that you have 4 opening <div> and 5 closing </div>. These should be equal:
Opening <div> are:
<div id="PageBody"> <div id="Content"> <div class="post" id="post-<?php the_ID(); ?>"> <div class="entry">Then you have five closing. Two at the bottom that have end “pagebody” and end “page container”on them and then three underneath all the else if stuff.
That will need correcting.
Forum: Themes and Templates
In reply to: Sidebar helpThat is very messy code with it being in tables. I always code in divs using CSS to style. Anyway it seems as though you have got a class of .sidebars on your sidebar2. I would remove that class.
Then to style the bit that is categories (first block on right sidebar) you should be able to create a class named widget_categories.
Then if you want to style elements of that you can for example:
.widget_categories ul .widget_categories ul liand so on.
Forum: Fixing WordPress
In reply to: plugin form with image uploadThere is a user photo plugin out there somewhere. It works for others but I have never had any joy with it. Perhaps you could try that.