lerrie
Forum Replies Created
-
Im using version 2.0.40! Thanks for your quick check btw.
Forum: Plugins
In reply to: [Recent FB Posts] Float Link TextSo what should I add to the functions.php file?
Kind regards
Forum: Plugins
In reply to: [Recent FB Posts] Float Link TextHi Danny,
Adding a few lines to functions.php is no problem. What should I add?
Thanks!
Forum: Fixing WordPress
In reply to: Highlighting Parent and Current child pageSeccond try. I’ve changed the css + added the current_page_ancestor from fedback I received on a different post, but now the menu (https://alturl.com/6eu3o) is highlighting all child pages.
Current css:
#outheader #header #navigation #menu ul#nav li.current_page_parent a { background-image: url(../images/achtergrond/headerinfo.png); background-repeat: repeat-x; } #outheader #header #navigation #menu ul#nav li.current_page_item a { background-image: url(../images/achtergrond/headerinfo.png); background-repeat: repeat-x; } #outheader #header #navigation #menu ul#nav li.current_page_ancestor a { background-image: url(../images/achtergrond/headerinfo.png); background-repeat: repeat-x; }
Forum: Themes and Templates
In reply to: Highlight both partent and child in menuThank you, I’ve changed the css + added the current_page_ancestor, but now the menu (https://alturl.com/6eu3o) is highlighting all child pages.
Css:
#outheader #header #navigation #menu ul#nav li.current_page_parent a { background-image: url(../images/achtergrond/headerinfo.png); background-repeat: repeat-x; } #outheader #header #navigation #menu ul#nav li.current_page_item a { background-image: url(../images/achtergrond/headerinfo.png); background-repeat: repeat-x; } #outheader #header #navigation #menu ul#nav li.current_page_ancestor a { background-image: url(../images/achtergrond/headerinfo.png); background-repeat: repeat-x; }
Forum: Hacks
In reply to: Prevent admin from deleting other adminThank you for your detailed answer. The thing is that I would like to provide my client with full functionality since he requests full independence with his site. On the other hand I would like to have a point of security for clients that do not pay in time etc. Anyway, I will check your findings.
Thanks again!
No one?
Forum: Plugins
In reply to: Jquery Easing stopped workingProblem was the function.php
Ok so I found what the problem is. By looking at my website with Firefug I found out the the Nextgen .js and Thickbox.css were not loaded. I’ve manually implemented both codes in my theme and it works now, but I would like to why it does not automatically loads both codes?
I’ve deleted all my .js files, not results, only included jquery.js, no results. The NextGen Plugin Check tells me the plugin should be compatible with my theme.
The link is https://tinyurl.com/apxfgn2 . I have check the plugin with the basic theme and it works there. Something must be wrong with my theme. I’ve added <?php wp_footer(); ?> and still the problem stays.
Im using the [nggallery id=”1″] shortcode.
Does anyone know what could be causing the problem?
Forum: Fixing WordPress
In reply to: Show list of child pages including custom post valuesI have found a way to display the child pages trough
<?php $children = wp_list_pages('title_li=&child_of='.$post->ID.'&echo=0'); if ($children) { ?> <ul> <?php echo $children; ?> </ul> <?php } ?>
Now I would like to include the child pages’ featured image, and 2 custom post 2 values. How can I do that?
I’ve just checked the problem and it seems that the plugin is working correctly with the standard theme. What could be causing the problem with my custom theme?
Forum: Fixing WordPress
In reply to: Highlighting Parent and Current child pageThe thing is that I want the parent (Trainingskampen) + the child (Trainingskamp Voetbal) in this case, to have the blue bg, not the other 2 childs (Trainingskamp atletiek, Trainingskamp zwemmen)
@andrew nevins: .current_page_item etc. is WordPress specific. [LOL]