Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #145569
    chikung
    Participant

    Hello
    I have just purchase Simple persona Pro theme. It is working fine except it is not displaying any header image on the front page. I tried all the options given there. Currently my entire site option is ON.

    #145590
    Skandha
    Participant

    @chikung: Please post in your site URL.

    Kind Regards,
    Skandha

    #145597
    chikung
    Participant
    #145641
    Skandha
    Participant

    @chikung: Please make sure you don’t have Header Media Enable on => Excluding Homepage.
    Let me know if you have enabled header image on homepage and still it is not showing.

    Kind Regards,
    Skandha

    #145696
    chikung
    Participant

    https://www.shakuntalagawde.com/video-gallery/

    In this link I have added the screen shot which shows the settings I have kept for header. It also shows that I have a header displayed on the same page which is not coming on the home page.

    #145722
    Skandha
    Participant

    @chikung: Go to => Dashboard => Edit the page which you have set as your Homepage => At the end of the page you should find Header Featured Image Option => Make sure it is Enabled.

    Let me know if this solves your issue.
    Kind Regards,
    Skandha

    #145729
    chikung
    Participant

    Done! Thanks!

    #145730
    Skandha
    Participant

    @chikung: Hello there, I hope I was able to resolve your issue. If it’s not too much trouble, I have a quick request: could you please leave an honest review?
    https://wordpress.org/support/theme/simple-persona/reviews/#new-post
    Your review will help others know what to expect when they’re looking for the support I offer. Even a sentence or two would be hugely appreciated. Thanks, and if there’s anything else at all that I can do to help,
    don’t hesitate to let me know. Have a good day!

    Kind Regards,
    Skandha

    #147852
    svguitar
    Participant

    Hello!
    I’ve just purchased Simple Persona Pro, cause it has beautiful area – Events. Could you please tell me, may I put several events at Homepage and by clicking on “View More” button I could see all my events? It would be better if they’ll be on another page.
    In another words may – I use Events like a widget? To put it on pages that I want?

    Thank you in advance!
    Sergey

    #147875
    Skandha
    Participant

    @svguitar: For this you will need to get your site customized. I suggest you to hire a customizer.

    Kind Regards,
    Skandha

    #148054
    svguitar
    Participant

    Thank you! I’ve written there. And one more question: could you tell me is it possible to change the location of Hero content, Portfolio, Testimonials and Events? For example, if I want that Events would be before Hero Content at the Homepage? Is it possible?

    #148196
    Skandha
    Participant

    @svguitar: For this you will need to create a child theme. If you do not know how to create a child theme then you can use Generate Child Theme Plugin.

    Go to => Text editor => Paste the following code and save it as header.php in the child theme folder.

    <?php
    /**
     * The header for our theme
     *
     * This is the template that displays all of the <head> section and everything up until <div id="content">
     *
     * @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
     *
     * @package Simple Persona
     */
    
    ?>
    <!doctype html>
    <html <?php language_attributes(); ?>>
    <head>
    	<meta charset="<?php bloginfo( 'charset' ); ?>">
    	<meta name="viewport" content="width=device-width, initial-scale=1">
    	<link rel="profile" href="http://gmpg.org/xfn/11">
    	<?php wp_head(); ?>
    </head>
    
    <body <?php body_class(); ?>>
    <div id="page" class="site">
    	<a class="skip-link screen-reader-text" href="#content"><?php esc_html_e( 'Skip to content', 'simple-persona-pro' ); ?></a>
    
    	<header id="masthead" class="site-header">
    		<div class="wrapper">
    			<div class="site-header-main">
    				<?php get_template_part( 'template-parts/header/site', 'branding' ); ?>
    
    				<?php get_template_part( 'template-parts/navigation/navigation', 'primary' ); ?>
    			</div><!-- .site-header-main -->
    		</div><!-- .wrapper -->
    	</header><!-- #masthead -->
    
    	<div class="below-site-header">
    
    		<?php get_template_part( 'template-parts/slider/content', 'slider' ); ?>
    
    		<?php get_template_part( 'template-parts/header/header', 'media' ); ?>
    
    		<?php ! get_theme_mod( 'simple_persona_events_position' ) ? get_template_part( 'template-parts/events/content', 'event' ) : ''; ?>
    
    		<?php get_template_part( 'template-parts/hero-content/content', 'hero' ); ?>
    
    		<?php get_template_part('template-parts/portfolio/display','portfolio'); ?>
    
    		<?php get_template_part('template-parts/featured-content/display','featured'); ?>
    
    		<?php ! get_theme_mod( 'simple_persona_testimonial_position' ) ? get_template_part( 'template-parts/testimonial/display', 'testimonial' ) : ''; ?>
    
    		<?php
    		$enable_homepage_posts = simple_persona_enable_homepage_posts();
    
    		if ( $enable_homepage_posts ) : ?>
    		<div id="content" class="site-content">
    			<div class="wrapper">
    		<?php endif; ?>

    Now I the events section should display above the hero content.
    Let me know if this works out.
    Kind Regards.
    Skandha

Viewing 12 posts - 1 through 12 (of 12 total)
  • The topic ‘Simple Persona Pro’ is closed to new replies.