Hi,
Im sure you all have been asked these questions thousands of times so please forgive me in advance. That being said...
I have three people writing on my webpage. From what I can tell, it seems that all users seem to end up on one main giant blog page. Is it possible so that when a visitor to my site clicks on writer A 's link, they will be taken to a blog that only has entries from writer A. When they click on writer b's link on the homepage, they will be taken to writer b's blog only. Also I would like A B C to all have different titles. Is that possible ?
Next question-
Where would I find out info on how to change the blog backround color, text color, and add custon banners ?
Thanks
Mike
Newb Questions Plz
Re: Newb Questions Plz
Hi Mike
and Carl Galloway has some good tutorials on his site http://wwwcarlgalloway.com
HTH
Dave
have a look at http://www.s9y.org/44.htmlspid77 wrote:Where would I find out info on how to change the blog backround color, text color, and add custon banners ?
and Carl Galloway has some good tutorials on his site http://wwwcarlgalloway.com
HTH
Dave
-
garvinhicking
- Core Developer
- Posts: 30022
- Joined: Tue Sep 16, 2003 9:45 pm
- Location: Cologne, Germany
- Contact:
Re: Newb Questions Plz
Hi!
One is, you can click on an author name of an entry and then only see entries by that author. You can also install a sidebar plugin "Authors" that will show links to all authors.
The other is that you can create 3 categories for each of your authors, and then make people go to the different categories. You can then use the plugin "Extended Options for Categories", with which you can assign a different template to each category, so that you can customize the title of the specific categories and their look.
HTH,
Garvin
You can go two different routes:I have three people writing on my webpage. From what I can tell, it seems that all users seem to end up on one main giant blog page. Is it possible so that when a visitor to my site clicks on writer A 's link, they will be taken to a blog that only has entries from writer A. When they click on writer b's link on the homepage, they will be taken to writer b's blog only. Also I would like A B C to all have different titles. Is that possible ?
One is, you can click on an author name of an entry and then only see entries by that author. You can also install a sidebar plugin "Authors" that will show links to all authors.
The other is that you can create 3 categories for each of your authors, and then make people go to the different categories. You can then use the plugin "Extended Options for Categories", with which you can assign a different template to each category, so that you can customize the title of the specific categories and their look.
HTH,
Garvin
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
Re: Newb Questions Plz
Thanks. I cant seem to find the "extended options for catagories plugin". Where is it ? You rock.
Mike
Mike
garvinhicking wrote:Hi!
You can go two different routes:I have three people writing on my webpage. From what I can tell, it seems that all users seem to end up on one main giant blog page. Is it possible so that when a visitor to my site clicks on writer A 's link, they will be taken to a blog that only has entries from writer A. When they click on writer b's link on the homepage, they will be taken to writer b's blog only. Also I would like A B C to all have different titles. Is that possible ?
One is, you can click on an author name of an entry and then only see entries by that author. You can also install a sidebar plugin "Authors" that will show links to all authors.
The other is that you can create 3 categories for each of your authors, and then make people go to the different categories. You can then use the plugin "Extended Options for Categories", with which you can assign a different template to each category, so that you can customize the title of the specific categories and their look.
HTH,
Garvin
-
garvinhicking
- Core Developer
- Posts: 30022
- Joined: Tue Sep 16, 2003 9:45 pm
- Location: Cologne, Germany
- Contact:
Re: Newb Questions Plz
Hi!
This plugin can be found here:
http://spartacus.s9y.org/cvs/additional ... plates.zip
(I'm sorry, the exact name was "Properties/Templates of categories")
This plugin can be found here:
http://spartacus.s9y.org/cvs/additional ... plates.zip
(I'm sorry, the exact name was "Properties/Templates of categories")
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
-
garvinhicking
- Core Developer
- Posts: 30022
- Joined: Tue Sep 16, 2003 9:45 pm
- Location: Cologne, Germany
- Contact:
Hi!
You can do that on a category-level, but not on an author-level, like I explained.
With some more manual customization you could though edit your smarty files and make IF-Checks like
However that would be a quite unflexible solution, and would also require a custom config.inc.php file for your template.
Instead, you should go the category-only route as I explained.
Of course you can also just install Serendipity three times on your server, so that each author has his very own blog.
Best regards
Garvin
You can do that on a category-level, but not on an author-level, like I explained.
With some more manual customization you could though edit your smarty files and make IF-Checks like
Code: Select all
{if $current_author == 1}
<h1>Author 1</h1>
{/if}
{if $current_author == 2}
<h1>Author 2</h1>
{/if}
Instead, you should go the category-only route as I explained.
Of course you can also just install Serendipity three times on your server, so that each author has his very own blog.
Best regards
Garvin
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/