tim-dpi
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Wrong image source in HTMLAnyone?
Forum: Fixing WordPress
In reply to: List post tags in sidebarHi,
I want something similar to this. I want the all tags available in the post on my archive.php to be shown in the sidebar. How can I do this?
Forum: Plugins
In reply to: [Plugin: Microkid’s Related Posts] Using variable from other functionHi Microkid,
I want to extend your plugin with the option ‘Relationship type’. So you can select what kind of relation your related post is. This relationship type can be used only show related posts from a specific relationship type.
In other words, I want to categorize the related posts
I see your location is Amsterdam, are you Dutch?
Forum: Plugins
In reply to: Adding buttons TinyMCE toolbarI haven’t solved it yet…… anyone?
Here is the code i’m using now and works perfect
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <?php static $count = 0; if ($count == "5") { break; } else { ?> <?php if ( in_category('32') && !is_single() ) continue; ?> <?php if ( in_category('33') && !is_single() ) continue; ?> <li class="post" id="post-<?php the_ID(); ?>"> <a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a> </li> <?php $count++; } ?> <?php endwhile; ?> <?php endif; ?>Where ‘5’ is the number of posts that you want to be shown
How to make this work with the following code:
<ul> <?php if (have_posts()) : ?> <?php query_posts('showposts=5'); ?> <?php while (have_posts()) : the_post(); ?> <?php if (in_category('32')) continue; ?> <li class="post" id="post-<?php the_ID(); ?>"> <a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a> </li> <?php endwhile; ?> </ul> <?php endif; ?>Forum: Plugins
In reply to: Related user profiles to postsIt only lists authors.. not regular users (subscribers)
Forum: Plugins
In reply to: Related user profiles to postsThere is no such thing like wp_list_users() wright? Because the users I want to relate to are no authors, just regular users.
Oooh I just found this website which provides a script to display all users. http://www.mattvarone.com/wordpress/list-users/
Forum: Plugins
In reply to: Related user profiles to postsHi MichaelH,
Thank you for your reply. No it is not the author, but it will be one or more other registered users. It isn’t possible to view user profiles from other registered users on my website, is it?
Forum: Plugins
In reply to: [Plugin: Microkid’s Related Posts] How to relate from specific categoriesLittle correction, this is what I mean:
Manually related posts from category 1
post 7 (stored in cat. 1)
post 8 (stored in cat. 1)Manually related posts from category 2
post 9 (stored in cat. 2)
post 10 (stored in cat. 2)(hmmm where is the ‘edit’ button)
Forum: Fixing WordPress
In reply to: Locked code for TinyMCE templates… With CSS???Within the plugin ‘TinyMCE advanced’ I’ve found the ‘html’ button, which gives me the possibility to insert html code. However, this plugin doesn’t have a ‘insert template’ function what would be a much better option
Forum: Fixing WordPress
In reply to: Locked code for TinyMCE templates… With CSS???I’m also looking for a way to insert templates in Tinymce. I’ve seen it in other version of Tinymce…
Is there a way to insert templates in the Tinymce version that WordPress is using?
Forum: Fixing WordPress
In reply to: WordPress as a knowledge base?Hello,
I’m about to setup our knowledge base with WordPress, but I have still one question to be answered first. Is it possible to create profiles of users and finished project and make them searchable? I want these profiles to be shown next to search results of the posts (we call them articles because we’re building a knowledge base). Is there a way to create such kind of profiles? Ore would you suggest to use regular posts for this, place them into a separate category and create its own search result next to the regular search results?
I hope my explanation is clear enough..
Forum: Fixing WordPress
In reply to: WordPress as a knowledge base?Hi MichaelH,
Thanks for your reply. I want for each post to decide witch group of users is allowed to read it. But I think I already found it in this plugin: http://wordpress.org/extend/plugins/user-access-manager/
“From now on the post/page is only accessible and writable for the specified group.”