Forum Replies Created

Viewing 20 posts - 441 through 460 (of 14,493 total)
  • Author
    Posts
  • in reply to: Removing the search box on every page and location #313195
    Sakin
    Keymaster

    Thanks for your appreciation and saying with Us. Glad to hear that my support worked on your website. 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-shop/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.

    in reply to: “undefined” in Contact Form 7 #313181
    Sakin
    Keymaster

    Ok, I will check it and will confirm with you. Thanks

    in reply to: Removing the search box on every page and location #313180
    Sakin
    Keymaster

    I just check your site and see that there is an issue with the Custom CSS. I have optimized and fixed it. Please replace all your CSS in the “Appearance => Customize => Additional CSS” with the following CSS:

    /* To have the logo on the left on screen width over 1200px */
    @media screen and (min-width: 1200px) {
      .custom-logo-link {
          position: absolute;
          left: 0;
      }
    }
    #site-header-right-menu,
    .mobile-search {
      display: none;
    }
    body.page-id-8,
    body.page-id-60,
    body.page-id-66 {
      background: #dddddd;
    }
    in reply to: “undefined” in Contact Form 7 #313129
    Sakin
    Keymaster

    Hi Tim,

    It looks like a js cache issue, we have updated the theme to version 1.6.3, please update and check it.

    Regards,
    Sakin

    in reply to: Removing the search box on every page and location #313128
    Sakin
    Keymaster

    can you post your site URL and then I can check it.

    in reply to: Is your Gridalicious theme wooCommerce ready? #313122
    Sakin
    Keymaster

    @carr7bar: Gridalicious free theme is not WooCommerce ready, you need to upgrade to pro theme. Gridalicious Pro is WooCommerce-ready. You can check the compare table at https://catchthemes.com/themes/gridalicious-pro/#compare

    in reply to: Removing the search box on every page and location #313120
    Sakin
    Keymaster

    Hi @astro2002,

    You can add the following CSS in the “Appearance => Customize => Additional CSS” box to hide the search inside the menu item on an iPhone:

    .mobile-search {
    	display: none;
    }

    Regards,
    Sakin

    in reply to: Favico #313101
    Sakin
    Keymaster

    Hello Serzh,

    You can go to “Appearance => Customize => Site Identity” and upload images on “Site Icon”.
    If your site hasn’t enabled Customizer then please install any one of our plugins like To Top https://wordpress.org/plugins/to-top/ and it will enable customizer.

    Regards,
    Sakin

    in reply to: “undefined” in Contact Form 7 #313092
    Sakin
    Keymaster

    Hi Tim,

    We have updated the theme to fix this issue. Please update to the latest version and check it.

    Regards,
    Sakin

    in reply to: The text “undefined” appears below contact form tags #313091
    Sakin
    Keymaster

    Hi Daniel,

    We have updated the theme to fix this issue. Please update to the latest version and check it.

    Regards,
    Sakin

    in reply to: Social Icon layout broken since updating to WP 6.1.1 #313071
    Sakin
    Keymaster

    Hello Anna,

    It’s good to know that CSS works for you. Also, on your site when I check the CSS it’s not from our CSS. But when I check the Social Block in my local it’s working fine.

    Regards,
    Sakin

    in reply to: “undefined” in Contact Form 7 #313000
    Sakin
    Keymaster

    Hi Tim,

    Thanks for reporting and we will update to you soon.

    Regards,
    Sakin

    in reply to: Rounded current main menu item #312999
    Sakin
    Keymaster

    Hi Thorsten,

    So, after that CSS if the Sub-menu is also rounded off and want to remove rounded for sub-menu then you can add additional CSS as:

    .catchresponsive-nav-menu .sub-menu a {
    	border-radius: 0;
    }

    Regards,
    Sakin

    in reply to: Social Icon layout broken since updating to WP 6.1.1 #312977
    Sakin
    Keymaster

    Hello Anna,

    Which social plugin are you using? I am not sure how you added that social link to provide you appropriate answer. When I check, there is a style from the WordPress core which is making your social icons block to full width.

    For quick fix, you can add the following CSS in “Appearance => Customize => Additional CSS” box:

    .entry-content .wp-block-social-link {
      display: inline-block;
    }

    Regards,
    Sakin

    in reply to: Demo file please #312967
    Sakin
    Keymaster

    @febriarta : You can also download the demo zip file from the Theme Instructions tab on theme page at https://catchthemes.com/themes/clean-fotografie/#theme-instructions

    in reply to: Rounded corners for post images #312801
    Sakin
    Keymaster

    Hi Thorsten,

    You need to add a border-radius on the image, not the class. So, add the following CSS in “Appearance => Customize => Additional CSS” box:

    .excerpt-image-left .archive-post-wrap img { border-radius: 10px; }
    in reply to: Colums not as described #312749
    Sakin
    Keymaster

    Hi Tim,

    If you want to make it as 3Columns then you need to go to “Appearance => Customize => Theme Options => Featured Category” and then in Layout, you need to select “3 columns”.

    Which icon that you are talking about? Can you explain?

    Regards,
    Sakin

    in reply to: Colums not as described #312746
    Sakin
    Keymaster

    Hi Tim,

    I just check your site and now it’s showing in columns. You have selected 4 columns layout but only added 3 categories. So, you need to add 1 more category and then it will show the 4.

    Regards,
    Sakin

    in reply to: Catch Vogue theme new version broken #312744
    Sakin
    Keymaster

    @leon8847: This is your server configuration issue. As this update uses a New package to allow locally hosting webfonts due to
    GDPR issue as mentioned here https://make.wordpress.org/themes/2022/06/18/complying-with-gdpr-when-using-google-fonts/.

    So, it’s better to ask your hosting server to fix this folder permission issue.

    in reply to: Colums not as described #312743
    Sakin
    Keymaster

    Hi Tim,

    I just check your site and the CSS that you have added is not the same CSS given by Tikaram. When I check the source of your site your CSS is like below:

    @media only screen and (min-width: 35.5em) {
    Â Â .layout-four article {
    Â Â Â Â width: 50%;
    Â Â Â Â float: left;
    Â Â Â Â padding: 0 20px;
    Â Â }
    }
    
    @media only screen and (min-width: 64em) {
      .layout-four  article {
    Â Â Â Â width: 25%;
    Â Â }
    }

    So, you need to remove that and add the clean CSS as below:

    @media only screen and (min-width: 35.5em) {
    	.layout-four article {
    		width: 50%;
    		float: left;
    		padding: 0 20px;
    	}
    }
    
    @media only screen and (min-width: 64em) {
    	.layout-four  article {
    		width: 25%;
    	}
    }
Viewing 20 posts - 441 through 460 (of 14,493 total)