Topic: Some cluster of ideas

how aboout allowing us to create a page that lists all the categorie and  seperate them with a letter or number of the what ever the text start with like this, example:
#
.hack//roots
A
Avatar
B
Bleach
something like that also give us the options like it does in the side bar also give us the uption to put them in 1 row ar 2 row.
Also on a page allow us to list post in a selecte categorie the same way. like i have an anime categorie and im posting anime description in them i wan a page linking to each post in the anime categorie so its easy for  people to get to the anime info, or you can do it the way 
http://animeseason.com is set up. Having a template like, that batter will be sweet.
also give us some option to put in image and links in the slide show so it doesnt have to be a selected post and its tumbnail. Also if you can do something on the sidebar where i put in some images with link and ever time the p-age refreshes the image with the link changes like how ads appear on sites, but i want to link it to random anime, also a post count option and a broken video/post buttopn at the buttom you will see if you look at animeseason.
U better read this since im typing all this!! neutral

Last edited by tatsiga (2010-04-12 13:47:37)

**...::: cool ::::Featured Arras Theme::: cool :::...**
{1.4.3b2}=--=[http://www.aniblade.com]

Thumbs up

Re: Some cluster of ideas

I think you can this with a sitemap plugin or even a custom page.php.
This is not arras theme but it's basically what you want (didn't put A, B, C, etc. in (yet)): http://anipedia.animeblog.nl/category/anime/ or http://www.animeblog.nl/besprekingen/
It's a simple hack of archive.php from that theme.

Also on a page allow us to list post in a selecte categorie the same way. like i have an anime categorie and im posting anime description in them i wan a page linking to each post in the anime categorie so its easy for  people to get to the anime info

This is quite easy to do. I did it for my tags-archives. http://www.animeblog.nl/tag/sf/

Last edited by extatix (2010-04-12 15:01:47)

My Arras themed site:
Child Theme (1.4.3.1) & WP 3.0: Gio's Anime Blog
Child Theme (1.4.3.1) & WP 3.0: NullCore

Re: Some cluster of ideas

yes that can be done but every time i put in a new category or page i have to put in their id to exclude them and i would be posting 100's of posts and i don't think i can fit that much id. or cant u all me to put the category thing that's used on the side bars for a page

**...::: cool ::::Featured Arras Theme::: cool :::...**
{1.4.3b2}=--=[http://www.aniblade.com]

Thumbs up

Re: Some cluster of ideas

This might be a good starting point for the thing you want:

http://codex.wordpress.org/Template_Tag … categories

My Arras themed site:
Child Theme (1.4.3.1) & WP 3.0: Gio's Anime Blog
Child Theme (1.4.3.1) & WP 3.0: NullCore

Re: Some cluster of ideas

thanks for the codex. i also thing that on the post page you should have up an option to place comment boxes on post and pages makes things way easy when you have an anime site.

**...::: cool ::::Featured Arras Theme::: cool :::...**
{1.4.3b2}=--=[http://www.aniblade.com]

Thumbs up

Re: Some cluster of ideas

You have the choice to disable/enable comments on each posts.

BTW, if you need help compiling an index I'm willing to help.

Last edited by extatix (2010-04-13 01:58:34)

My Arras themed site:
Child Theme (1.4.3.1) & WP 3.0: Gio's Anime Blog
Child Theme (1.4.3.1) & WP 3.0: NullCore

Re: Some cluster of ideas

I really really really really really hate myself. Of course I had to try this out myself smile

Done with wp_list_categories() and some minor css edits.

http://www.watkijkikoptv.info/mp3/testindex.png

Last edited by extatix (2010-04-13 05:57:00)

My Arras themed site:
Child Theme (1.4.3.1) & WP 3.0: Gio's Anime Blog
Child Theme (1.4.3.1) & WP 3.0: NullCore

Re: Some cluster of ideas

where can i get the edited css code?

i also want the page to show only 1 category and the content (posts) in that category to show up in order like your pic, Because like i said i have a category of anime and i want it in a list on a page.. also can u put in a second header option because i want the heade on my site to look like this sites. www.southpark.gen.tr

o ya here is a nice idea, give color themes of this theme also sizeing options in the general help to reside things, but we can do these changes in the css coding but some people like me who only know the basic css and not the complicated ones like this look for easy to use stuff. Also their is a plugin was wondering if you can incorparate it with the theme, its a nice plugin to navigate through a category going form post to post with in the category put how it shows up on the templat it makes things seem out of wach. want it to be under the video well the post check it out just clikc on a video posted on my homepage. www.aniblade.com Also of the video where that bar shows up showing the date published and the comment was wondering it you can replace the comment with the number of times the post was viewed. also put up some king of uption to change the tumbnail frame thing with a different color or uploaded image same for side bar and navigattion .

Last edited by tatsiga (2010-04-13 13:51:37)

**...::: cool ::::Featured Arras Theme::: cool :::...**
{1.4.3b2}=--=[http://www.aniblade.com]

Thumbs up

Re: Some cluster of ideas

Step 1 is actually making categories. I made a categorie A, B, C, D, etc. Next I made the serie categories children of the letter. Azumanga Daioh is a child of A, etc.

Step 2 was copying page.php and making a different template of it.  Added this piece of code.

            <div class="indexlist">
            <ul>
            <?php wp_list_categories('title_li=<h4>' . __('#') . '</h4>&orderby=name&hide_empty=0&show_count=1&child_of=107'); ?>
            <?php wp_list_categories('title_li=<h4>' . __('A') . '</h4>&orderby=name&hide_empty=0&show_count=1&child_of=108'); ?>
            <?php wp_list_categories('title_li=<h4>' . __('B') . '</h4>&orderby=name&hide_empty=0&show_count=1&child_of=109'); ?>
            <?php wp_list_categories('title_li=<h4>' . __('C') . '</h4>&orderby=name&hide_empty=0&show_count=1&child_of=117'); ?>
            </ul>
            </div>

Step 3 was adding this to the user.css

.indexlist ul { list-style-type: none; padding: 0; padding-bottom: 10px; }
My Arras themed site:
Child Theme (1.4.3.1) & WP 3.0: Gio's Anime Blog
Child Theme (1.4.3.1) & WP 3.0: NullCore

Re: Some cluster of ideas

can you put in something like this for the next upgrade http://wordpress.org/extend/plugins/zam … avigation/ and a a tab would be nice too

**...::: cool ::::Featured Arras Theme::: cool :::...**
{1.4.3b2}=--=[http://www.aniblade.com]

Thumbs up

Re: Some cluster of ideas

Heya how about trying something like this for b3 of the theme http://codex.wordpress.org/Fun_Character_Entities i don't plan on editing the template it self because i keep screwing it up so can you incorporate something like this to the theme also some tabs where i can change the coloer and the width and if it shows borders or what not.

Last edited by tatsiga (2010-04-25 09:16:06)

**...::: cool ::::Featured Arras Theme::: cool :::...**
{1.4.3b2}=--=[http://www.aniblade.com]

Thumbs up

Re: Some cluster of ideas

Hi there. I am completely newbie in wordpress. Can you help me to do something like this in my reviews page/category?
Image:

http://img686.imageshack.us/img686/4968/imagexf.png

For example: When "A" is clicked all the movie reviews starting with the letter "A" are listed in the page

Thumbs up