froman118
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Blogroll problem after upgrading to WP 2.1Yeah that all has to go, and you’ll probably have to update your stylesheet to match what the new function outputs. Go yell at your theme’s author for not using the standard wp functions and hope he’ll update it.
If you at least want it to work replace all of that with <?php wp_list_bookmarks(); ?>, there should be a after that block of code to that will need to go to.
Forum: Fixing WordPress
In reply to: Edit Blogroll Categories Tab Missing in 2.1?As long as the theme uses the standard WP functions then yes. For versions previous to WP 2.1 it was necessary to modify a few core files but with the new 2.1 function that is no longer necessary.
Forum: Fixing WordPress
In reply to: Edit Blogroll Categories Tab Missing in 2.1?I think they moved these ordering options into the template functions themselves. The new wp_list_bookmarks is pretty flexible and lets you set different options for ordering.
All the parameters can be found here, http://codex.ww.wp.xz.cn/Template_Tags/wp_list_bookmarks.
If you are interested in being able to specify an explicit order for your blogroll links and categories I have a plugin that let’s you do this quite easily, My Link Order
Forum: Fixing WordPress
In reply to: Blogroll Links/Categories Prob After 2.1 UpgradeTry updating the function to the following:
wp_list_categories(‘orderby=order&hide_empty=0&title_li=’);
If anyone is wondering what the “my_order” and “order” sort parameter values are, they are used by my plugin My Category Order which lets you manually set the order in which the items will display. http://geekyweekly.com/mycategoryorder/
Forum: Fixing WordPress
In reply to: insert/edit image popupThose different alignment values are standard HTML values for the “align” attribute of the img element. Can find more info about each value here:
Forum: Installing WordPress
In reply to: 2.1 Blogroll ProblemLike Trent said, use the standard template functions and you should be fine. Any custom link queries that were written before 2.1 will break and error out because the linkcategories table no longer exists.
Forum: Fixing WordPress
In reply to: Links from the Links ManagerTry replacing the text of that SQL query with the following:
SELECT * FROM $wpdb->categories where link_count > 0
The linkcategories table went bye bye in 2.1 so I’m expecting to see this question pop up a lot.
Forum: Fixing WordPress
In reply to: Google Docs to WordPress publishingI’ve got the same problem jcontonio except I probably won’t see the posts for 8 hours. WP stores 2 timestamps in the database, one of the is GMT and that is off 8 hours, the same as my +8 offset (Pacific). Something is going wrong along the line.
Forum: Plugins
In reply to: How to arrange the category by my self?or you could use my plugin, My Category Order, that lets you set an explicit order rather than being stuck with ordering by id or name.
Forum: Plugins
In reply to: New Plugin: Explicit Category SortForum: Fixing WordPress
In reply to: Changing Link Category orderI created a plugin to address this very issue, check it out if you are still looking to fix this.
Forum: Themes and Templates
In reply to: Link Category OrderIf anyone is looking for a solution to the problem of ordering links and their categories try my plugin, My Link Order. It let’s you set an explicit order. None of this extra spaces stuff.
Forum: Themes and Templates
In reply to: Re-ordering CategoriesJust letting people know that I have created a plugin, My Link Order, to address this very issue by allowing you to manually set the order of link categories and links. Check it out at My Link Order
Forum: Requests and Feedback
In reply to: Change Link Order requestJust letting people know that I have created a plugin to address this very issue by allowing you to manually set the order of link categories and links. Check it out at My Link Order
Forum: Plugins
In reply to: Links sort order forcedJust letting people know that I have created a plugin to address this very issue by allowing you to manually set the order of link categories and links. Check it out at My Link Order