Forum Replies Created

Viewing 20 posts - 7,041 through 7,060 (of 12,027 total)
  • Author
    Posts
  • in reply to: Testimonial Speed #198110
    Skandha
    Participant

    @baileyherrin: Hello there,
    The option Transition Delay has been added to the Testimonial section using which you can alter the transition time between two testimonial slides. The update will be released soon. I will let you know when the update is released.

    Kind Regards,
    Skandha

    in reply to: PHP errors when trying to load theme #196907
    Skandha
    Participant

    @pier-luigi: Hello there,
    I have fixed the function due to which the errors were showing up and the customizer was not loading at your end. Let me know if the issue is resolved.

    Kind Regards,
    Skandha

    in reply to: Font of Menu Content Wrapper #194947
    Skandha
    Participant

    @kevinpat: Hello there,
    I checked your site and the texts “Diese Woche” & “Nächste Woche” are already showing up in ‘Montserrat’, sans-serif font.

    Kind Regards,
    Skandha

    in reply to: "Theme options" from Appearance disappeared! #194944
    Skandha
    Participant

    @twin6: Hello there,
    Did you Go to => Appearance => Customize => Featured Slider?

    Let me know if the option does not appear.
    Kind Regards,
    Skandha

    Skandha
    Participant

    @prosad: Hello there,
    Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    .site-header-menu.toggled-on {
        background-color: #fff !important;
    }

    Let me know if this works out!
    Kind Regards,
    Skandha

    in reply to: Black bars on side of video on homepage #194940
    Skandha
    Participant

    @caseyjcrow: Hello there,
    Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    @media screen and (min-width: 75em) {
    	.has-header-video.no-header-media-text .wp-custom-header {
    		padding-bottom: 530px;
    	}
    }

    Let me know if this works out!
    Kind Regards,
    Skandha

    in reply to: PHP errors when trying to load theme #194939
    Skandha
    Participant

    @pier-luigi: Hello there,
    I checked for the errors at my end but did not get any.
    Can you please try deactivating all your plugins and see the errors appear? Also do post in your site URL as well.

    Kind Regards,
    Skandha

    Skandha
    Participant

    @xiangyuli: Hello there,
    Firstly you will need to create a child theme. You can use our plugin Generate Child Theme to create a child theme. Install and Activate the plugin.
    Now,
    Go to => Dashboard => Generate Child Theme => Select Parent Theme as Catch Fullscreen Pro, fill the remaining fields and Click Generate. This will create and activate the child theme.

    Finally,
    Go to => Child Theme Folder => functions.php and add the following Code.

    function catch_fullscreen_header_description( $before = '', $after = '' ) {
    	if ( is_front_page() ) {
    		$header_media_text = get_theme_mod( 'catch_fullscreen_header_media_text' );
    
    		if ( $header_media_text ) {
    			echo $before . '<p>' . wp_kses_post( $header_media_text ) . '</p>' . $after;
    		}
    	} elseif ( is_singular() && ! is_page() ) {
    		echo $before . '<div class="entry-header"><div class="entry-meta">';
    			catch_fullscreen_posted_on();
    		echo '</div><!-- .entry-meta --></div>' . $after;
    	} elseif ( is_404() ) {
    		echo $before . '<p>' . esc_html__( 'Oops! That page can&rsquo;t be found', 'catch-fullscreen-pro' ) . '</p>' . $after;
    	} elseif( is_shop() ) {
    		echo $before . '<p>' . esc_html__( 'Hello', 'catch-fullscreen-pro' ) . '</p>' . $after;
    	} else {
    		the_archive_description( $before, $after );
    	}
    }

    Replace the text Hello with the text you want to show up as a tagline on your shop page.
    Let me know if this works out!
    Kind Regards,
    Skandha

    Skandha
    Participant

    @catwingz: Hello there,

    1. The error messages seems to be coming due to one of the plugins you are using. Can you try deactivating all your plugin and see if the error message appears?

    2. To have sidebar on rest of the page but not on homepage
    Edit your homepage => On the right sidebar you will see Page Attributes => Select No Sidebar: Full width and Publish

    * Double image on about page
    Adding the following CSS should solve the issue

    body:not(.home) .header-media {
        display:none;
    }

    Let me know if this works out!
    Kind Regards,
    Skandha

    in reply to: How to change a header in a posts page? #194893
    Skandha
    Participant

    @stan: Hello there,
    Please post in your site URL and let me know where would you like to insert an image.

    Kind Regards,
    Skandha

    in reply to: Loading Slider at the Home Page #194892
    Skandha
    Participant

    @svguitar: Hello there,
    The slider image seems to be showing up fine at my end without having to refresh the page.

    Kind Regards,
    Skandha

    in reply to: Horizontal scroll in mobile version #194891
    Skandha
    Participant

    @elena1976: Hello Elena,
    You seem to be using an old version of the theme. Please update the theme to the latest version.

    Let me know if the issue persists!
    Kind Regards,
    Skandha

    in reply to: How to manage post "author" visibility? #194882
    Skandha
    Participant

    @stan: Hello there,
    Can you please post in your site URL so that I can look into the issue.

    Kind Regards,
    Skandha

    in reply to: The inscription on the Post Image #194881
    Skandha
    Participant

    @svguitar: Hello there,
    You can use the Classic Block => Add Media to add images below the title.

    Let me know if this helps you out!
    Kind Regards,
    Skandha

    in reply to: Remove or move footer/copyright banner #194880
    Skandha
    Participant

    @chicagostaci: Hello there,
    This is because you don’t have enough content on the page. The footer will slide down once you start adding content to the page.

    Let me know if this was helpful.
    Kind Regards,
    Skandha

    in reply to: Subscription: Version 3.1 not included #193159
    Skandha
    Participant

    @jitping: Hello Gustavson,
    I have forwarded the issue to the concerned department. I will update you soon.

    Kind Regards,
    Skandha

    in reply to: how to add read more button on home page #193158
    Skandha
    Participant

    @jitping: Hello there,
    You have a Read More button on the slider. Do you want one more button?

    Kind Regards,
    Skandha

    in reply to: Demo Content for Travelore Pro #193156
    Skandha
    Participant

    @jonahrodgers: Hello there,
    First of all you will need to install and activate Catch Theme Demo Import plugin.

    Now,
    Go to => Appearance => Catch Theme Demo Import and you should find the option to import demo content.

    Let me know if this works out!
    Kind Regards,
    Skandha

    in reply to: Feature Slider Above Menu #193154
    Skandha
    Participant

    @fireflywebs: Hello there,
    You will need to create a child theme and do a little bit of customization for that. Let me know if you are familiar with child theme customization otherwise I suggest you to hire a customizer to get it done.

    Kind Regards,
    Skandha

    in reply to: Header Video not centre in customer view #193148
    Skandha
    Participant

    @torbenmk: Hello there,
    Please post in your site URL so that I can look into the issue.

    Kind Regards,
    Skandha

Viewing 20 posts - 7,041 through 7,060 (of 12,027 total)