Forum Replies Created
-
AuthorPosts
-
April 15, 2020 at 7:10 pm in reply to: How to delete the page header on one page In Genesis Sample theme #497986
Sridhar Katakam
ParticipantApril 15, 2020 at 6:34 pm in reply to: How to delete the page header on one page In Genesis Sample theme #497984Sridhar Katakam
ParticipantWhere possible, it is recommended to make the code not be output/printed on the page rather than using the display CSS property.
Add this in child theme's functions.php:
add_action( 'genesis_before_header', 'custom_remove_site_header_homepage' ); /** * Remove site header on the homepage. */ function custom_remove_site_header_homepage() { if ( is_front_page() ) { remove_action( 'genesis_header', 'genesis_header_markup_open', 5 ); remove_action( 'genesis_header', 'genesis_do_header' ); remove_action( 'genesis_header', 'genesis_header_markup_close', 15 ); remove_action( 'genesis_header', 'genesis_do_nav', 12 ); } }
Sridhar Katakam
Participant1. Edit the Page that is set your site's homepage at Settings > Reading and set it up using Gutenberg blocks.
2. Can you provide the URL of your posts page?
Sridhar Katakam
ParticipantSridhar Katakam
Participant1. In the theme directory delete
front-page.php
or rename it to something likefront-page-notusing.php
.2. Set your desired static Page as the homepage at Settings > Reading.
Sridhar Katakam
ParticipantSure.
Add the following CSS:
@media only screen and (max-width: 1023px) { .tax-product_cat .content-sidebar-wrap { display: flex; flex-direction: column-reverse; } }
Sridhar Katakam
ParticipantYou could simply change
.site-inner { background-color: #fff; }
to
.home .site-inner { background-color: #fff; }
so it only affects the homepage and not the inner pages.
April 13, 2020 at 5:45 pm in reply to: How to delete the page header on one page In Genesis Sample theme #497935Sridhar Katakam
ParticipantDo you want to completely remove the site header on that specific Page or want to replace what appears inside it i.e., the logo + Header Right widget area with a slider?
Sridhar Katakam
ParticipantHere's a premium tutorial I wrote on this topic:
https://sridharkatakam.com/featured-image-header-pages-posts-entry-header-overlay-monochrome-pro/
Sridhar Katakam
ParticipantWhen you switch themes, the existing content (Pages, Posts etc.) will remain.
Still, it is recommended to take a full backup and database backup before switching just in case..
Sridhar Katakam
ParticipantYou would need to edit Authority Pro's style.css file.
Ex.:
.ab-block-post-grid a.ab-block-post-grid-more-link:hover { color: #333; }
Sridhar Katakam
ParticipantYou would need to edit the Authority Pro's style.css file.
Ex.:
.ab-block-post-grid a.ab-block-post-grid-more-link:hover { color: #333; }
January 13, 2020 at 6:24 pm in reply to: Divine Theme – Links not displaying in classic editor #495931Sridhar Katakam
ParticipantWe can disable the theme's WP editor CSS by commenting out or deleting
add_editor_style( '/lib/gutenberg/style-editor.css' );
in /wp-content/themes/divine-theme/lib/gutenberg/init.php.
Sridhar Katakam
ParticipantThere are 14 occurrences of #a86500 (brown color) in /wp-content/themes/essence-pro/lib/woocommerce/essence-woocommerce.css.
Replace them with your desired color code.
Sridhar Katakam
ParticipantSridhar Katakam
ParticipantYou can use the code snippet on https://www.billerickson.net/genesis-h1-front-page/. Just replace
h1
withdiv
.
Sridhar Katakam
ParticipantSridhar Katakam
ParticipantAdd this CSS:
.title-area, .nav-primary { float: none; } .nav-primary { text-align: center; } @media only screen and (max-width: 1023px) { .menu-toggle { float: none; } }
Sridhar Katakam
ParticipantSridhar Katakam
Participant -
AuthorPosts