Rovsing
Forum Replies Created
Viewing 10 replies - 1 through 10 (of 10 total)
-
Forum: Fixing WordPress
In reply to: pluggable.php on line 896Didn’t help. ??
But found my solution!
//Closed
Forum: Fixing WordPress
In reply to: pluggable.php on line 896It’s the original index.php so don’t get, why there would be any errors? But changed name for it, because site isnt’ released yet.
Forum: Fixing WordPress
In reply to: pluggable.php on line 896I’ve tried, but it’s the original file.
Forum: Themes and Templates
In reply to: Picture javascript on page.Well that explains every thing.. thanks.
Forum: Themes and Templates
In reply to: Picture javascript on page.Really? No one have a clue??
Forum: Themes and Templates
In reply to: Can't figure out the dropdown..How do I get it as i dropdown?
As u see on the site, on the right under “SIDER” all pages are shown..
look hereForum: Themes and Templates
In reply to: Can't figure out the dropdown..Like this? https://pastebin.com/XHGLDgBr
Forum: Themes and Templates
In reply to: Can't figure out the dropdown..The only HTML of it is this found in header.php
Not sure if it’s what you want… There is also some .js files??<script src="<?php bloginfo('template_directory'); ?>/menu/mootools-1.2.5-core-yc.js" type="text/javascript"></script> <link rel="stylesheet" href="<?php bloginfo('template_directory'); ?>/menu/MenuMatic.css" type="text/css" media="screen" charset="utf-8" /> <!--[if lt IE 7]> <link rel="stylesheet" href="<?php bloginfo('template_directory'); ?>/menu/MenuMatic-ie6.css" type="text/css" media="screen" charset="utf-8" /> <![endif]--> <!-- Load the MenuMatic Class --> <script src="<?php bloginfo('template_directory'); ?>/menu/MenuMatic_0.68.3.js" type="text/javascript" charset="utf-8"></script> <?php echo get_theme_option("head") . "\n"; function functions_file_exists() { if (!file_exists(dirname(__file__) . "/functions.php") || !function_exists("theme_usage_message") ) { echo ("<p style=\"padding:10px; margin: 10px; text-align:center; border: 2px dashed Red; font-family:arial; font-weight:bold; background: #fff; color: #000;\">This theme is released free for use under creative commons licence. All links in the footer should remain intact. These links are all family friendly and will not hurt your site in any way. This great theme is brought to you for free by these supporters.</p>"); die; } } functions_file_exists(); wp_head(); ?> </head> <body> <script type="text/javascript"> window.addEvent('domready', function() { var myMenu = new MenuMatic(); }); </script> <div id="wrapper"> <div id="wrapper-bg"> <div id="outer-wrapper" class="outer-wrapper"> <div class="outer"> <div class="menu-links"> <div id="pagemenucontainer"> <?php if(function_exists('wp_nav_menu')) { wp_nav_menu( 'depth=1&theme_location=menu_1&menu_id=pagemenu&outer-wrapper=&fallback_cb=menu_1_default'); } else { menu_1_default(); } function menu_1_default() { ?> <ul id="pagemenu"> <li <?php if(is_home()) { ?> class="current_page_item" <?php } ?>><a href="<?php echo get_option('home'); ?>/">Hjem</a></li> <?php wp_list_pages('depth=1&sort_column=menu_order&title_li=' ); ?> </ul> <?php } ?> </div> </div>
Forum: Themes and Templates
In reply to: Can't figure out the dropdown..I do know how to make a dropdown..
what I don’t know, and wants to know is, why the submenu’s not is shown in the dropdown in the code i posted. :p
Viewing 10 replies - 1 through 10 (of 10 total)