hilj
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: WordPress as cms, menusThank you again!
I still have on
current_page_item
problem.
Something like this:PAGE ITEM1
PAGE ITEM2
SUB ITEM1
SUB ITEM2I have set the
current_page_item
to be black, non actives are gray. But now when the PAGE ITEM2 is active, all the SUB ITEMs that appear under it have thecurrent_page_item
styling in them. How come is this?Thank you.
Forum: Fixing WordPress
In reply to: WordPress as cms, menus1. I don’t see any dropdowns on that siet you linked to
Sorry, I should do my terminology home works better. What ever that list is called where you click an item and it reveals more items under it? Like here in the sidebar https://lernen.scoutpress.de/
I’m trying to do this using Pages.
I figured the second one.
Thanks
Forum: Fixing WordPress
In reply to: Navigation current state indication?That was surprisingly easy.
But one thing there is. I would like the current link just to chance color to a darker gray when active, I can’t seem to do that.
This doesn’t work:
.current_page_item {color: #444;}
But this does work:
.current_page_item {background: #444;}
Is it something to with this coloring:
#sidebar a {color:#aaa;}
somehow over ruling the first mentioned
{color: #444;}
coloring?thank you
Forum: Fixing WordPress
In reply to: more tag not functioningOh and when I click the “read more” it throws me to the sing post page, and things appearing there I can edit from single.php. Nice, thanks!
Forum: Fixing WordPress
In reply to: more tag not functioningOtto42, you said it!
But now it raises other kind of questions.
1. How can I chance the text of the “Read the rest of this entry”?
2. Now it shows, in this case, useless info like:
-the gategory where it was posted.
-the comment status (of in this case)
-the date posted
Can I get rid of these?Thank you!
Forum: Fixing WordPress
In reply to: more tag not functioningOf course, sorry about that.
The goal: I’m using WP as CMS. I’ve defined one Page as front page of the site. I would like to display the latest happening on the front page. Cause the description of the happening is so long and may contain lot of images, I would like to display only a beginning of it, say, first ~10 lines or so (it varies so I would need to able to control it easily).
The Problem: more does not work for pages. How’s it possible to do this?
Sorry again and thank you!
Edit: otto42 thanks for the clarification.
Forum: Fixing WordPress
In reply to: more tag not functioningYeah, Page it is. Is there some other way to do this?
This would be only for the front page.
Forum: Fixing WordPress
In reply to: Words not wrapping in 2.3 WYSIWYG post editorI have the same issue here. Just spent about one hour trying to figure out what a hell. Safari 3 beta here. Is it Safari then?
Just tested with Firefox, works fine.
Forum: Fixing WordPress
In reply to: How can I hide/style the login link?Aa okay, I see, of course! I can now get to the Dashboard from https://www.mysite.com/wp-admin or something like that. And I can log out via Dashboard.
I feel stupid.Forum: Fixing WordPress
In reply to: Making WP function as a site. Some basic question.Well how about, it works.
It’s alphabeticalizing it now, I usedorderby=
, left it empty, it helped. Is that okay to do? Now it orders the categories during their order number… that’s not good either. Could it be okay like this:
<?php wp_list_categories('orderby=&include=3,5,9,16'); ?>
The categories will appear in the order I typed them in, right?thanks
Forum: Fixing WordPress
In reply to: Making WP function as a site. Some basic question.The theme I picked uses the
list_cats
which obviously has been deprecated.I just replaced the
list_cats
withwp_list_categories
, obviously it’s wrong cause my sidebar just vanishes.<li><h2><?php _e(); ?></h2> <ul> <h2><?php wp_list_categories('show_count=0&0, '', 'name', 'asc', '', 1, 0, 1, 1, 1, 1, 0,'','','','','') ?></h2> </ul> </li>
And ho am I going to ad the
title_li
in there, so that it doesn’t show the tittle of the list?Any help is appreciated, thanks.