thewirelessguy / cornerstone

Cornerstone is a WordPress starter theme based on the Zurb Foundation Responsive Framework. Cornerstone aims to provide a lightweight starter theme that is responsive and SEO friendly that web designers can build great looking websites on.
GNU General Public License v2.0
155 stars 40 forks source link

Admin Bar is missing? #5

Closed DesignMitZweiS closed 11 years ago

DesignMitZweiS commented 11 years ago

Hi,

when I activate your theme, I can't go back to my WP dashboard because the whole WP Menu bar is missing. This is on all devices and desktop.

Thanks in advance, Sven

alana-mullen commented 11 years ago

The Admin Bar is disabled. You can still access the dashboard via www.yourdomainname.com/wp-admin To add the Admin Bar back in, add the following to the functions.php in your child theme:

// Disable the admin bar on mobiles but enable on desktops function cornerstone_show_admin_bar() { if( wp_is_mobile() ) { return false; } else { return true; } } add_action( 'show_admin_bar' , 'cornerstone_show_admin_bar');

or

// Show admin bar on all devices show_admin_bar(TRUE);

DesignMitZweiS commented 11 years ago

Ah, I see. Well, that solution is pretty fine to me. Thanks a lot for your quick reply. :)