Forum Replies Created

Viewing 20 posts - 7,801 through 7,820 (of 14,497 total)
  • Author
    Posts
  • in reply to: Featured Post Slider for pages not working #28246
    Sakin
    Keymaster

    @Amanda: Which theme are you using it? This is Catch Kathmandu Free theme support forum. But I assumed that you have upgraded to Catch Kathmandu Pro theme.
    Did you check in theme instruction page at http://catchthemes.com/theme-instructions/catch-kathmandu-pro/

    Homepage uses, Featured Slider, Homepage Headline, Homepage Featured Content and then you have option to enable either latest post or static page below the homepage featured content.

    For Featured Slider:
    Catch Kathmandu Pro have 4 different slider type to choose from 1) Featured Image Slider, 2) Featured Page Slider, 3) Featured Category Slider and 4) Featured Post Slider.
    1. Featured Image Slider
    This is an Independent Image Slider where you can upload your own image and add title, content and link all optional. For this, follow the Steps as below:
    * Go to “Appearance => Theme Options => Featured Slider” from your WordPress Dashboard
    * Under Slider Options Select Slider Type as Featured Image Slider.
    * Go to Featured Image Slider Options, where you have the option of uploading images, connecting to an image link, adding in the title, content, and setting target to open link in a new window as needed and Save changes

    2. Featured Page Slider
    Featured Page Slider is there to highlight your Pages in the Slider. For this first, you need to create page from “Pages => Add New”. Then you need to add Featured Image in your page. See below to see how to add featured image in your page.

    * Go to “Appearance => Theme Options => Featured Slider” from your WordPress Dashboard
    * Under Slider Options Select Slider Type as Featured Page Slider.
    * Go to Featured Page Slider Options and simply insert the ID numbers for Pages in the boxes, one Page ID number in each box
    as needed and Save changes

    3. Featured Category Slider
    Featured Category Slider is there to highlight your Posts in Particular Category. For this first, you need to create post from “Posts => Add New” and assign category to the post. Then you need to add Featured Image in your post. See below to see how to add featured image in your post.

    * Go to “Appearance => Theme Options => Featured Slider” from your WordPress Dashboard
    * Under Slider Options Select Slider Type as Featured Category Slider.
    * Go to Featured Category Slider Options and simply select the category and Save changes

    4. Featured Post Slider
    Featured Post Slider is there to highlight your Posts in the Slider. For this first, you need to create post from “Posts => Add New”. Then you need to add Featured Image in your post. See below to see how to add featured image in your post.

    * Go to “Appearance => Theme Options => Featured Slider” from your WordPress Dashboard
    * Under Slider Options Select Slider Type as Featured Post Slider.
    * Go to Featured Post Slider Options and simply insert the ID numbers for Posts in the boxes, one Post ID number in each box
    as needed and Save changes

    For Homepage Headline
    This headline comes with default text. You have the option of changing headline and sub-headline text or disabling it through “Appearance => Theme Options => Homepage Settings => Homepage Headline Options” in your WordPress Dashboard.

    For Homepage Featured Content
    Homepage Featured Content Options give you the ability to showcase your portfolio, photos, articles or services in Homepage. By default, this featured content is shown with default images and texts. You can either change the image and text or disable it through “Appearance => Theme Options => Homepage Settings => Homepage Featured Content Options” in your WordPress Dashboard.

    For more visit theme instruction page.

    in reply to: Header Design #28234
    Sakin
    Keymaster

    @Bethann: The best option will be to create 3 images.
    1. Just the png logo
    2. Top Left corner blue/white gradient image
    3. Bottom Right corner blue/white gradient image

    Then you can upload the logo and then add the following css in “Appearance => Theme Options => Custom CSS” box for 2 gradient images.

    #masthead {
        background: url("TopLeftImageURL") no-repeat scroll left top transparent;
    }
    #hgroup-wrap {
        background: url("BottomRightImageURL") no-repeat scroll right bottom transparent;
    }
    in reply to: Image borders #28228
    Sakin
    Keymaster

    @koh: Try adding in the following CSS in “Appearance => Theme Options => Custom CSS” box.

    #main img,
    #main img.size-full, 
    #main img.size-large, 
    #main img.wp-post-image { 
        border: none; 
        padding: 0; 
        max-width: 100%;
    }

    But if you are talking about Webstagram image in your sidebar, then you an further add the following css.

    #main .media-grid a {
        border: none;
        box-shadow: none;
    }
    in reply to: Continue Reading not showing up. #28209
    Sakin
    Keymaster

    @CollegeCook: Sorry this option to remove the excerpt is only there in Simple Catch Pro where you can change “Content Layout” to “Full Content Display” from “Appearance => Theme Options => Layout Options =>Content Layout”, then your site will show all the content before more tag.

    For Simple Catch Free version, you can achieve this by building child theme and then copy content.php to your child theme and change the following code
    <?php the_excerpt(); ?>
    To
    <?php the_content(); ?>

    in reply to: Add text in front of social media icons #28101
    Sakin
    Keymaster

    @marja: If you have just change any settings in theme options panel then it should have worked. Also there are extra code that you don’t need to add. Remove the following codes in your code.
    if ( ! function_exists( 'catchbox_socialprofile' ) ):

    endif; // catchbox_socialprofile
     
    // Load Social Profile catchbox_site_generator hook
    add_action('catchbox_site_generator', 'catchbox_socialprofile', 10 );

    If you change any settings in “Appearance => Theme Options” then you don’t need to change following code. Otherwise you need to change the following code
    //delete_transient( 'catchbox_socialprofile' );
    to
    delete_transient( 'catchbox_socialprofile' );

    in reply to: Child Theme Help #28098
    Sakin
    Keymaster

    @HarveyLo: Remove the previous css and add the following.
    #branding, #header-menu { min-width: 1190px; }

    in reply to: Continue Reading not showing up. #28094
    Sakin
    Keymaster

    @CollegeCook: It is not showing as the excerpt text length is less than what is defined in “Appearance => Theme Options => Excerpt / Mote Tag Settings”. So, either write more text in your post content or you need to reduce the excerpt length in theme options panel.

    in reply to: Add text in front of social media icons #28090
    Sakin
    Keymaster

    @marja: It’s difficult to check in ling code here. Can you paste it in http://gist.github.com/ and link here. So, that I can read you code clearly. Also after you add this code you need to make any changes in theme options to clear the cache.

    in reply to: Add text in front of social media icons #28000
    Sakin
    Keymaster

    @marja: Sorry there is no option to change that in Catch Box Free Version. For that you need to build child child and then create functions.php file in your child theme and then copy catchbox_socialprofile in your child theme functions.php file and add the title below: <div class="social-profile">

    in reply to: How to change header size #27999
    Sakin
    Keymaster

    @Onyinye: It’s not possible to change with the changes in menu every time.

    in reply to: White Space under Header Image on iPhone #27978
    Sakin
    Keymaster

    @pomegranate22: Thanks it got fixed.

    in reply to: How to change header size #27976
    Sakin
    Keymaster

    @Onyinye: Sorry that will be difficult due to responsive design. Better hire customizer for this.
    But if you are keeping this same menu item then try adding in the following css in “Appearance => Theme Options => Custom CSS” box.

    @media screen and (min-width: 1061px) {
    #access ul li a { padding: 0 21px; }
    #access ul li#menu-item-64 a { padding: 0 20px; }
    }
    @media screen and (max-width: 961px) {
    #access ul li a { padding: 0 17px; }
    #access ul li#menu-item-64 a { padding: 0 13px; }
    }
    @media screen and (max-width: 769px) {
    #access ul li#menu-item-64 { border-right: none; }
    #access ul li a { padding: 0 10px; }
    #access ul li#menu-item-64 a { padding: 0 9px; }
    }
    in reply to: Child Theme Help #27974
    Sakin
    Keymaster

    @HarveyLo: You can add the following css in your child theme style.css

    #branding {
        display: block;
        overflow: hidden;
        width: 100%;
    }

    And then check your header.php file as I see extra < in the start.

    in reply to: WPML Plugin unmatch?? #27964
    Sakin
    Keymaster

    @KAORI: Yes Version 2.1.1 if the latest version. Sorry but WPML said that it’s WMPL compatible. Can you post in your site URL and I might need to check in your admin section. So, I will contact you through email for faster correspondence.

    in reply to: Homepage not showing #27959
    Sakin
    Keymaster

    @Damiano: This is really confusing. How do you add in Category “Relacja” as Homepage. You can set homepage either as Static Page or latest posts from “Settings => Reading”. And to enable slider only in homepage you need to go to “Appearance => Theme Options => Featured Slider => Slider Options” and then select “Homepage” in
    Enable Slider.

    in reply to: WPML Plugin unmatch?? #27949
    Sakin
    Keymaster

    @KAORI: Which version Catch Everest Pro Theme you are using it. If you are using latest version of Catch Everest Pro theme then you don’t need to build child theme to add support for WPML plugin, see in their site http://wpml.org/theme/catch-everest-pro/ . The catcheverest_wpml_invalidcache function has already been added. I think you just need to work on String Translation from “WPML => String Translation”.

    Did you talked with WMPL support? Also check in you have any cache plugin installed which is blocking it.

    in reply to: Featured Post Slider for pages not working #27946
    Sakin
    Keymaster

    @bigmanny: By the way Catch Kathmandu Free theme doesn’t have Page Slider. It only have option to choose from Post Slider or Category Slider. For Page Slider you need to upgrade to Pro version. See the theme instruction of Pro version at http://catchthemes.com/theme-instructions/catch-kathmandu-pro/

    in reply to: Adding "Latest posts" to static homepage #27945
    Sakin
    Keymaster

    @Onyinye: You cannot add both static page and latest post in homepage at a same time. Why don’t you use Image Slider link in your demo page http://catchthemes.com/demo/simplecatch-pro/ and then add your latest posts in homepage.

    in reply to: Search Form in a page post? #27944
    Sakin
    Keymaster

    @Quinn: Simple Catch Pro has Search Form in 404 page. Yes, you can remove search form from your sidebar through “Appearance => Widgets”. Then to add Search Form in page. there is only option to add search form in Sidebar in other pages. If you want to add in then you need to build child theme and then create functions.php file in your child theme and then copy simplecatch_loop function to your child theme functions.php file and add the search form code where you need it.

    <?php  
    // get search form
    get_search_form();
    ?>
    in reply to: Child Theme Help #27942
    Sakin
    Keymaster

    @HarveyLo: Ok for that, you need to create functions.php file in your child theme and add the following codes.

    <?php
    // Removing the Default Action Hook
    function unhook_catchevolution_functions() {
    	remove_filter( 'wp_head', 'catchevolution_responsive', 1 );
    }
    add_action( 'init', 'unhook_catchevolution_functions' );
    
    // Removing responisve script and style 
    function catchevolution_child_scripts_method() {
    	
    	//Responsive 
    	wp_dequeue_script( 'catchevolution-menu' );
    	wp_dequeue_style( 'catchevolution-responsive' );
    	wp_dequeue_script( 'catchevolution-fitvids' );	
    	
    } // catchevolution_child_scripts_method
    
    add_action( 'wp_enqueue_scripts', 'catchevolution_child_scripts_method', 20 );
Viewing 20 posts - 7,801 through 7,820 (of 14,497 total)