baruchel
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: DIV and Paragraph beheaver in 2.1The magic solution, a plugin
http://www.urbangiraffe.com/plugins/disable-wpautop/
(I don’t like people looking at my code and fixing it for me; I don’t like computer doing it also; I found this plugin, that merely leave my code as I wrote it…)Forum: Fixing WordPress
In reply to: A bug with some <div> markups?Thanks; much better but still a bug:
look at wp-contact-form plugin and see how WP adds a closing P tag (without opening one) after the closing FORM tag (and before the largest DIV of the plugin).Forum: Plugins
In reply to: A Page latest Posts in front pageI think you have to hack by yourself a theme. The home.php or maybe the index.php file of the theme is involved. Have a look at your own theme, and have also a look at some theme that puts on the frontpage both the content of the “about” page and some recent posts. Several themes do it; for instance “Hemingway reloaded”. Of course, such a theme often only puts the excerpt of the “about” page rather than the whole content, but this is not difficult to change.
Forum: Plugins
In reply to: Favourite Posts/Most Popular Plugin?Yes, one single line is required to fix the
http://www.aufzynden.de/post-readers-wp-plugin/
plugin. Donwload it, then edit it, and look, around line 23 forget_currentuserinfo();
if ($user_level > 8)remove them and istead put
if ( current_user_can(‘level_9’) )
Then it works great !