Forum Replies Created

Viewing 20 posts - 9,041 through 9,060 (of 12,014 total)
  • Author
    Posts
  • in reply to: Change top Menu button font color and Icon in Mobile #165907
    Skandha
    Member

    @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
    Member

    @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
    Member

    @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
    Member

    @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
    Member

    @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
    Member

    @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
    Member

    @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
    Member

    @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
    Member

    @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
    Member

    @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
    Member

    @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
    Member

    @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
    Member

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

    Kind Regards,
    Skandha

    Skandha
    Member

    @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
    Member

    @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

    Skandha
    Member

    @nicolej: Hello Nicole,
    There must be some issue with the notification not showing up. The theme update has already been released.

    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/divin-pro/#updating

    Let me know if this helps you out!

    Kind Regards,
    Skandha

    in reply to: transparency on white backgroung of the home page #165761
    Skandha
    Member

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

    .site {
    	background-color:unset;
    }

    Let me know if this is what you want!
    Kind Regards,
    Skandha

    in reply to: Header media title and Polylang #165758
    Skandha
    Member

    @ville123: First of all you will need to create a child theme to translate the header media title using Polylang. Let me know if you are familiar with child theme customization so that I can guide you how to do it.

    Kind Regards,
    Skandha

    Skandha
    Member

    @nicolej: Hello Nicole,
    Can you let me know which theme version you are using? Divin Pro version 2.0.2 has been released.

    Kind Regards,
    Skandha

    in reply to: Top level menu items look clickable #165748
    Skandha
    Member

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

    .menu-item-has-children > a, .menu-item-has-children {
    	cursor:none;
    }

    Let me know if this is what you want!
    Kind Regards,
    Skandha

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