Forum Replies Created
-
AuthorPosts
-
luisolano
MemberVictor, thank you for answering.
My theme does not include "header" as an option to modify in appearences in wp-admin.
And if I change Dynamic Text for Logo Image in customize, the image is not clickable as the text was (at least as long as I also have a menu in the Header Right Widget).Regards,
Luis Olano
luisolano
MemberThank you for answering Victor.
The problem it is actually not clickable (unless I resize the window to a very small one and then the "hidden" text title is clickable).This is the beginning of my frontpage.php
<?php
/**
* Jano Home Page.
*/// Force full width content layout setting
add_filter( 'genesis_pre_get_option_site_layout', '__genesis_return_full_width_content' );remove_action( 'genesis_after_header', 'genesis_do_nav' );
remove_action( 'genesis_after_header', 'genesis_do_subnav' );// Remove the default Genesis loop
remove_action( 'genesis_loop', 'genesis_do_loop' );remove_action( 'genesis_before_footer', 'genesis_footer_widget_areas' );
// Add custom homepage content
add_action( 'genesis_loop', 'one_jan_homepage_content' );
function one_jan_homepage_content() { ?>As it is a onepager theme then come the sections About, Blog, Portfolio, etc.
And these are the only references to the title area or header in the functions-php:
// Reposition the breadcrumbs
remove_action( 'genesis_before_loop', 'genesis_do_breadcrumbs' );
add_action( 'genesis_after_header', 'genesis_do_breadcrumbs' );add_filter ( 'genesis_home_crumb', 'jano_breadcrumb_home_link' ); // Genesis >= 1.5
function jano_breadcrumb_home_link( $crumb ) {
$crumb = '<i class="fa fa-home"></i>';
return $crumb;
}//* Remove tagline from header
remove_action( 'genesis_site_description', 'genesis_seo_site_description' ); -
AuthorPosts