Forum Replies Created

Viewing 20 posts - 6,921 through 6,940 (of 12,027 total)
  • Author
    Posts
  • in reply to: No WooCommerce pages ? #225928
    Skandha
    Participant

    @maya: Glad it finally worked out. Have a good day! 🙂

    Kind Regards,
    Skandha

    in reply to: ロゴ設定するとアイキャッチがトップに #225926
    Skandha
    Participant

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

    Kind Regards,
    Skandha

    in reply to: Section Sorter – Drag and Drop (stopped working) #225913
    Skandha
    Participant

    @andreas2: Hello there,
    There seems to be a little bug in the Section Sorter when upgraded to WordPress 5.3. The issue will be fixed and an update will be released. I will let you know when the update is released.

    Kind Regards,
    Skandha

    in reply to: Mobile Menu has disappeared #225910
    Skandha
    Participant

    @yarr: Hello there,
    I checked your site you seem to be using theme version 1.1 also you seem to be using WordPress 4.7.15. Please update both your WordPress and Theme Version.

    Kind Regards,
    Skandha

    in reply to: 3 Errors in Stylesheet… #225909
    Skandha
    Participant

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

    .wp-block-button a {
        background-color: #000 !important;
    }
    .wp-block-button a:hover {
        background-color: #222 !important;
    }

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

    in reply to: Can not change font size of heading #225900
    Skandha
    Participant

    @benjo3: Hello Ben,
    First of all I suggest you not to edit style.css directly. If you have to add or override any CSS Code use the Additional CSS section in the customizer.

    To change the font size of <h1> tags
    Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    h1 {
        font-size: 34px !important;
    }

    Likewise you can change the font size for other heading tags.
    Let me know if this works out!
    Kind Regards,
    Skandha

    in reply to: Need help centering site logo #225885
    Skandha
    Participant

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

    Kind Regards,
    Skandha

    in reply to: How to change the order of the modules? #225808
    Skandha
    Participant

    @olgamateus: Hello there,
    The Section Sorter feature to reorder the sections is only available in pro version of the theme. I suggest you to upgrade to pro. You can check out the additional-features available in pro version of the theme.

    Kind Regards,
    Skandha

    in reply to: ロゴ設定するとアイキャッチがトップに #225804
    Skandha
    Participant

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

    Kind Regards,
    Skandha

    in reply to: Secondary Menu is empty #225783
    Skandha
    Participant

    @daniel-pfeiffer: Hello Daniel, 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: Mobile Menu has disappeared #225761
    Skandha
    Participant

    @yarr: Hello there,
    You seem to be using a very old version of the theme. Please update your theme to the latest version and let me know if the issue is resolved.

    Kind Regards,
    Skandha

    in reply to: iPhone bug and Menus Footer Can’t Display Content #225760
    Skandha
    Participant

    @wonpet: Glad I was able to help you out. Have a good day! 🙂

    Kind Regards,
    Skandha

    in reply to: How to remove the "Category:" from the archive pages header #225757
    Skandha
    Participant

    @hr: Hello there,
    I will guide how you can remove the text category using a child theme.
    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 Izabel, 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.

    add_filter( 'get_the_archive_title', function ($title) {
    
    if ( is_category() ) {
    
        $title = single_cat_title( '', false );
    
    } elseif ( is_tag() ) {
    
      	$title = single_tag_title( '', false );
    }
    
    return $title;
    
    });

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

    in reply to: Theme elements aren't responsive for tablet and phone #225753
    Skandha
    Participant

    @bmw2182: 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/catch-foodmania/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: Header Media Image getting cut off top and bottom #225752
    Skandha
    Participant

    @nekkid: Hello there,
    I checked your site and you seem to have upload a header image of dimension of 1536*646px. Can you try uploading an image of 1920*1080px.

    Kind Regards,
    Skandha

    in reply to: Secondary Menu is empty #225750
    Skandha
    Participant

    @daniel-pfeiffer: Hello Daniel,
    The Secondary menu is not showing up due to a CSS code you have added in your Additional CSS.
    Go to => Appearance => Customize => Additional CSS and remove the following CSS Code.

    .site-navigation {
         visibility: hidden;
    }

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

    in reply to: iPhone bug and Menus Footer Can’t Display Content #225659
    Skandha
    Participant

    @wonpet: Hello there,

    1. For the issue on iphone
    Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    .custom-header {
        background-attachment: scroll !important; 
    }

    2. The menu in the footer does not show correct content because that is Social Menu for Social Medias like Facebook, Twitter and so on and you seems to be using regular links for that.

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

    in reply to: No WooCommerce pages ? #225639
    Skandha
    Participant

    @maya: Hello there,
    I told see WooCommerce Plugin on your site.
    Please install and activate WooCommcerce Plugin.
    Go to => Dashboard => Plugins => Add New => Search woocommerce Install and Activate the plugin.
    You should see WooCommerce tab in the Dashboard once you install and activate the plugin.

    Kind Regards,
    Skandha

    in reply to: format sub-heading for featured content #225638
    Skandha
    Participant

    @abisbee: Glad I was able to help you out. Have a good day! 🙂

    Kind Regards,
    Skandha

    in reply to: format sub-heading for featured content #225623
    Skandha
    Participant

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

    /* To vertically align promotion headline content */
    #promotion-message .right {
    	max-width:unset !important;
    }
    #promotion-message .right .promotion-button {
    	margin-top: 0;
    }
    
    /* To have an image in the button */
    #promotion-message .right .promotion-button {
        background-image: url('');
        background-color: unset;
    }

    You will need to add the image url in between url(''). I am not sure if the image will show up well.
    Let me know if this works out!
    Kind Regards,
    Skandha

Viewing 20 posts - 6,921 through 6,940 (of 12,027 total)