vangrog
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: Events Calendar] Do not update! 12-12-09What’s your site?
P.s.: it works fine for me with “jQuery Extrem Protection” disabled. But enabling it causes error for me as well.
Cheers
Find this code line on the files ‘index.php’ and ‘search.php’ of your template:
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>Below it, add this:
<?php if (in_category('1,2,3')) continue; ?>Replace the numbers on the example above (1,2,3) with the ID numbers of the categories u want to exclude…
cheers
Forum: Plugins
In reply to: WP-Cumulus – Lowercase TagsNevermid. I got it done through
string strtolowerCheers
Forum: Plugins
In reply to: [Plugin: Events Calendar] Do not update! 12-12-09Unfortunately there’s no easy way to find events for editing/deleting on Events Calendar (that’s what this plugin misses the most, imo). You have to use the large calendar that appears on your administration page and forward it to the date of the event. There you’ll see the event and will have the option to edit or delete it.
Cheers
Forum: Fixing WordPress
In reply to: List Pages Include Tree?@ joesmalley
that works nice… thx!
Forum: Plugins
In reply to: [Plugin: Events Calendar] Do not update! 12-12-09Forum: Fixing WordPress
In reply to: Header QuestionForum: Fixing WordPress
In reply to: Exclude categories from sidebar in ArthemiaWorked fine for me. If you don’t use their “widgetize” thing, it might work for you too.
Find on sidebar.php:
<?php /* Widgetized sidebar, if you have the plugin installed. */ if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar(2) ) : ?> <?php endif; ?> <ul><?php wp_list_bookmarks('categorize=0&category=17&title_li=0&show_images=0&show_description=0&orderby=name'); ?></ul>replace for something like:
<?php /* Widgetized sidebar, if you have the plugin installed. */ if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar(2) ) : ?> <?php endif; ?> <ul> <?php wp_list_categories('title_li=&exclude=1'); ?> </ul>Forum: Fixing WordPress
In reply to: Exclude categories from sidebar in Arthemiacan you upload the template file somewhere and share the download link here? the one which makes the call for categories (i.e.: sidebar.php, if you use categories on the sidebar)
———
EDIT: nervemind.. i found the template, will take a look at it later…
cheers
Forum: Fixing WordPress
In reply to: Exclude categories from sidebar in ArthemiaChange the whole code used to call the function.
Replace whole code “get_categories” for:
<?php wp_list_categories(‘title_li=&exclude=1,4,7’); ?>
Replace the numbers on “&exclude=1,4,7” by the ID numbers of the categories you want to exclude).
Cheers
Forum: Fixing WordPress
In reply to: htaccess not needed for permalinkslol, this is just what i said b4.. ;-p
Forum: Fixing WordPress
In reply to: Need help with wp Categories !Reading again, seems u dont wanna remove the whole word, just the link. Well, I’d do the same I described above, just addin something else before that code:
[li]Music[/li]
So, it’d be something like:
[ul]
[li]Music[/li]
<?php wp_list_categories(‘include=3,4,5&title_li=’); ?>
[/ul]p.s.: replace the ” [ ” and ” ] ” signals for ” < ” and ” > ” (they cant be written here, because the use of LI and UL is allowed on forum posts)
Forum: Fixing WordPress
In reply to: Need help with wp Categories !Open the file of your template which makes the call for categories (usually: sidebar.php).
find the code “wp_list_categories”, usually:
<?php wp_list_categories(‘title_li=’); ?>replace it for something like this:
<?php wp_list_categories(‘include=4,6,9,12&title_li=’); ?>
the numbers after “include=” shall be the ID numbers of those specific categories/subcategories you wanna make visible. Find your subcategories IDs and put them in there. This way only those categories will be displayed (without showing the main category they belong to, unless you add the ID of the parent category as well).
Cheers
Forum: Fixing WordPress
In reply to: htaccess not needed for permalinksRhys, .htaccess is necessary to set pretty links, and not necessary to use almost pretty links (the ones you’re using are called “almost pretty”, because of the “/index.php” part). That’s my guess, according to what I know and what Miqrogroove explained (also, Miqrogroove is an expert; considering what I’ve read, written by her on this forum, I can say she knows alot — so, I believe what she says).
If you use a pretty link structure, such as “%pots_id%/%postname%/” (without “index.php” in the beginning), things will only work with mod_rewrite set on your .htaccess.
Cheers
Forum: Fixing WordPress
In reply to: htaccess not needed for permalinksMaybe because of using /index.php/ in the formula, mod_rewrite is not necessary to make things run. I guess that’s what Miqrogroove meant. I wasn’t aware of that.