davidledezma
Forum Replies Created
-
Forum: Plugins
In reply to: [Page scroll to id] The scroll id is not working in mobile versionThank you very much!!! Now is working properly.
Hi!!, to translate the cookies message Languages -> Strings translations there you need to find the the rows with the GROUP column named as “Cookie Notice” there you can change the message and the buttons text.
I hope this is what you need.
Hello, The problem was in the wordpress installation, it’s already solved now.
Thanks
Forum: Themes and Templates
In reply to: [Twenty Seventeen] Use Featured Image as header imageOf course, I created a child theme and copy the header-image.php located in “wp-content/themes/twentyseventeen/template-parts/header” in the folder “wp-content/themes/childthemename/template-parts/header”. Opens the file and replace the code as follow.
Original:
<div class=”custom-header”><div class=”custom-header-media”>
<?php the_custom_header_markup(); ?>
</div><?php get_template_part( ‘template-parts/header/site’, ‘branding’ ); ?>
</div><!– .custom-header –>
Modified:
<div class=”custom-header”>
<div class=”custom-header-media”>
<?php
if(twentyseventeen_is_frontpage() || is_home() && is_front_page())
the_custom_header_markup();/*you can set a slider here*/
else if ( has_post_thumbnail() && ( is_single() || is_page()))
the_post_thumbnail( ‘twentyseventeen-featured-image’ );
else the_custom_header_markup();?>
</div><?php get_template_part( ‘template-parts/header/site’, ‘branding’ ); ?>
</div><!– .custom-header –>
Later I used the CSS code to hide the featured image from the page/post body.
Forum: Themes and Templates
In reply to: [Twenty Seventeen] Use Featured Image as header imageI already solved thanks
If I want to change the feature image height in the placeholder, because now I set a 2000px width X 550 px height and the place holder zoom the picture.
How can I made it?