Different logo on homepage

It looks like the theme designer has a means for you to use a different logo on the homepage. Looking at your header.php on lines 83-93. If your theme detects that this is the front page, the title is enclosed with an <h1> tag, otherwise it is enclosed in a <div>. Both have id=’logo’. If … Read more

style.css not reflecting changes. I have no cache installed

When it happens to me it usually turns out that I’m editing the wrong file. Are you sure the active theme is the one you are editing? You should go to your admin and check. If you really deleted the right CSS file your theme should become inactive and listed as a broken theme

How to create different navigation for registered users in WooThemes Canvas?

add_action(‘init’,’wpsites_members_menu’); function wpsites_members_menu(){ if(is_user_logged_in()){ add_filter( ‘wp_nav_menu_args’ , ‘logged_in_nav_menu’ ); } } Display Different Nav Menu For Logged in and Logged Out Users Source: http://wpsites.net/web-design/members-nav-menu-logged-in-members/ function logged_in_nav_menu( $args ) { if ( $args[‘theme_location’] == ‘primary’ ) { $args[‘menu’] = ‘members’; } return $args; }

Restrict access to specific widget field based on user role

I ended up adding the class ‘ab-ads’ to all my widget areas. if ( !is_super_admin() ) { add_action(‘admin_print_styles-widgets.php’, function() { echo ‘<style type=”text/css”>div.sidebar-widgets-ab-ads { display:none; }</style>’; }); } That way I just hide them for everyone that isn’t administrators.