Fortes
Forum Replies Created
-
Forum: Plugins
In reply to: Category PaginationIf you’re using a permalink struct that is /%category%/%postname%/ or %postname%, then the plugin won’t work. It only works with numerical / date permalinks.
Forum: Plugins
In reply to: Top Level Categories with WP 2.5OK — I’ve updated the plugin and it should now be fixed in 2.5
Let me know if any one sees any more issues.
https://svn.wp-plugins.org/top-level-cats/tags/release-1.0.1/
Forum: Plugins
In reply to: Top Level Categories with WP 2.5I’m the developer.
I had tested the plugin with WP2.5RC2, and it worked fine then. Looking into it now to see if I can fix it.
Forum: Fixing WordPress
In reply to: WP-Cache – unlink problem when adding comments, editing postsI ran into this problem just now — it means that wp-cache is trying to delete a file that no longer exist.
I replaced all the
unlink
commands with@unlink
— the “@” before the unlink tells it to ignore the warnings (which is a safe thing to do, considering the file has already been deleted.Forum: Plugins
In reply to: parse variable through add_actionSjeiti — Can you give more detail? Where is this variable coming from?
Forum: Themes and Templates
In reply to: replacement for wp_get_linksbyname?Hi tandilboy — Your best bet is the wp_list_bookmarks function (in bookmark-template.php).
The code is probably something like:
wp_list_bookmarks("category_name=Secciones&orderby=rating&before=
<li>&after=</li>&show_description=0");Forum: Everything else WordPress
In reply to: Help creating my own customisable layoutHi DThomas — https://codex.www.ads-software.com/Blog_Design_and_Layout is probably the best place for you to start.
Forum: Fixing WordPress
In reply to: advice on private blog?thisbejoe — you can do this with Post Levels: https://fortes.com/projects/wordpress/postlevels
However, the current version won’t filter by category, you have to edit the individual posts. I plan on supporting this next version.
Hi Lollymom — you might want to check out PostLevels: https://fortes.com/projects/wordpress/postlevels
It doesn’t support filtering by category (you have to manually mark the posts as private) — but I’m planning on doing that for the next version.
Forum: Fixing WordPress
In reply to: Privacy Levels in Multiple Author BlogHi Fhaugen — you should be able to do this with Post Levels: https://fortes.com/projects/wordpress/postlevels
Forum: Fixing WordPress
In reply to: Privacy / MembersHi ozstephan — you might want to check out the post levels plugin: https://fortes.com/projects/wordpress/postlevels
Forum: Fixing WordPress
In reply to: Controll Weblog AccesYou can also try the post levels plugin ( https://fortes.com/projects/wordpress/postlevels ) — and restrict your posts by giving the user a level of access. When users register, they won’t have access until you manually set their level.
Forum: Plugins
In reply to: Post security extensions?Hi Sarah,
I have a plugin called Post Levelsthat several people use for keeping their posts private. You can find it here: https://fortes.com/projects/wordpress/postlevels
Forum: Installing WordPress
In reply to: Fatal error called to undefinedThis happened with the move of get_currentuserinfo() to pluggable functions. See this post: https://fortes.com/2005/05/14/updating-wordpress-plugins-for-151 for details
Forum: Fixing WordPress
In reply to: LivePress 1.5.1 issue1.5.1 broke a few plugins (including mine) which depend upon the functions declared in pluggable-functions.php. Here are the instructions for developers affected by this change: https://fortes.com/2005/05/14/updating-wordpress-plugins-for-151