I need that on click on the menu item (Tombstones) it goes to a url and on hover it displays its submenu.
With quadmenu this works perfectly, however the active state of that menu is not activated correctly.
As you can see in the screenshot, when the active page is Tombstones the menu indicates that it is Home.
I also show how the menu is built with your plugin:
Thanks in advance
]]>Only on the home page, it does nothing when you click on it.
I’m using the slidebar menu for the Woocommerce categories section
]]>– Add left and right padding in sidebar (most important)
– Center content vertically in sidebar or give settings for this (would also be great)
– More icon libraries
– Option to change the size of the icon
– Option to limit height of sliding out sidebar, so that it becomes rather a box
Cheers Florian
]]>I can only see secondary posts contents in the three column global layouts.
No matter how I adjusted primary slider, it just doesn’t work, only leaving social icons on top with no widgets in the primary slider.
Adding widgets outside of customized on primary slider doesn’t help either.
Can anyone pls assist me on this, tks,
【my requirement 】
1. show primary bar only, and with functions in it (search, hot posts, category)
2. don’t show secondary bar
【problem pictures details , letting you know】
https://i.imgur.com/D20e2lc.png (script problem)
https://i.imgur.com/XThrnIg.png (primary slider bar contents do not show in website)
https://i.imgur.com/epnhWQc.png (slider bar would show in three column global setting)
https://i.imgur.com/HvhUBQK.png (primary / secondary not show in dynamic sidebar)
https://i.imgur.com/KApQfHv.png (all disabled in the sidebar setting)
https://i.imgur.com/epnhWQc.png (three Column setting, then secondary slide bar works )
pls help, much appreciated
]]><?php
if ( ! defined( 'ABSPATH' ) ) exit;
/**
* Sidebar Template
*
* If a <code>primary</code> widget area is active and has widgets, display the sidebar.
*
* @package WooFramework
* @subpackage Template
*/
global $woo_options;
if ( isset( $woo_options['woo_layout'] ) && ( $woo_options['woo_layout'] != 'layout-full' ) ) {
?>
<aside id="sidebar" class="col-right">
<?php woo_sidebar_inside_before(); ?>
<?php if ( woo_active_sidebar( 'primary' ) ) { ?>
<div class="primary">
<?php woo_sidebar( 'primary' ); ?>
</div>
<?php } // End IF Statement ?>
<?php woo_sidebar_inside_after(); ?>
</aside><!-- /#sidebar -->
<?php } // End IF Statement ?>
function.php
<?php
if ( ! defined( 'ABSPATH' ) ) exit;
/*-----------------------------------------------------------------------------------*/
/* Start WooThemes Functions - Please refrain from editing this section */
/*-----------------------------------------------------------------------------------*/
// WooFramework init
require_once ( get_template_directory() . '/functions/admin-init.php' );
/*-----------------------------------------------------------------------------------*/
/* Load the theme-specific files, with support for overriding via a child theme.
/*-----------------------------------------------------------------------------------*/
$includes = array(
'includes/theme-options.php', // Options panel settings and custom settings
'includes/theme-functions.php', // Custom theme functions
'includes/theme-actions.php', // Theme actions & user defined hooks
'includes/theme-comments.php', // Custom comments/pingback loop
'includes/theme-js.php', // Load JavaScript via wp_enqueue_script
'includes/sidebar-init.php', // Initialize widgetized areas
'includes/theme-widgets.php', // Theme widgets
'includes/theme-plugin-integrations.php' // Plugin integrations
);
// Allow child themes/plugins to add widgets to be loaded.
$includes = apply_filters( 'woo_includes', $includes );
foreach ( $includes as $i ) {
locate_template( $i, true );
}
/*-----------------------------------------------------------------------------------*/
/* You can add custom functions below */
/*-----------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------------*/
/* Don't add any code below here or the sky will fall down */
/*-----------------------------------------------------------------------------------*/
?>
header.php
<?php
if ( ! defined( 'ABSPATH' ) ) exit;
/**
* Header Template
*
* Here we setup all logic and XHTML that is required for the header section of all screens.
*
* @package WooFramework
* @subpackage Template
*/
global $woo_options, $woocommerce;
?><!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>" />
<title><?php
/*
* Print the <title> tag based on what is being viewed.
*/
global $page, $paged;
wp_title( '|', true, 'right' );
// Add the blog name.
bloginfo( 'name' );
// Add the blog description for the home/front page.
$site_description = get_bloginfo( 'description', 'display' );
if ( $site_description && ( is_home() || is_front_page() ) )
echo " | $site_description";
// Add a page number if necessary:
if ( $paged >= 2 || $page >= 2 )
echo ' | ' . sprintf( __( 'Page %s', 'woothemes' ), max( $paged, $page ) );
?></title>
<?php woo_meta(); ?>
<link rel="pingback" href="<?php echo esc_url( get_bloginfo( 'pingback_url' ) ); ?>" />
<?php
wp_head();
woo_head();
?>
</head>
<body <?php body_class(); ?>>
<?php woo_top(); ?>
<div id="wrapper">
<div id="inner-wrapper">
<?php woo_header_before(); ?>
<header id="header" class="content-container">
<?php woo_header_inside(); ?>
<span class="nav-toggle"><a href="#navigation"><span><?php _e( 'Navigation', 'woothemes' ); ?></span></a></span>
<div class="site-header">
<h1 class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>"><?php bloginfo( 'name' ); ?></a></h1>
</div>
<?php woo_nav_before(); ?>
<nav id="navigation" class="col-full" role="navigation">
<section class="menus">
<a href="<?php echo home_url(); ?>" class="nav-home"><span><?php _e( 'Home', 'woothemes' ); ?></span></a>
<?php if ( is_woocommerce_activated() && isset( $woo_options['woocommerce_header_cart_link'] ) && 'true' == $woo_options['woocommerce_header_cart_link'] ) { ?>
<h3><?php _e( 'Shopping Cart', 'woothemes' ); ?></h3>
<ul class="nav cart">
<li <?php if ( is_cart() ) { echo 'class="current-menu-item"'; } ?>>
<?php woo_wc_cart_link(); ?>
</li>
</ul>
<?php }
if ( function_exists( 'has_nav_menu' ) && has_nav_menu( 'primary-menu' ) ) {
echo '<h3>' . woo_get_menu_name('primary-menu') . '</h3>';
wp_nav_menu( array( 'depth' => 6, 'sort_column' => 'menu_order', 'container' => 'ul', 'menu_id' => 'main-nav', 'menu_class' => 'nav', 'theme_location' => 'primary-menu' ) );
} else {
?>
<ul id="main-nav" class="nav">
<?php if ( is_page() ) $highlight = 'page_item'; else $highlight = 'page_item current_page_item'; ?>
<li class="<?php echo $highlight; ?>"><a href="<?php echo esc_url( home_url( '/' ) ); ?>"><?php _e( 'Home', 'woothemes' ); ?></a></li>
<?php wp_list_pages( 'sort_column=menu_order&depth=6&title_li=&exclude=' ); ?>
</ul><!-- /#nav -->
<?php } ?>
</section><!--/.menus-->
<a href="#top" class="nav-close"><span><?php _e('Return to Content', 'woothemes' ); ?></span></a>
</nav><!-- /#navigation -->
<?php woo_nav_after(); ?>
</header><!-- /#header -->
<?php woo_content_before(); ?>
thankyou so much
]]>medicinemanmusic.net
Jonathan
]]>My question is about Log In Log Out in my Home page.(I am using Avada theme)
I am creating the User Register in my Home Page with Log In Log Out, and I can not integrate the Plug Ins in the menu bar of my Word press.
All the Plug Ins are going to the Widgets Slidebar Menu which impacts in the design and usability I like of my home page.
What can I do?
Many many thanks
Leo
https://www.ads-software.com/plugins/login-logout/
]]>