Forum Replies Created

Viewing 20 posts - 9,041 through 9,060 (of 12,027 total)
  • Author
    Posts
  • Skandha
    Participant

    @debgoonan513: To update pro theme you’ll need to first download the theme from your https://catchthemes.com/my-account/ page. Then install Catch Web Tools plugin and activate Catch Updater Module. https://wordpress.org/plugins/catch-web-tools/
    Please check the tutorial video in the link below:
    https://www.youtube.com/watch?v=W95SuabDZi8
    For more, check out theme instructions at https://catchthemes.com/theme-instructions/catch-box-pro/#updating

    Let me know if this helps you out!

    Kind Regards,
    Skandha

    in reply to: Need logo larger, centered, and responsive on mobile #165977
    Skandha
    Participant

    @rgraham: I will need to check your site in order to look into the issue. Since your site isn’t live I will need your WP admin login credentials. I will contact you shortly by email.

    Kind Regards,
    Skandha

    in reply to: Recent Posts on Home Page show more than selected category #165976
    Skandha
    Participant

    @twicklund: Please post in your site URL so that I can look into the issue.

    Kind Regards,
    Skandha

    in reply to: Can't remove sidebar on the hompage #165975
    Skandha
    Participant

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

    Kind Regards,
    Skandha

    in reply to: Home not responsive with iphone #165974
    Skandha
    Participant

    @valelotartaro: Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    #fullpage .section, #feature-slider-section .hentry {
         background-attachment:scroll !important; 
    }

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

    in reply to: Change top Menu button font color and Icon in Mobile #165907
    Skandha
    Participant

    @greenwhite560: Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    /* To remove the margin in mobile menu */
    .main-navigation a {
    	margin-top:0;
    }
    
    /* To make the header image showup better on mobile phones */
    .custom-header::before {
    	background-position:77% center;
    }

    Let me know if this resolves the issues.
    Kind Regards,
    Skandha

    in reply to: want sidebar in 404 error page #165903
    Skandha
    Participant

    @naoko-kaku: Go to => Child Theme Folder => create 404.php file and add the code in this link.

    Then Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    .error404 .entry-header, .error404 .entry-content {
    	width:100% !important;
    }
    .error404 #primary {
    	width:590px !important;
    	float:left !important;
    }
    .error404 #main .widget {
    	float:unset !important;
    	margin-right:0 !important;
    	width:unset !important;
    }
    .error404 #primary #content {
    	margin:0 !important;
    }
    #content .error404 {
    	padding: 10px 5% !important;
    }

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

    in reply to: Optional css for menu items #165902
    Skandha
    Participant

    @fireflywebs: Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    .menu-accent a {
        background-color:#879845;
    }

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

    in reply to: Feature Slider #165900
    Skandha
    Participant

    @valelotartaro: Glad you were able to figure it out. Let me know if you have anymore issues. Have a good day! 🙂

    Kind Regards,
    Skandha

    in reply to: Where can i find instructions #165898
    Skandha
    Participant

    @vapperuba: Hello there,
    To have the Products and Shopping Cart section you will need to install free WordPress Plugin WooCommerce. After installing and activating the plugin you will find WooCommerce Products Showcase option in the customzier.

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

    in reply to: Header media title and Polylang #165823
    Skandha
    Participant

    @ville123: Go to => Child Theme folder => functions.php and add the following Code.

    function polylang_translation() {
     	if ( function_exists( 'pll_register_string' ) ) {
    	 	$header_media_title = get_theme_mod( 'catch_fullscreen_header_media_title', esc_html__( 'Dancing Under The Sky', 'catch-fullscreen-pro' ) );
    		pll_register_string( 'catch_fullscreen_header_media_title', $header_media_title, 'Catch Fullscreen Pro' ); //die('aaaa');
    	}
    }
    add_action ( 'admin_init', 'polylang_translation' );
    
    function catch_fullscreen_header_title( $before = '', $after = '' ) {
    		if ( is_front_page() ) {
    			$header_media_title = get_theme_mod( 'catch_fullscreen_header_media_title', esc_html__( 'Dancing Under The Sky', 'catch-fullscreen-pro' ) );
    
    			if ( $header_media_title ) {
    				if( class_exists( 'Polylang' ) ) {
    					echo $before . pll__( $header_media_title ) . $after;
    				}
    				else{
    					echo $before . wp_kses_post( $header_media_title ) . $after;
    				}
    			}
    		} elseif ( is_singular() ) {
    			if ( is_page() ) {
    				if( ! get_theme_mod( 'catch_fullscreen_single_page_title' ) ) {
    					the_title( $before, $after );
    				}
    			} else {
    				the_title( $before, $after );
    			}
    		} elseif ( is_404() ) {
    			echo $before . esc_html__( 'Nothing Found', 'catch-fullscreen-pro' ) . $after;
    		} elseif ( is_search() ) {
    			/* translators: %s: search query. */
    			echo $before . sprintf( esc_html__( 'Search Results for: %s', 'catch-fullscreen-pro' ), '<span>' . get_search_query() . '</span>' ) . $after;
    		} else {
    			the_archive_title( $before, $after );
    		}
    	}

    Now, you should be able to translate the Header Media Title when you Go to => Dashboard => Languages => String Translation.

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

    in reply to: Altering copyright text #165821
    Skandha
    Participant

    @rippert: Hello Rip, 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/catch-base/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

    in reply to: Change top Menu button font color and Icon in Mobile #165819
    Skandha
    Participant

    @greenwhite560: Please post in your site URL so that I can look into the issue.

    Kind Regards,
    Skandha

    in reply to: Where can i find instructions #165818
    Skandha
    Participant

    @vapperuba: Please post in your site URL so that I can look into the issue.

    Kind Regards,
    Skandha

    in reply to: transparency on white backgroung of the home page #165817
    Skandha
    Participant

    @didier-ferret: Hello, Didier, 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/catch-kathmandu/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

    in reply to: Customizer Not loading: sanitize-functions.php Line 102 & 123 #165816
    Skandha
    Participant

    @nicolej: This is strange. I will need to have a look at your site. For that I will need your WP admin credentials. I will contact you shortly by email.

    Kind Regards,
    Skandha

    in reply to: want sidebar in 404 error page #165813
    Skandha
    Participant

    @naoko-kaku: You will need to create a child theme and customize your site for that. If you are familiar with child theme customization let me know, otherwise I suggest you to hire a customizer to get it done.

    Kind Regards,
    Skandha

    Skandha
    Participant

    @steph: Glad you were able to figure it out. Have a good day! 🙂

    Kind Regards,
    Skandha

    Skandha
    Participant

    @nicolej: Go to => Appearance => Customize => Theme Options => Font Family Options => In the drop-down list of the fonts you should be able to find Qwigley, cursive font.

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

    Skandha
    Participant

    @nicolej: Hello Nicole,
    I’m afraid this is not possible using the available theme options. You will need to get your customized for this. I suggest you to hire a customizer if you really need this.

    Kind Regards,
    Skandha

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