Forum Replies Created

Viewing 20 posts - 7,801 through 7,820 (of 14,494 total)
  • Author
    Posts
  • 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 );
    in reply to: adsense responsive ad #27852
    Sakin
    Keymaster

    @Ralph177: Yes this one is not working. So, you need to check in your ads code in your google ads account. As I can see other ads coming where as this not coming. So, contact the ads support.

    Sakin
    Keymaster

    @htenbyslide: Nice 🙂

    in reply to: add image-icon before text in menu #27850
    Sakin
    Keymaster

    @Djapeto: I see that you have background in the main menu as
    #header-menu .users_icon a { }
    But then for sub-menus you added in like
    #header-menu .seboj a { }
    But instead it should be as
    #header-menu .users_icon .seboj a { }

Viewing 20 posts - 7,801 through 7,820 (of 14,494 total)