Forum Replies Created

Viewing 20 posts - 14,281 through 14,300 (of 14,499 total)
  • Author
    Posts
  • in reply to: Search Box #2324
    Sakin
    Keymaster

    @Anusha: you can actually disable comment in each page and post. See this http://en.support.wordpress.com/enable-disable-comments/

    in reply to: Search Box #2320
    Sakin
    Keymaster

    @Anusha: can you send me your site url?

    in reply to: Website is Intermittently Glitchy in IE #2316
    Sakin
    Keymaster

    @Gary: welcome anytime. thanks.

    in reply to: Problems with I. Explorer #2308
    Sakin
    Keymaster

    @Palel: Sorry for that. Let me know if I can help you with.

    in reply to: Theme Logo in Window Tab #2307
    Sakin
    Keymaster

    @UndeadStooge: I think you are talking about removing or changing favicon. To do that go to “Theme Options -> Theme Options -> Fav Icon Options” in your WordPress Dashboard and change the image or disable it.

    in reply to: Woocommerce #2306
    Sakin
    Keymaster

    @msintenie: Simple Catch Pro theme is not ready for WooCommerce. But you can build a child theme

    Crate a new child theme where you can create two files: style.css and functions.php

    style.css code as below:

    /*
    Theme Name: Simple Catch Pro WooCommerce
    Theme URI: http://catchthemes.com/themes/simple-catch-pro/
    Description: Child theme for the Simple Catch Pro to suppor WooCommerce Plugin
    Author: Catch Themes
    Author URI: http://catchthemes.com/
    Template: simple-catch-pro
    */
    @import url("../simple-catch-pro/style.css");

    functions.php code as below:

    <?php
    /**
    * Adding support for WooCommerce Plugin
    *
    * uses remove_action to remove the WooCommerce Wrapper and add_action to add Simple Catch Wrapper
    *
    */
    remove_action( 'woocommerce_before_main_content', 'woocommerce_output_content_wrapper', 10);

    remove_action( 'woocommerce_after_main_content', 'woocommerce_output_content_wrapper_end', 10);

    add_action('woocommerce_before_main_content', 'simplecatch_child_woocommerce_start', 15);

    function simplecatch_child_woocommerce_start() {
    echo '<section class="page woocommerce">';
    }

    add_action('woocommerce_after_main_content', 'simplecatch_child_woocommerce_end', 15);

    function simplecatch_child_woocommerce_end() {
    echo '</section></div>';
    }

    in reply to: Catch Box on mobile devices #2304
    Sakin
    Keymaster

    @vaskrupp: Yes that’s a good approach. As our theme is always being updated with latest patches and new features.

    in reply to: functions.php #2303
    Sakin
    Keymaster

    @KeighDesign: thanks and it’s great that the plugin helped you.

    in reply to: Problems with I. Explorer #2302
    Sakin
    Keymaster

    @Palel: my site was fixed after I clear by cache. can you try check in my clearing your cache. Let me know it.

    in reply to: Website is Intermittently Glitchy in IE #2301
    Sakin
    Keymaster

    @Gary: You are using WP-Super-Cache. Did you try clearing in the cache? My site was fixed automatically after I clear my cache.

    in reply to: Content Color Options doesn't work #2291
    Sakin
    Keymaster

    @Elisabetta: Thanks for reporting the issue. I found that there is conflict between the “Content Color Options” and “Custom CSS”. I have fixed it for you which will be updated in our new version 1.6

    in reply to: Content Color Options doesn't work #2276
    Sakin
    Keymaster

    @Elisabetta: You can contact me from there and I will get your email and will reply you to get your access.

    in reply to: WooCommerce #2275
    Sakin
    Keymaster

    @TheTeam: You can build child theme and do the customization as mentioned in the document. This theme is not checked against the WooCommerce plugin.

    in reply to: Catch Box on mobile devices #2274
    Sakin
    Keymaster

    @vaskrupp: Yes if you move all the modified version to child theme and if you have done it perfectly then it will work otherwise it will not. So, don’t forget to back up your current changed file before your update. In this case if it doesn’t work then you can delete it and upload your backup theme.

    in reply to: Gap between menu nav bar and dropdown options #2273
    Sakin
    Keymaster

    @skistud33: I found that you have modified css for the menu color and the font size. Now you need to adjust the following css:

    #access ul li ul {
    top: 46px;
    }

    in reply to: Problem activating Simple Catch Pro on WP #2272
    Sakin
    Keymaster

    @bobbi: Thanks it’s fixed. Let me know if there is any issues.

    in reply to: Problem in IE #2271
    Sakin
    Keymaster

    @chochonet: I check in your site and it’s got issue in IE8 for posts but your pages and the home is working fine. But when I check the same theme in my demo site http://catchthemes.com/demo/catchbox/ it’s working fine in IE8.

    So, I need more details about the customization you have done. If you haven’t done any customization then you need to send me your wordpress access and then I will look in the details.

    I just check in your HTML validation of your site and fond some glitched that there is space in span closing tag. So, can you open your file “function.php” and search for function “catchbox_posted_on”. There check in your all closing span html tag there is space in it. Set this validation : http://validator.w3.org/check?uri=http%3A%2F%2Fwww.linuxeando.org%2Fwo%2Fwordpress%2F%3Fp%3D8&charset=%28detect+automatically%29&doctype=Inline&group=0

    in reply to: Link Color #2268
    Sakin
    Keymaster

    @ronmerk: for link color. you can add following css:

    a {
    color: #e18627;
    }

    in reply to: Apple Browsers – Child Drop Down menus #2267
    Sakin
    Keymaster

    @ronmerk: It’s little strange issue that you encounter. If you could send me you site URL then I could check in. While build the menu try using “Custom Menu” http://en.support.wordpress.com/menus/.

    To check if your site only have issue or the theme has the issue. Try checking in demo site http://catchthemes.com/demo/simplecatch/

    in reply to: Changing the Color of the Font Headline #2266
    Sakin
    Keymaster

    @eag: Go to “Appearance -> Theme Options -> Custom CSS” box in your WordPress dashboard and add the following css:

    #site-title span {
    color: #ea2b25;
    }

Viewing 20 posts - 14,281 through 14,300 (of 14,499 total)