BLOG Page, various things

Hi there, BLOG related questions :

  1. How do I add a hero picture before each post
    Like this yellow image : http://www.melyssagriffin.com/goals-2017/

Is it manually or can I set that automatically?

  1. My blog post appears in cornerstone but doesn’t appear in the view. What happens?

  2. In the sidebar, “VOUS VOULEZ PLUS DE TRAFIC + CF7”, I’d like
    • Color : #EB8517
    • Remove shadow of the text
    • Add padding 20px

  1. In the sidebar, how to freeze the “FORMATION” part (like “do you want more traffic” in the website https://neilpatel.com/blog/easy-seo-hacks/)

  2. At the end of the article, where do I add the other blog post “keep on reading” (as this http://www.melyssagriffin.com/deepak-chopra/)

  3. To get a signature like this article (AUTHOR: MELYSSA GRIFFIN + Little description) : is it manually or automatically. What’s the best way to do it?

Cheers and thanks

Also, I’d like the share button (Add to any plugin) only on the “formation” page and “blog”

Hi there,
I didn’t receive any answer yet…please get back to me!
Cheers and thanks

Hello There,

Thanks for writing in! Sorry for the delayed response. Just for future topics, self responding or bumping your post pushes it back in our Queue system so it takes longer to respond to.

1.) This was done automatically. You will need to design and code the section first and then add a custom function in your child theme’s functions.php file. Take this code as an example:

// Add social sharing icons
// =============================================================================
add_action('x_after_masthead_end', 'display_the_banner_here');
function display_the_banner_here () { ?>
	<?php if ( is_single() ) : ?>

		<div class="custom-content">
			<p>You may add your section here</p>
		</div>
	
	<?php endif; ?>
<?php }
// =============================================================================

2.) You are still using X theme 4.6.4. Please update it to 5.2.2 so that it could work with Cornerstone 2.1.3

3.) Do you want something like this http://prntscr.com/gwuzlx? If that is the case, please add the following CSS code in the X > Launch > Theme Options > Global CSS (http://prntscr.com/evui3r) or in the customizer, Appearance > Customize > Custom > Edit GLOBAL CSS

.x-sidebar.right #text-8{
    padding: 20px;
    background-color: #EB8517;
    text-shadow: none;
}

4.) This is called infobar. You can install ConvertPlus plugin by going to X > Overview > Extensions. To know more about this plugin and how you can create an infobar, please check this out:

5.) The Keep on reading section is coming from a Related Post plugin. You may install 3rd party plugin and see how it goes.
https://wordpress.org/plugins/search/related+post/

6.) If you are using cornerstone for each of you post, you can easily insert an Author Box element to display something about the Author.

And if you want something that is automatic, you may use a custom code adding the authorbox shortcode at the end of the content. You can check out this thread:

7.) The share button comes from a 3rd party plugin called Social Warfare. You can easily install this right in your plugins section.

Hope this helps. Please let us know how it goes.