Forum Replies Created

Viewing 20 posts - 7,821 through 7,840 (of 14,504 total)
  • Author
    Posts
  • 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 { }

    in reply to: White space above post #27848
    Sakin
    Keymaster

    @Jonathan: For 2 it will be as below:

    .hentry, .no-results, #author-info, #disqus_thread, #content .error404 {
        padding-top: 2px;
    }
    in reply to: adsense responsive ad #27842
    Sakin
    Keymaster

    @Ralph177: I still can see it in your Header Right Sidebar in your site rednecksoftheworld.com. Can you refresh and check in as it is showing for me.

    in reply to: Menu Not Shown when Header Sidebar Wigget is used #27840
    Sakin
    Keymaster

    @yuccacane: That option is not there. Can you send me your site URL? I will try to see what I can do it.

    in reply to: Social icons display blank on hover #27839
    Sakin
    Keymaster

    @tlrome: Catch Evolution Theme uses the following Media screen for the responsive design. So, when you edit the width in normal css, you need to think about the following media screen, which are defined in responsive.css file.

    @media screen and (max-width: 1224px) {
    
    }
    @media screen and (max-width: 1060px) {		
    
    }
    @media only screen 
    and (min-device-width : 768px) 
    and (max-device-width : 1024px) 
    and (orientation : landscape) {
    
    }
    @media screen and (max-width: 960px) {	
    
    }
    
    @media (max-device-width: 960px) {	
    
    }
    
    @media screen and (max-width: 767px) {
    
    }
    @media only screen 
    and (min-width: 480px) 
    and (max-width: 767px) {
    
    }
    @media screen and (max-width: 479px) {
    
    }
    @media screen and (max-width: 320px) {
    
    }

    But if you want to just modify the width only in large screen and leave the small screen as it is then, there is simple trick to use min-width, which will allow you to modify only for large screen.

    /* For Screen Size with 1225px and higher */
    @media screen and (min-width: 1225px) {
    
    }

    Fore more details about Media Queries tutorial, Click Here

    Sakin
    Keymaster

    @htenbyslide: To remove the slider background effect, you need to go to “Appearance => Theme Options => Featured Post Slider => Slider Effect Options” and check “Disable Slider Background Effect”. Save it.

    in reply to: Child Theme Help #27837
    Sakin
    Keymaster

    @HarveyLo: Yes you can create new child theme with the folder catchevolution-child in theme directory. Then you need to create style.css in your child theme folder. Click Here for the sample style.css

    in reply to: Featured post slider #27836
    Sakin
    Keymaster

    @Viktoria: I see that you are using Catch Kathmandu Free Theme which only have option to use Featured Post Slider or Featured Category Slider. This slider is created to highlight the post. Did you check in Theme Instructions page at http://catchthemes.com/theme-instructions/catch-kathmandu/.

    1. First, you need to create post and add in the Featured image in your post.
    How to add Featured Image in Post?
    * Open the editor of the post where you want to display image, and locate the Featured Image module in the bottom right corner under Page Attributes. Click on Choose a Featured Image.
    * Then you can either upload the image from your computer or select the existing image from your media library and click on Set Featured Image. Click to view screenshot
    2. Then you need to go to “Appearance => Theme Options => Featured Slider” and in Slider Options, select Post Slider or Category Slider.
    3. If you choose “Post slider” then you need to go to “Appearance => Theme Options => Featured Slider => Featured Post Slider Options” and simply insert the ID numbers for Posts in the boxes, one Post ID number in each box. Click to view screenshot
    But if you choose “Category Slider”, then you need to go to “Appearance => Theme Options => Featured Slider => Featured Category Slider Options” and select the category.
    4. Click on Save Changes button

    But if you want Featured Image Slider where you want independent image slide then you need to upgrade to Pro version. See the Catch Kathmandu Pro version theme instructions at http://catchthemes.com/theme-instructions/catch-kathmandu-pro/

    in reply to: Changing the margin of the main content #27833
    Sakin
    Keymaster

    @leparaplui3: This them is build in 978 Grid system. So, your content is already on the left. Maybe you can play with the following css.

    /* For Main Layout Width */
    #main.layout-978 {
        width: 978px;
    }
    /* For content Layout Width */
    #content.col8 {
        width: 642px;
    }
    /* For sidebar Layout Width */
    #sidebar.col4 {
        width: 306px;
    }
    in reply to: Responsive Design is not working #27832
    Sakin
    Keymaster

    @Paul: I check in your site and it’s not working in all mobile devices and it’s same like in the screenshot you have provided. When I check in details, I found that the your mobile settings in controlled from WiziApp. Check you plugins and deactivate it.

    in reply to: How to stop Catch Kathmandu Pro from "call home" #27831
    Sakin
    Keymaster

    @Alex: Maybe that’s the Theme Updater. It will try to check in for Theme Update. You can upload screenshot in your site or any screenshot site and paste in the image URL here.

Viewing 20 posts - 7,821 through 7,840 (of 14,504 total)