Forum Replies Created

Viewing 20 posts - 3,861 through 3,880 (of 4,908 total)
  • Author
    Posts
  • in reply to: change menu with #89887
    Mahesh
    Participant

    @asumi: Please post in your site url.

    Regards,
    Mahesh

    in reply to: Change home page/front page layout #89886
    Mahesh
    Participant

    @soledadescobar: Thank you for using Clean Journal Pro. For putting sidebar, go to Dashboard=> Appearance=> Customize=> Theme Options=> Layout Options and select Primary Sidebar, Content or Content, Primary Sidebar option in Default Layout.
    For changing size of Sldier Container, go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS and add the following code:

    #feature-slider .wrapper {
        width: 90%;
    }

    Note: Adjust the width as per your requirement. Changing width may result some issue in responsive design and you’ll need to use media queries for that. If you are not much familiar with CSS and media queries, I recommend you to hire a customizer.

    Regards,
    Mahesh

    in reply to: Disable Comment Field in Post Page #89885
    Mahesh
    Participant

    @techfinderr: Go to Post=> All Post and edit a post you want to disable comment. On the top right, you’ll see Screen Option click it and some options will slide down. Check on Discussion check box and scroll down below the content you’ll see Discussion Tab. Uncheck Allow comments option in it, this will disable comments for that post. Repeat the process.
    Note: Checking on Discussion checkbox is required only once.

    Regards,
    Mahesh

    in reply to: Adjust the promotion headline bar #89884
    Mahesh
    Participant

    @techfinderr: Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    @media screen and (min-width: 481px) {
        #homepage-message .left-section {
            text-align: center;
            width: 80%;
        }
    }

    By changing color, do you mean to change the background color of Promotion Headline Bar? If yes, add the following CSS:

    #homepage-message {
        background-color: #00cc99;
        border-bottom: 1px solid #00cc99;
        border-top: 1px solid #00cc99;
    }

    Note: You have an error in you Custom CSS. You are missing a closing curly brace at the end. Put an ending curly brace and then only add the above CSS or it won’t work properly.

    Regards,
    Mahesh

    in reply to: Custom CSS not working #89879
    Mahesh
    Participant

    @discoman: You have an error in you Custom CSS code.
    .powered {display: none;)
    which should be ( its a curly brace } )
    .powered {display: none;}
    Hope this fixes the issue. Let me know if any problem occurs.

    Regards,
    Mahesh

    in reply to: Theme Color #89877
    Mahesh
    Participant

    @techfinderr: Color option is available in Adventurous Pro. I recommend you to upgrade to Pro version. Or you’ll need to hire a customizer. Change theme color to #00cc99 sounds vague. If you do want to change link color to the mentioned color, go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    #header-right .widget ul.menu li:hover > a, #header-right .widget ul.menu a:focus, #header-right .widget ul.menu .current-menu-item > a, #header-right .widget ul.menu .current-menu-ancestor > a, #header-right .widget ul.menu .current_page_item > a, #header-right .widget ul.menu .current_page_ancestor > a, a {
        color: #00CC99;
    }

    Regards,
    Mahesh

    in reply to: Problem after updating with header image #89874
    Mahesh
    Participant

    @igarciadelamo: Oh yes, there has been a little bug in the theme. Our team is already on fixing the issue and will be fixed in the next update which will be released soon. We’ll notify you as soon as we release the update. Sorry for the inconvenience and thank you for your patience.

    Regards,
    Mahesh

    in reply to: Slider not working (jQuery Conflict?) #89868
    Mahesh
    Participant

    @bsmitty358gmail-com: Can you please send the your admin credential via email @ mahesh [at] catchthemes [dot] com. I’ll have to check on your server.

    Regards,
    Mahesh

    in reply to: Featured Slider stopped working #89865
    Mahesh
    Participant

    @mariajackson: I checked your site and still seeing only one image in the slider. Can you please send the your admin credential via email @ mahesh [at] catchthemes [dot] com. I’ll have to check on your server.

    Regards,
    Mahesh

    Mahesh
    Participant

    @seanywoo: Is the customizer working fine with other themes (WordPress core themes)? Please check and let me know.

    Regards,
    Mahesh

    in reply to: change position of mobile menu close symbol #89803
    Mahesh
    Participant

    @mupa: I’m afraid this is not possible with our custom options. For this, you might need to hire a customizer or search for menu with with this feature.

    Regards,
    Mahesh

    in reply to: Featured Slider stopped working #89802
    Mahesh
    Participant

    @sbatailler: Thanks for the details. Did check your site. And now the slider seems to be working fine. Please check.

    Regards,
    Mahesh

    in reply to: problems after update #89800
    Mahesh
    Participant

    @uschelbert: The logo is responsive but the Custom CSS you’re using is making causing the issue. Please use the following CSS instead:

    #header-image {
        padding: 20px;
    }
    #main-feat-img {
        margin: 0;
    }

    And for hiding word Home, add the following CSS:

    .home #breadcrumbs {
        display: none;
    }

    Regards,
    Mahesh

    in reply to: Title Tag in Category #89798
    Mahesh
    Participant

    @a2h2: You’ll need to create a child theme for this. You can find more on creating child theme HERE. Then in your child theme’s functions.php add the following codes.

    add_filter( 'get_the_archive_title', function ($title) {
    
        if ( is_category() ) {
    
                $title = single_cat_title( '', false );
    
            } elseif ( is_tag() ) {
    
                $title = single_tag_title( '', false );
    
            } elseif ( is_author() ) {
    
                $title = '<span class="vcard">' . get_the_author() . '</span>' ;
    
            }
    
        return $title;
    
    });

    Regards,
    Mahesh

    in reply to: Problem with Polylang #89794
    Mahesh
    Participant

    @soundaroundme: We had not tested the plugin with Clean Box. But just now, I did some quick test (not with subdomain- cause of some hosting/redirection problem) but with the other like set from content, set from the directory name in pretty permalinks the theme and plugin is working fine. Please change url modification in language setting of the plugin and see if it works.

    Regards,
    Mahesh

    in reply to: I can't hide menu on top bar #89792
    Mahesh
    Participant

    @sece43: Thank you for using Catch Kathmandu Pro. Glad to know you resolved the issue all by yourself. Have a nice day!

    Regards,
    Mahesh

    in reply to: problems after update #89791
    Mahesh
    Participant

    @uschelbert: I checked your site and the logo is in the left and has no shadow. I assume you have resolved the issue. Let me know further.

    Regards,
    Mahesh

    Mahesh
    Participant

    @seanywoo: Our team is already into resolving the problem. We are trying to fix the issue as soon as possible and we’ll let you know. Sorry for the trouble and inconvenience.

    Regards,
    Mahesh

    in reply to: Cannot install Simple Catch Pro version 3.3 #89789
    Mahesh
    Participant

    @rflores: What seem to be the problem? I assume you are not able to update the theme yet, cause you are using Simple Catch Pro (ver 3.3) while the latest version available is ver 3.6. Pro theme cannot be updated directly as free themes. You can download the updated theme from Catch Theme’s account page
    https://catchthemes.com/my-account/
    Then use Catch Web Tools plugin’s Catch Updater module to update the theme.
    https://wordpress.org/plugins/catch-web-tools/installation/
    Here is the video tutorial on how to update your theme with Catch Updater.
    https://www.youtube.com/watch?v=W95SuabDZi8

    Let me know if any problem occurs.

    Regards,
    Mahesh

    in reply to: Delete featured image in post #89788
    Mahesh
    Participant

    @soundaroundme: Yes, it is also possible with that option. Thank you. Have a nice day!

    Regards,
    Mahesh

Viewing 20 posts - 3,861 through 3,880 (of 4,908 total)