By default bylines or post info in Genesis shows the published date, author link, link to comments and edit links. Posts for which comments have been turned off by unchecking “Allow comments.” in the Discussion meta box in post editor will not show the link to comments. It is possible to show comments link by […]
Search Results for: image
How to remove Responsive Menu in Altitude Pro
In my Facebook group a user asked: Does anyone know of a tutorial that explains how to get rid of the responsive menu altogether on AltitudePro? I am creating a one-page website with only a few anchor links that link to items down the page. The responsive menu is completely unnecessary and I’d like to […]
Remove Header For Showcase Pro
Hi, There is a tutorial for displaying a single post with the featured image for this theme, but I would like to have all the pages except the Front Page to apear like they are in Altitude Pro. So just a title and the normal page underneath it. Regards
Genesis Portfolio Pro Customizations
In Genesis Slack, a user asked: I’m using Genesis Portfolio Pro plugin, and it’s working fine — the archive page shows my portfolio project images and text links as they’re supposed to (and then they link out to the individual pages for each project). The problem is I’m trying to keep accessibility in mind, and […]
Cafe Pro – Adding Additional Sections and Navigation Menu as a Widget
I was trying to add additional front-page sections and I got them added but it does not seem to be adding the additional background images. Also trying to get a menu added as a widget that displays like the main navigation. Any help would be greatly appreciated.
How to apply Full Content layout to archives in Genesis
Looking to remove sidebar(s) on all archive pages in your Genesis site? Just add the following in child theme’s functions.php. // Force full content layout on archives add_action( ‘get_header’, function () { if ( !is_archive() ) { return; } add_filter( ‘genesis_pre_get_option_site_layout’, ‘__genesis_return_full_width_content’ ); } );
3 Methods to Add a Title for Footer Widgets in Genesis
Looking to add a title or custom HTML above the footer widgets (.footer-widgets > .wrap)? Here are three ways in which this can be done in the order of my personal preference from top to bottom. PHP code goes in child theme’s functions.php. Tested in Genesis Sample child theme with Accessibility support enabled for headings […]
The Events Calendar Customizations in Genesis
In my tutorial requests Trello board a user asked, The Event Calendar by Modern Tribe – they don’t have a way to add the holidays. So I created a category called Holidays. When displayed in List View or Monthly Calendar, I do not want them “clickable” and I do not want the “Read More” or […]
Changing footer text in Genesis using genesis_footer_creds_text filter
One of the several ways in which footer content can be changed in Genesis is using the genesis_footer_creds_text filter. Ex.: // Change the footer text add_filter( ‘genesis_footer_creds_text’, ‘sp_footer_creds_filter’ ); function sp_footer_creds_filter( $creds ) { $creds = ‘Copyright © 2024 <a href="’.get_bloginfo( ‘url’ ).’">’.get_bloginfo( ‘name’ ).'</a>’; return $creds; } to get If you want to display a […]
Thin Font Awesome Close Icon
As of v4.7.0, FontAwesome does not have a thin close (x) icon. <i class="fa fa-times fa-2x" aria-hidden="true"></i> results in, for example, To display a thin icon instead, add this CSS: .fa-times-thin:before { content: ‘\00d7’; } and this sample HTML: <i class="fa fa-times-thin fa-2x" aria-hidden="true"></i> The result: Much better! Source: https://github.com/FortAwesome/Font-Awesome/issues/1540#issuecomment-68689950
Recent Comments