pschena
Forum Replies Created
-
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] Same day events, how are they ordered?Thanks @omigosh. Makes sense, but when events are all day events, I just needed clarification.
Forum: Plugins
In reply to: [WooCommerce] Coupon Product Not ShowingAlso stuck with this problem. Anyone have a solution?
Forum: Plugins
In reply to: [Sticky Element] Adding spacer to top of sticky…This might do it for you.
Forum: Plugins
In reply to: [Sticky Element] Offset from top?Here is an edit that it made to fix this for a site that I used.
It was a simple as that!
Added it into the template and the buttons showed up.Thanks for the reply.
Forum: Plugins
In reply to: Ad Management Plug with Flash support?I have used this management tool for about a year in WPMU and seems to be pretty reliable and do what is required. This doesn’t support flash though.
There are a few others out there though.
Forum: Fixing WordPress
In reply to: Sandbox Theme and Drop Down Menu for IEForum: Plugins
In reply to: Selecting the most recent post for special treatmenthmmm, not sure that it does.
I am trying to modify single.php and that example looks like it would work for the list of posts in my limited experience.Thanks though!
Forum: Plugins
In reply to: Selecting the most recent post for special treatmentSo on further research
<?php $newest_post_id = $posts[0]->ID; ?>
does the job of identifying the most recent post.With this pearl, can someone tell why this would not work.
<?php $newest_post_id = $posts[0]->ID; ?> <?php if(the_ID == $newest_post_id) { echo 'yes'; } else { echo 'no'; ?>
Forum: Plugins
In reply to: Selecting the most recent post for special treatmentNo that won’t work.
No relationship between number of posts and the postID apparently.
Keep trying.Forum: Plugins
In reply to: Selecting the most recent post for special treatmentFor the more code savvy users, would it be possible to count the number of posts and return that variable for use in an IF statement?
Something like:
$MostRecent = HowManyPostsAreThere if (is_post('$MostRecent')) echo (blah blah) else (do nothing)
Would something like this work or be possible?
Not sure of the actual code involved.
Any help?Forum: Fixing WordPress
In reply to: related posts based on one tag- ordered by categoriesDid you have any luck with this?
Think I need something like that.Forum: Fixing WordPress
In reply to: 2.5.1 Upgrade: All Categories (Write Post Page)I had the same problem after the 2.5.1 upgrade.
Reading through comments, I noticed the mention of a modified classes.php file.I had modified mine to keep a current_page_item Selector working. (see link)
I restored to the original classes.php file and the categories returned in the post page.My problem is I need both functionalities!
Want to select categories, and also keep my current_page_item Selector.
Any clues from anyone?