Forum Replies Created

Viewing 20 posts - 201 through 220 (of 228 total)
  • Author
    Posts
  • sujapati
    Keymaster

    @Hansh: Glad to know you found the solution. Feel free to contact me for any other  theme-related issues

    in reply to: After the last update the pages give a 404 error #334519
    sujapati
    Keymaster

    @DeumWottan: Please share your URL so that we can check on your site.

    in reply to: try to reproduce the layout of the warble demo #334518
    sujapati
    Keymaster

    @Pikabon: I see you have made lots of changes on the ‘Primary Header’ which has caused the changes on structure of header. So please reset the primary header and add menu once again. For this please follow the following steps:

    i.  Go to your dashboard Appearance => Site Editor
    ii. Then you need to click on Patterns => Manage all template parts
    iii. You will see lists of template parts, you can find the primary header there.
    iv. On the right side of the primary header list there you need to click on the clock icon to reset it.

    Below is the screenshot

    image-3

    Thanks
    Sujapati

    in reply to: menu goes to the line #334513
    sujapati
    Keymaster

    Hello Pikabon,
    Thanks for choosing our theme. As you can see we have a header that includes the search, cart, and user account navigations menu by default causing the unavailability of larger spaces for the main menu. So in case you don’t want to use the header right on your site, you will need to add the following CSS to your theme.

    body .wp-block-main-header .wp-block-navigation {
    width: auto;
    }

    Thanks
    Sujapati</div>

    in reply to: latest from the editorial #334511
    sujapati
    Keymaster

    @HansH: You should follow the following steps for the columns to the ‘latest from the editorial’.

    i. Go to the patterns folder of the theme file, there you will find ‘latest-posts.php’.
    ii. Inside the file you will find wp:query “perPage” :3 (i.e. default), please make it 4 or 5 as your site requires.
    iii. Then go to the browser  login to your admin section, Go to Appearance => Site Editor
    iv. Now you  will need to click on the list view icon(three horizontal lines)
    iv. Select the ‘latest from the editorial pattern’ where you will need to click Qurey Loop => Post Template
    v. There on the right side you will find the columns field  where you can set the columns to 4 or 5 as you want
    (Please view the attached image for detailed information)

    image-2

    Threadwears Corporate is also the same Threadwears Pro theme. It’s just one of the variations of threadwears pro that one can use as per as their requirements.

    Thanks
    Sujapati

     

    sujapati
    Keymaster

    @HansH: Glad to hear that it worked for you. Please feel free to contact me if there are any issues.

    sujapati
    Keymaster

    Hello HansH,
    For reducing the gap between two patterns, please add the following CSS

    .wp-block-section {
    padding-top: clamp(42px, 5.5vw, 60px);
    }
    

    And for the gap between the group heading and the content, add the following CSS,

    
    .wp-block-section .wp-block-group-heading {
    margin-bottom: clamp(21px, 3.5vw, 35px);
    position: relative;
    }

    Thanks
    Sujapati

    in reply to: Increased Page Width #334050
    sujapati
    Keymaster

    @Glen: Glad to know that you have achieved the solution. Let me know if you have any further theme-related issues.

    in reply to: Increased Page Width #334032
    sujapati
    Keymaster

    @Glen: I see you’ve made some custom changes to the theme. Please add the following snippets to adjust the content width.

    .single.no-sidebar #primary.content-area,
    .page.no-sidebar #primary.content-area {
       max-width: 1200px;
    }

    Thanks

    in reply to: Testimonial – Removing Red Bar #334030
    sujapati
    Keymaster

    @Glen: You can’t see any selector for the red bar because it’s a pseudo-element. If you want to remove it, you can add the below CSS code.

    #testimonial-content-section .post-thumbnail::before {
    	display: none;
    }

    Thanks
    Sujapati

    in reply to: Remove ‘Home” #334029
    sujapati
    Keymaster

    @Glen: You can remove the entry-title ‘home’ by adding the following CSS.

    .home .site .site-main header.entry-header .section-title {
    	display: none;
    	background: red;
    }
    in reply to: Remove ‘Home” #334004
    sujapati
    Keymaster

    @Glen: Do you want to remove ‘Home’ from your menu? Please kindly post your URL so that I can check on your site.

    in reply to: Increased Page Width #334000
    sujapati
    Keymaster

    @Glen: No you won’t get any problems by adding max-width property. Let me know if there are any issues.

    in reply to: Compatibility with Elementor #333999
    sujapati
    Keymaster

    @liberating-maestry:  I don’t think you should have issues using Elementor with the theme. You can use our Page Builder Companion plugin. Please feel free to reach us if there are any issues.

    in reply to: Shortcode at excerpt #333634
    sujapati
    Keymaster

    @alexandregaeta: Sorry for the inconvenience. Please kindly provide the exact shortcode name and code you want to implement in your theme so I can provide you with the required code.

    in reply to: FSE Pro Plugin not showing anything #333229
    sujapati
    Keymaster

    @liuyict:  Please post in your site URL so that I can check for issues on your site and provide you with the required fix.

     

    in reply to: FSE Pro Plugin not showing anything #333226
    sujapati
    Keymaster

    Hello Liuyct,

    Sorry for the difficulty. Our team is researching it and will get back to you shortly.

    Thanks
    Sujapati

    in reply to: Shortcode at excerpt #333215
    sujapati
    Keymaster

    Hello Alexandregaeta,

    If your shortcode is not working in excerpts, it might be due to the fact that WordPress, by default, doesn’t execute shortcodes in excerpts. You can enable shortcode execution in excerpts by adding a filter to your theme’s functions.php file.
    Here’s an example of how you can enable shortcode execution in excerpts:

    // Enable shortcodes in excerpts 
    function enable_shortcodes_in_excerpt() { 
        add_filter('the_excerpt', 'do_shortcode'); 
    } 
    add_action('init', 'enable_shortcodes_in_excerpt');
    

    You can add this code to your child theme’s functions.php file. This code adds a filter to the excerpt, applying the do_shortcode function, which allows shortcodes to be executed in the excerpt.
    Please be cautious when adding code to your theme’s files, and ensure you have a backup before making changes.

    Thanks
    Sujapati

     

     

     

    in reply to: Read more bloc on static page #333150
    sujapati
    Keymaster

    Hello Sylvie,

    If you want something like a Toggle function(ie. show more or show less), you will need extra js snippets or you can use any other available plugins. Otherwise, if you only want to minimize the lines of code, there is an excerpt block available. You can try that.

    Thanks
    Sujapati

    in reply to: Change footer text #333111
    sujapati
    Keymaster

    @jessica: I’m happy to hear that and thank you for using Catch Shop Pro. I hope you have a productive day.

Viewing 20 posts - 201 through 220 (of 228 total)