jaycos
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Multiuser blog capabilitiesHi!
For category-posting-rights I use a combination of these plugins:
http://redalt.com/wiki/Limit+Categories
http://redalt.com/wiki/Role+ManagerYou can exclude categories from the homepage via query_posts. Check the Docs for details.
Forum: Plugins
In reply to: doing … for each categoryOk, let’s make it more concrete 🙂
Have a look at this top secret testing platform:
http://www.viermann.info/testblog/feeds/
As you see there is a table row for each author. I managed that with the code mentioned above. Now i would like to realize that for categories as well.Forum: Fixing WordPress
In reply to: Home page questionTo make it concrete. My home.php or index.php looks like this:
<?php get_header(); ?>
<div id="content" class="narrowcolumn">
<?php if (is_home()) { ?>
<h2>Welcome</h2>
<?php } ?>
...The Loop...But the “Welcome”-Headline is visible not only on
http://www.mydomain.com/blog/ but on http://www.mydomain.com/blog/page/2/ as well.Forum: Fixing WordPress
In reply to: Home page questionAs i described above i tried the “is_home”-thing on my home.php but the static content nevertheless appeared on the “previous”-page. THIS seems to be a bug.
Forum: Fixing WordPress
In reply to: Home page questionI did it the same way. And that is suggested here:
http://codex.wordpress.org/Template_Tags/query_posts#Post_.26_Page_ParametersI tried to do something with is_home(), but that didn’t work, because the “next page” seems to be “home” as well.
I read several times that people suggest to build a new category e.g. called “Blog” an put all the other categories in it. Than you can link to the Blog-cat to show all posts. But I don’t like that and the German Doku doesn’t, too:
http://doku.wordpress.de/Template_Tags/query_posts#Posts_aller_Kategorien_abfragenBut i don’t understand how to use
rewind_posts();
query_posts('cat=0');
to get what we want… 🙁Forum: Plugins
In reply to: WordPress Gallery Googlemap?I solved it thanks to
Forum: Requests and Feedback
In reply to: One Category as Index?forget about all plugins and simply enter this into your index.php or home.php somewhere before the loop starts:
<?php query_posts('cat=3'); ?>This is to display posts from category-ID 3 only. For more parameters see
http://codex.wordpress.org/Template_Tags/query_posts#Category_ParametersForum: Fixing WordPress
In reply to: Author profile list (code request)Now it works. I had to change
($user->wp_user_level > 0)
to
($user->wp_01_user_level > 0)because i prepared my Database to host multiple WordPress installations…
Thanks for the skript again!
Forum: Plugins
In reply to: New plugin – UsermetaSorry, it was a long day… 🙂
From the usermeta page:
This post written by <?php the_author(); ?> who lives at
<?php $usermeta = new Usermeta(); echo $usermeta->get(get_the_author_ID(), "address", true); ?>
…in case your field is called “address”.
Forum: Plugins
In reply to: New plugin – UsermetaThey are displayed under “Your Extended Profile”, a new tab besides “Your Profile”. Or do you want to move fields from there to the profile main page? That would be interesting for me, too.
Forum: Fixing WordPress
In reply to: Author profile list (code request)Thanks! Seems to be great! But it just displays the headline and nothing else:
http://www.viermann.info/testblog/startseite2/🙁
Any idea?
But the code looks nice!Forum: Plugins
In reply to: New plugin – UsermetaHey moshmonkey, additionally use the plugin Userextra to achieve that! Works great!
Forum: Plugins
In reply to: WordPress Gallery Googlemap?Hi!
I am planning a guestmap, where the registered user can set (and change) its location in the profile by dragging a gmap. This works fine since yesterday… It’s not an own plugin, but a hack of the userextra plugin. My Problem is, that i manually have to code, which users’ data to show on the map. I don’t know enough php to construct a function that writes these few lines into the page for each user who has set a location in the profile. Anybody likes to help me?
Forum: Requests and Feedback
In reply to: Custom User Profile FieldsHave a look at this thread: http://wordpress.org/support/topic/45124