Forum Replies Created

Viewing 20 posts - 501 through 520 (of 4,908 total)
  • Author
    Posts
  • in reply to: Include featured image in search results #116361
    Mahesh
    Participant

    @rawikltd: Its kinda strange its not showing on your site. But working fine on our server. We’ll need to check on your server.

    Regards,
    Mahesh

    in reply to: Banner is missing after updating WP Core #116339
    Mahesh
    Participant

    @mark-argentino: Glad to know everything is working fine.

    Regards,
    Mahesh

    in reply to: Home page featured area #116338
    Mahesh
    Participant

    @artisanwebsites: Sorry for that, and thank you, the instruction has been updated. You can use plugin to control widgets visibility or use Custom CSS. Please post in your site url.

    Regards,
    Mahesh

    in reply to: How to make content wrap sidebar #116337
    Mahesh
    Participant

    @legendsofamerica: For different sidebars, you can use plugins to control widgets visibility as per the page, so that you can show or hide it as per your requirement.

    Regards,
    Mahesh

    in reply to: Hide header featured image? #116336
    Mahesh
    Participant

    @janetmmorris: Go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:

    .single.single-post #header-featured-image {
    	display: none;
    }
    
    .single.single-post #masthead {
    	background-color: #000000;
    }
      
    .single.single-post #content {
    	margin-top: 78px;
    }

    Let me know further. If this didn’t work, we’ll need to check on your site.

    Regards,
    Mahesh

    in reply to: Hide header featured image? #116313
    Mahesh
    Participant

    @janetmmorris: Is the issue still persisting?

    Regards,
    Mahesh

    in reply to: Include featured image in search results #116312
    Mahesh
    Participant

    @rawikltd: Please make sure you have set featured images on the posts.

    Regards,
    Mahesh

    in reply to: Image gallery #116311
    Mahesh
    Participant

    @franz: Please contact the plugin support.

    Regards,
    Mahesh

    in reply to: Banner is missing after updating WP Core #116303
    Mahesh
    Participant

    @mark-argentino: The menu seems to be displaying and working fine on your site. However, I cannot find the extra text with the link. How have you managed to have it previously. For the social icons color, go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:

    .social-profile ul li.facebook a {
        background-position: 0 -44px;
    }
    
    .social-profile ul li.twitter a {
        background-position: -44px -44px;
    }
    
    .social-profile ul li.google-plus a {
        background-position: -528px -44px;
    }
    
    .social-profile ul li.linkedin a {
        background-position: -176px -44px;
    }
    
    .social-profile ul li.wordpress a {
        background-position: -572px -44px;
    }
    
    .social-profile ul li.rss a {
        background-position: -88px -44px;
    }
    
    .social-profile ul li.email a {
        background-position: -837px -44px;
    }

    Regards,
    Mahesh

    in reply to: Include featured image in search results #116302
    Mahesh
    Participant

    @rawikltd: Please try disabling the plugins and try if that fixes the issue.

    Regards,
    Mahesh

    in reply to: Hide header featured image? #116298
    Mahesh
    Participant

    @janetmmorris: Go to Dashboard=> Appearance=> Customize=> Theme Options=> Layout Options and select Disabled in Single Page/Post Image Layout option.

    Regards,
    Mahesh

    Mahesh
    Participant

    @mmarvel54: Do you mean to hide slider container and the dots in mobile device? If yes, go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:

    @media screen and (max-width: 767px) {
    	#feature-slider .entry-container, 
    	#feature-slider .cycle-pager {
    		display: none;
    	}
    }

    Regards,
    Mahesh

    in reply to: import demo/dummy data #116295
    Mahesh
    Participant

    @amburmj: Now there is no dummy data for importing. You’ll need to put it manually.
    For similar display as demo:
    1. Demo slider: Go to Dashboard=> Appearance=> Customize=> Featured Slider and select Demo slider in Slider Type option.
    2. Tours Widget: Go to Dashboard=> Appearance=> Widgets, add Tours widget into Before Content widget area. Follow along, fill up the data.
    3. Videos Embeds Widget: Go to Dashboard=> Appearance=> Widgets, add Video Embeds widget into Before Content widget area. Follow along, fill up the data.
    4. About Widget: Go to Dashboard=> Appearance=> Widgets, add About widget into After Content widget area. Follow along, fill up the data.
    5. Instagram Widget: Go to Dashboard=> Appearance=> Widgets, add Instagram widget into After Content widget area. Follow along, fill up the data.

    Hope this helps.

    Regards,
    Mahesh

    in reply to: Footer menu not displayed on mobile devices #116294
    Mahesh
    Participant

    @maciejrzeszutko: Oh yes :). Well, there is a small bug in the theme, this will be fixed in the next update. We’ll let you know as soon as the update is released.

    Regards,
    Mahesh

    in reply to: How to make content wrap sidebar #116293
    Mahesh
    Participant

    @legendsofamerica: This is a boxed theme and max-width is 1200px. If you like to have full-width, I recommend you to use full-width themes.
    Hiding sidebar in mobile devices is possible with Custom CSS. Go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:

    @media screen and (max-width: 767px) {
        .sidebar-primary {
        	display: none;
        }
    }

    Regards,
    Mahesh

    in reply to: Home page featured area #116290
    Mahesh
    Participant

    @artisanwebsites: Sorry, the theme does not support that feature. There was some mistake in theme instructions which will be corrected shortly. Hope you understand. In demo, the widgets Tours, Videos etc are put in Before Content widget area and About in After Content widget area.

    Regards,
    Mahesh

    in reply to: Change content on courses, professors etc. #116248
    Mahesh
    Participant

    @dan_4652: If you have any plugins installed, try disabling the plugins and check if the resolves the issue. Let me know further. Please post in your site url.

    Regards,
    Mahesh

    in reply to: Featured content title not centered #116242
    Mahesh
    Participant

    @jmbtravel: Go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:
    #featured-post .featured-homepage-image {
    display: inline-block;
    }

    Regards,
    Mahesh

    in reply to: Widget background image not changing #116241
    Mahesh
    Participant

    @dosk: There has been a small bug in the theme. This will be fixed in the next update. We’ll let you know as soon as the update is released.

    Regards,
    Mahesh

    in reply to: Exclude sticky posts from Home.php #116239
    Mahesh
    Participant

    @mohanghabo: For this, you’ll need to create a child theme. You can find more details on creating child theme HERE. Then in your child theme’s functions.php, add the following codes:

    add_action( 'pre_get_posts', 'adventurous_child_ignore_sticky' );
    function adventurous_child_ignore_sticky( $query ) {
        if ($query->is_main_query() && $query->is_home()) 
        {
            $query->set( 'ignore_sticky_posts', 1 );
        }
    }

    Regards,
    Mahesh

Viewing 20 posts - 501 through 520 (of 4,908 total)