hsantens
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Menu parent itemsThanks
This seems to remove all active attributes. However I would like to keep the “real” active path.Forum: Fixing WordPress
In reply to: Menu parent itemsHi,
Thank you for your response
This is the url: http://hendrickx-books.dreamhosters.com/ (site is in Dutch)
You can see the issue on the “rechten” page.
If you navigate to “2015 – Heden” -> “2017 – Elvis Compleet” -> “Rechten”, you will see 3 other sites are marked as parent.
Also the “sub-navigation” in the right sidebar doesn’t know were we are anymore. It looks like ik shows the navigation of the first occurrence of the “rechten” page.regards
HansForum: Plugins
In reply to: [WP Responsive header image slider] Add smooth fade effectI’ve noticed the “transition speed” on the settings page only works on the slide effect, not on fade. A small change on in the plugins responsive_headerimageslider.php file can solve this (and let you set a more smooth transition).
Search for
effect: {
slide: {
speed: <?php echo $slidedefultspeed; ?>
}
},and replace it by
effect: {
slide: {
speed: <?php echo $slidedefultspeed; ?>
},
fade: {
speed: <?php echo $slidedefultspeed; ?>,
crossfade:!0
}},