Mattz
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Seperate Divs for each parent category in the loopHave you solved this ?
I’m looking for the same…when I come up with something I will post it.
Forum: Themes and Templates
In reply to: Make while loop for get_category_children (jquery/idtabs)No-one any idea about this ?
I’m figuring this out and I have the idea that this is very custom.
Some ideas are appriciated ??
Forum: Themes and Templates
In reply to: Horizontal menu/submenu, not dropdown?Have you been able to solve this ?
PLease let us know.
Forum: Fixing WordPress
In reply to: Turn blog off temporarily?No it actually works, I moved the site from a subdomain to the maindomain and didn’t update the domainname in WP yet ??
Forum: Fixing WordPress
In reply to: Turn blog off temporarily?But this plugin does not work on 2.5.1, I can’t activate it.
Forum: Themes and Templates
In reply to: Flexible Changeable Theme, are there any ?He, relax a little bit please.
Iridiax had a very good point about the link too, you can’t deny that.
I’m looking for something that suits me, so I may ask here for opinions, not stupid statements like you do.
There is no known License fee for the project and also, the person is on Vacation, so that’s not an option at the moment.
I will look further and have seen a lot of project that try to do the same.
let’s see what I find ??
Forum: Themes and Templates
In reply to: Flexible Changeable Theme, are there any ?you are actually very true !
Good point.
So, the question is what shall I do, I like the project, but I only need a small piece of it for sure.
You can pay the guy to remove the footer stuff, but I don’t like to ay 100% for 25% what I need to go further with my idea.
Forum: Plugins
In reply to: [Plugin: WYSIWYG Text Widget] Upgraded, Interface ScrambledAnyone some updates for this maybe ?
I tried to email the developer, never got anything back.
Forum: Fixing WordPress
In reply to: How to remove bullet list from the sidebarHi,
I have the same problem at the moment, I thought this whoed up in 2.5.1 ?
Have you been able to fix this ?
Forum: Plugins
In reply to: [Plugin: WYSIWYG Text Widget] Cann’t edit widget contentSomeone using this one one 2.5.1 ?
Forum: Themes and Templates
In reply to: Print Parent page titleI was not able to print the name of a parentpage using:
$parent_title = get_the_title($post->post_parent);
IS this doable using a small line of code ?
Forum: Plugins
In reply to: Random Image w/ Accompanying TextDid you found a plugin/solution for this ? I need this as well actually.
Forum: Fixing WordPress
In reply to: If Current Page or Child of Current PageWere you able to fix this ?
It seems to be an issue
Forum: Fixing WordPress
In reply to: Check if page has parent and childsIt seems that I have a real issue here.
I have a parent with 3 childs under it. Every child has about 5 childs:
- Parent
- Child_1
- Child
- Child
- Child
- Child
- Child_2
- Child
- Child
- Child
- Child
- Child_3
- Child
- Child
- Child
- Child
I’m able to show the Childs of
- 1 when I’m on one of the childs of
- 1, this using:
wp_list_pages( ‘echo=0&child_of=’ . $post->ID . ‘&depth=1&title_li=’ );
But when I go to Child_2 or Child3, I only get 2 of the Child_X to show when I use this in a if:
wp_list_pages(“title_li=&child_of=”.$post->post_parent.”&exclude=”.$post->ID.”&echo=0&depth=1″);
Which is not nice because it should display the Childs of Child_2 and Child_3.
So when I visit Child_1 I see his childs in the menu, and when I go to Child_2 I see Child_1 and Child_3 in the menu, the same for Child_3 where I only see Child_1 and Child_2 and not his own childs.
Is this difficult to build or almost impossible ?
Forum: Fixing WordPress
In reply to: Show child pages next to child you visitNow this only goes wrong when you are on a child that also has childs, for an example:
Child 3 has also childs 11,22,33,44
You will be showing 1,2,4 and 3.11, 3.22, 3.33 and 3.44
In this case (when you are on a page in the middle of childs and childs and visit page 3 which has childs 11,22,33,44) I would be able to show only:
3.11, 3.22, 3.33 and 3.44
I was busy with an if and ifelse statement, will this be possible ?
Quite complex ??