Forum Replies Created
-
AuthorPosts
-
malcomilesMember
Even easier x_D
// Inverse title and site description order
remove_action( 'genesis_site_title', 'genesis_seo_site_title' ); remove_action( 'genesis_site_description', 'genesis_seo_site_description' ); add_action( 'genesis_site_title', 'genesis_seo_site_description' ); add_action( 'genesis_site_description', 'genesis_seo_site_title' );
malcomilesMemberThis code did the trick 🙂
//* Remove Loading OpenSans font from Google Servers Function remove_open_sans_from_wp_core () { Wp_deregister_style ('open-sans'); Wp_register_style ('open-sans', false); Wp_enqueue_style ('open-sans',' ');} Add_action ('init','remove_open_sans_from_wp_core');
malcomilesMemberI finally made it 😀 , it involves removing the site title altogether then code my solution in the functions php file. It works just fine ^^ Its like creating a normal php file on a blank theme, but on the functions php with some actions to hook it in the right place of genesis.
/** Remove default site title and add custom site title **/ remove_action( 'genesis_site_title', 'genesis_seo_site_title' ); remove_action( 'genesis_site_description', 'genesis_seo_site_description' ); function custom_site_title() { echo '<h2 class="site-description" itemprop="description">';echo bloginfo ('description');'<h2>'; echo '<h1 class="site-title" itemprop="headline"><a href="#">';echo bloginfo ('title');'</a><h1>'; } add_action( 'genesis_site_title', 'custom_site_title' );
malcomilesMemberlet me reply to myself 😀 :
add_filter ('genesis_footer_creds_text', 'custom_footer_creds_text'); function custom_footer_creds_text($creds) { $creds = '[footer_copyright]' . get_bloginfo('name') . ' • Built on the [footer_genesis_link]' . get_num_queries() . timer_stop(1); return $creds; }
July 11, 2014 at 5:37 am in reply to: How to put the BMI(body mass index formula) on website #113874malcomilesMemberExcel files and file formats are not easily (not at all) supported by web browsers. You need instead to create some little program with either javascript or php to do this on the fly.
It's indeed a very easy thing to do (when you know how to code at least), but the thing is I'm afraid this is even too complicated for your level, if I'm judging correctly from your message "Copied and pasted from excel"...
Maybe you need to hire a helping hand for this, even the most simple web stuff looks well beyond your reach at the moment. I would point you to some online learning site like: codeacademy.com , but I don't if you are that interested in the coding part of the internet.
Cheers. 😀
July 11, 2014 at 5:31 am in reply to: Sass / Scss Version of the Genesis Sample starter child theme #113872malcomilesMemberI predict that it won’t be part of core. Unless an enormous percentage of people want it
I want it 😀
Already using blustemi stuff, very neat dude!
-
AuthorPosts