pati
Forum Replies Created
-
Forum: Plugins
In reply to: WP-Mail 0.312there’s another possibility to download the wp-mail. but not sure, if this version works. you know, the category thing for example.
Forum: Plugins
In reply to: Highlighting current archiveWorking on this thing. But only get all the archives highlighted.
If any one has an idea – please help. Thanks!!!
Forum: Plugins
In reply to: Movie Database?You will need to tell it the path to the File upload directory, and the URL of upload directory.
For example, if your blog is at http://www.myblog.com/, and the path to the blog is /home/me/public_html/, and the path to the upload directory is /home/me/public_html/sbimages/, then the URL to the upload directory will be:
http://www.myblog.com/sbimages/
see also http://www.structuredblogging.org/instructions-mt.php !
greets, pati
Forum: Fixing WordPress
In reply to: Email Notification v2.3.1 help (no sender)so maybe it is different – i use german version and there this feature is available.
but you surely have activated the plugin?
Forum: Fixing WordPress
In reply to: Email Notification v2.3.1 help (no sender)in admin panel – there go to manage – newsletter – under settings.
Forum: Plugins
In reply to: Language Picker .9: Per user WP localizationhi.
visited the link of the polyglot plugin, but the author of the plugin referes to the documentation of language picker, where the site is down. Has anyone the documentation of the language picker plugin on which the polyglot plugin is based on?
greets,
patiForum: Fixing WordPress
In reply to: Installing something: similar to : “Hot Tags”?i can also recommend: Jerome’s Keyword-Plugin.
For getting a cloud use the following code:
<ul class="cloud">
<?php all_keywords(’<li><a href="/tag/%keylink%" style="font-size: %count%px" >%keyword%</a></li>’, ‘’, 10, 30); ?>
</ul>With the class cloud you can format your cloud via stylesheet.
Forum: Fixing WordPress
In reply to: Hide category posts in archives? and Change category background?Hiding Posts from a category in the archive view:
1. create a file archive.php
2. define the style of the archive page and put the loop also in the file. before the loop you need to write the following:
if(is_archive()){$wp_query->set('cat','-ID'); query_posts(''); }
3. When you use the code above, you still can use the prev/next function.
4. Want to exclude more than one category from archive –> define a category in which you put all the categories, you don’t want to be shown.greets,
patips: works also with is_home() 😉
Forum: Fixing WordPress
In reply to: exclude multiple categories from index pageAfter some hours looking for a solution I now have found a way to do: http://ww.wp.xz.cn/support/topic/66698.
greets,
patiForum: Fixing WordPress
In reply to: Hot to avoid articles in blog’s home pageHi again!
I have a solution for my problem now. it isn’t the best way, but it works.
For excluding multiple categories I created a category “hidden”, where I put all the other categories which shouldn’t be displayed on the index.php. After this I excluded the category “hidden” with the following peace of code in front of the loop:
<?php if(is_home()){$wp_query->set('cat','-14'); query_posts('');}?>Now you have only the categories, which you want see on your index.php and you still can use the prev/next function (working without error!).
greets,
patiForum: Fixing WordPress
In reply to: exclude multiple categories from index pagehello.
i’ve reade the link you gave, moshu, and tried to get it work. it works fine for excluding multiple cats – but after using the code the prev/next function (with next_posts_link(…) and prev_posts_link(…)) doesn’t work anymore.
Is there a way to exclude multiple categories and use prev/next function together – so that both work fine?!
I would be thankful for help – because I can’t get i work (though I’ve tried much more possibilites than this one).
best wishes,
patiForum: Fixing WordPress
In reply to: Current Page Questions…li.page_item {
color: cyan;
font-size: 8pt;
}li.current_page_item {
font-size: 12pt;
color: #D90000;
}i use the code above in my stylesheet – and it works so far. but it only changes the font-size but not the color. 🙁 any idea, what i do wrong?
tia,
patiForum: Fixing WordPress
In reply to: Installing something: similar to : “Hot Tags”?quite easy to use – but the tags link to zoomcloud.com. the posts connected with the tags won’t look like the posts on your own site.
Forum: Fixing WordPress
In reply to: Hot to avoid articles in blog’s home pageForum: Fixing WordPress
In reply to: Hot to avoid articles in blog’s home pagehello again!
i’ve tried three things:
1.)
<?php if (is_home()) { query_posts("cat=-3"); } ?>==> excludes the category, but you can’t use prev/next function. the code is written directly before the loop.2.)
if(is_home()) { $wp_query->set('cat','-11'); query_posts(''); }==> excludes a category and you can use the prev/next function. but need to exclude more than one category (any ideas?). the code is also written driectly in front of the loop.3.) i used the code from this link: http://codex.ww.wp.xz.cn/The_Loop#Exclude_Posts_From_Some_Category
with the result i posted before. put the code a shown in the example. closed also the if-statement. but problem with this code ist, that it leaves the place of the posts for the excluded categories blank. you know, you had a lot of white space, where is no post. but you can use the prev/next function and then – after some clicking – you’ll find a post of a not excluded category.
i’ll try to put the code to the link you gave me, too.
thx,
pati