Forum Replies Created
-
AuthorPosts
-
Sakin
Keymaster@Anusha: you can actually disable comment in each page and post. See this http://en.support.wordpress.com/enable-disable-comments/
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.
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>';
}
Sakin
Keymaster@vaskrupp: Yes that’s a good approach. As our theme is always being updated with latest patches and new features.
Sakin
Keymaster@KeighDesign: thanks and it’s great that the plugin helped you.
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.
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.
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
Sakin
Keymaster@Elisabetta: You can contact me from there and I will get your email and will reply you to get your access.
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.
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.
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;
}
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
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/
-
AuthorPosts
