glnnnn
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Changing html tag of widget custom menu to navOf course. Thanks! This was a stupid question 🙂
Forum: Fixing WordPress
In reply to: Paid help? I might need some serious help!!!E-mail your hosting provider. Ask them kindly to reset the domain to some date in the past. They always make backups.
Forum: Fixing WordPress
In reply to: remove navigation arrows?I assume you can remove this in your index.php template file.. Somewhere beneath the
get_template_part( 'loop', $slug );function call.Look for the html entity
& larr;(without space)Forum: Fixing WordPress
In reply to: Changing html tag of widget custom menu to navbefore_widget – HTML to place before EVERY widget.
So when people place widgets other then menus in the sidebar these also will be wrapped in<nav>...</nav>which doesn’t make any sense… It’s not possible then?Forum: Fixing WordPress
In reply to: Changing html tag of widget custom menu to navYes I know this. Used the function before. But in a widget area which you register with
register_sidebar( array(<br /> 'id' => 'sidebar-widget-area',<br /> 'description' => 'The sidebar widget',<br /> 'before_title' => '<h1 class="widget-title">',<br /> 'after_title' => '</h1>',<br /> ) );and then get with
dynamic_sidebar( 'sidebar-widget-area' ).
I can’t really acces thewp_nav_menusince wordpress automatically generates a menu widget.