Forum Replies Created

Viewing 20 posts - 3,101 through 3,120 (of 14,501 total)
  • Author
    Posts
  • in reply to: Featured Slider #60721
    Sakin
    Keymaster

    @Pier: Yes, we can use mixed post/page slider using Post/Page IDs. So, we will keep this as your feedback to development team.

    in reply to: 3 questions #60720
    Sakin
    Keymaster

    @Cattext: For #2, you can adjust the padding in the following css and then add it in “Appearance => Theme Options => Custom CSS” box:

    #hgroup-wrap {
        padding-bottom: 50px;
    }
    #main {
        padding-top: 50px;
    }
    in reply to: Featured Post Slider dissappeared #60718
    Sakin
    Keymaster

    @mbrennan: Then update to latest version. It’s already version 3.3.2 https://wordpress.org/themes/catch-kathmandu/ . But be careful looks like you have edited core theme files. So, the edits inside your core theme files catch-kathmandu will be reverted back to original when you update the theme.

    in reply to: Remove Search Box #60716
    Sakin
    Keymaster

    @chrisnewitt: Thanks 🙂

    in reply to: Search results page #60715
    Sakin
    Keymaster

    @effess: To hide that in search result page, you can add the following css in “Appearance => Theme Options => Custom CSS” Box:
    .search-results .entry-meta { display: none; }

    If you are using Breadcrumb NavXT plugin and then you need to check that plugin settings. As you can see in our demo site http://catchthemes.com/demo/catch-kathmandu//?s=hello&submit=Search it’s working fine.

    in reply to: Uploading Newly Purchased Theme #60713
    Sakin
    Keymaster

    @iamamiri: I have already emailed you. Please check in your spam is you haven’t received it.

    in reply to: Center Slider #60708
    Sakin
    Keymaster

    @Kim: I don’t see option to move that slider between two sidebar. I only see that in Catch Evolution Pro theme. So, in order to move that, you need to add the following function in your child theme functions.php file.

    function catchflames_unhook_functions() {
    	remove_action( 'catchflames_before_main', 'catchflames_slider_display', 40 );
    }
    add_action( 'init','catchflames_unhook_functions');
    
    add_action( 'catchflames_before_content', 'catchflames_slider_display', 40 );

    It’s been really out with email as I am working on supporting online. Will check in and reply you.

    Sakin
    Keymaster

    @Leonie: Sorry I don’t get it what you mean. I just check in with Google Structure Data testing tool and it’s showing good. You can also check from https://developers.google.com/structured-data/testing-tool/

    in reply to: Widget panel (backend) #60706
    Sakin
    Keymaster

    @Michaela: It’s work fine when I check in our server with Catch Kathmandu theme, maybe you have plugin or script that is blocking that. We will not force widget like that and we are not allowed to do that as per WordPress.org theme review guideline. So, try disabling plugin one by one to check in if that’s plugin issue. If it’s still not working then let me know it then I will email you to check in details.

    in reply to: Primary Sidebar showing below content #60705
    Sakin
    Keymaster

    @Tazzipoo: Looks like you have customize core theme style.css file. You shouldn’t edit that file. Actually, you should add/edit any file inside core theme directory catch-reposnive. So, you need to edit your theme using theme customizer at “Appearance => Customize” and if you want to do advance coding then you can build child theme and add it as per your need. But if you simply want to change css then you can add your custom css in “Appearance => Theme Options => Custom CSS Options” box.

    Why you don’t edit core theme files like style.css? It’s because all your edits will be reverted back to original when you update the theme and also when you have problem like this we cannot check the issue. So, please revert back your theme to latest version and then backup your style and add in either as child theme or as custom css.

    The issue, I see in your style.css is the following css:

    .site-content {
    	background-color: rgba(0, 0, 0, 0.7);
    /* rgb = 0 0 0 is black color */
    /* a = 0.7 is 70% of alpha channel */
    };
    }

    Replace that with:

    .site-content {
        background: #444;
        background: rgba(0,0,0,0.7);	
    }
    Sakin
    Keymaster

    @Hair Bear: For left align image in your slider you can add the following css in “Appearance => Theme Options => Custom CSS” box:

    #main-slider img {
        float: left;
    }

    But if you want it right, then you need to add in the following css instead:

    #main-slider img {
        float: right;
    }

    For slider effect, you have option in “Appearance => Theme Options => Featured Slider => Slider Options => Transition Effect”

    Yes, you can move your Featured Content below your home content. So, that you have home content just below the slider. For that, go to “Appearance => Theme Options => Featured Content => Featured Settings => Featured Content Position” and check in “Before Footer”

    Also there is on option to add Headline content below your slider from “Appearance => Theme Options => Promotion Headline Options” and add in manual content.

    in reply to: Problem with Page Header on Multilingual-Site #60702
    Sakin
    Keymaster

    @Tobias: What is your setting in “Appearance => Customize => Static Front Page”. If you have checked “A Static page” and selected page that it will display that. But if you leave it as “Your latest posts”, the it will show your latest. So, if you have latest post in both German and English, then it will be fine. But if you only have in German and not in then it will show like that.

    in reply to: Uploading Newly Purchased Theme #60700
    Sakin
    Keymaster

    @iamamiri: where are you uploading to. To upload the theme zip file, you need to go to “Appearance => Themes => Add New => Upload Theme”, then browse the zip file and upload it.

    I will also contact you through email. Just in case if you want me to install that for you.

    in reply to: Stylesheet not active #60697
    Sakin
    Keymaster

    @Michaela: Oh thanks for posting issue and solution. It will surly be helpful to others.

    in reply to: Featured Image Slider Stopped Working #60696
    Sakin
    Keymaster

    @svoelker: Looks like there is conflict between slider script and your plugin or any other scripts that you have added in. So, the what changes you have made in your site recently that stopped it from working. If you have added in or updated plugins then try disabling plugin one by one to find the conflicting plugins.

    in reply to: Featured Post Slider dissappeared #60695
    Sakin
    Keymaster

    @mbrennan: It’s working fine when I check in your site. To find more detail, I need to know which version of Catch Kathmandu Free theme are you using it. When I try to check the source, it’s already been modified. It’s not good to modify core theme files/folders directly. For that you need to build child theme and modify it.

    in reply to: Primary Sidebar showing below content #60670
    Sakin
    Keymaster

    @Tazzipoo: Can you check your site URL and let me know it. It’s not opening.

    in reply to: Programmatically modify featured content? #60669
    Sakin
    Keymaster

    @Stephen: Programmatically you can alter anything as per your need. If you are using Catch Responsive Pro theme then I don’t understand why you need to change featured content image and associated text programmatically. You can simply select “Featured Content” type as “Featured Image Content” and upload your image and text as per your need. For more, refer to theme instructions page at http://catchthemes.com/theme-instructions/catch-responsive-pro/#featured-content

    But if you really want to do it programmatically. Then you can build child theme and then copy catchresponsive_featured_content_display() function to your child theme functions.php file and edit it as per your need.

    in reply to: feature image in posts #60648
    Sakin
    Keymaster

    @cindy: Thanks a lot for your appreciation.

    in reply to: Featured content image size #60647
    Sakin
    Keymaster

    @Jonathan: Did you regenerate the thumbnail using “Regenerate Thumbnail” plugin after activating this theme. I see you have different image sizes. So, can you do that and check in please.

Viewing 20 posts - 3,101 through 3,120 (of 14,501 total)