- This topic has 6 replies, 4 voices, and was last updated 9 years, 6 months ago by Sakin.
-
AuthorPosts
-
March 21, 2015 at 8:16 pm #53919webtussiMember
Hi,
I would like to have changing headerpics on every side below home.
Since I could not enable the slider on pages below home the IdividualHeaderFeatured Image is the right thing to do that, right?
As far as I understand, you can upload different pics there and let them show of by random.
Is there a possibility to add text or to do settings as offered in the featured slider?
March 21, 2015 at 8:47 pm #53927SakinKeymaster@webtussi: Yes, you can enable slider in all pages. For that, just go to “Appearance => Customize => Featured Slider Options => Featured Slider Settings”, Select “Entire Site” in “Enable Slider on” option and click on “Save & Publish”,
For Header image, you can control all the settings from “Appearance => Customize => Header Image”. Don’t forgot to check in “Enable Featured Header Image on” option. Sorry there is no option to add text in the header image. You can upload image with the text on it.
March 21, 2015 at 10:54 pm #53988webtussiMemberThought so, thank´s Sakin.
March 23, 2015 at 8:12 pm #54147Helle NaiaMemberHi Hello – I would love you to help me.
I’m having trouble with the logo implementation in the fullframe theme. This is the page on which I’m having the issue: http://leneheckmann.coregrafit.dk/
I know I can set the logo in the header. But this header is not always visible, untill you click in the above right hand corner. But I’d like to have my logo shown at ALL times, and in good resolution – which is not my experience in this header option.
I hope you can help me soon as possible:)
Best wishes, Helle Naia
March 23, 2015 at 9:56 pm #54162SakinKeymaster@Helle Naia: In Full Frame pro, you can just go to “Appearance => Customize => Theme Options => Fixed Header Top Options” and check option “Check to disable Header Toggle” and save changes. See this instructions http://catchthemes.com/theme-instructions/full-frame-pro/#disable-header-toggle
May 2, 2015 at 5:09 pm #56989stringaMemberHei everybody! I used the Header Image instead of the Slider because I didn’t want the Page’s Featured Image to show of at the top of the pages as they show in the featured content.
The problem is that even though I uploaded 5 or 6 Header Images and checked the ‘Randomize Uploaded Headers’ button the Header Image does not change. It changes just one time, when I open the Customizing menu, and when i save the changes and close it the header image stays just the same.
Have a check! http://www.casadelbaccala.com
Please Help!May 3, 2015 at 1:56 pm #57062SakinKeymaster@stringa: This theme doesn’t use random header so instead we added in Different header image option. You can build child theme and add the following code in your child theme functions.php file. For child theme, check out http://catchthemes.com/blog/create-child-theme-wordpress/
/** * Random Header Image */ function fullframe_featured_overall_image() { $options = fullframe_get_theme_options(); $header_image = get_header_image(); if ( $header_image != '' ) { ?> <div id="header-featured-image"> <div class="wrapper"> <?php // Header Image Link and Target if ( !empty( $options[ 'featured_header_image_url' ] ) ) { //support for qtranslate custom link if ( function_exists( 'qtrans_convertURL' ) ) { $link = qtrans_convertURL($options[ 'featured_header_image_url' ]); } else { $link = esc_url( $options[ 'featured_header_image_url' ] ); } //Checking Link Target if ( !empty( $options[ 'featured_header_image_base' ] ) ) { $target = '_blank'; } else { $target = '_self'; } } else { $link = ''; $target = ''; } // Header Image Title/Alt if ( !empty( $options[ 'featured_header_image_alt' ] ) ) { $title = esc_attr( $options[ 'featured_header_image_alt' ] ); } else { $title = ''; } // Header Image $feat_image = '<img class="wp-post-image" alt="'.$title.'" src="'.esc_url( $header_image ).'" />'; // Header Image Link if ( !empty( $options[ 'featured_header_image_url' ] ) ) : echo '<a title="'. esc_attr( $title ).'" href="'. esc_url( $link ) .'" target="'.$target.'">' . $feat_image . '</a>'; else: // if empty featured_header_image on theme options, display default echo $feat_image; endif; ?> </div><!-- .wrapper --> </div><!-- #header-featured-image --> <?php } }
-
AuthorPosts
- The topic ‘Indvidual Header Featured Image’ is closed to new replies.