Forum Replies Created
-
AuthorPosts
-
Sakin
Keymaster@niademe: for adding link see this http://codex.wordpress.org/Linking_Posts_Pages_and_Categories
Sakin
Keymaster@BeSt: I haven’t seen your footer but for http://www.undeadstooge.com/. If you want to make the footer fixed at the bottom.
#main {
padding-bottom: 90px;
}
#colophon {
bottom: 0;
position: fixed;
width: 100%;
}
Sakin
Keymaster@msintenie: Please copy and paste it carefully. there is problem with ‘. I have given you the clear idea of how to build it. If you are not being able to create the function.php in child theme with the code then please use our “Hire A customizer” http://catchthemes.com/hire-customizer/
Sakin
Keymaster@chochonet: can you update your theme to version 1.6 and refresh your browser and check it. If you still have problem then contact me through http://catchthemes.com/hire-customizer/ with your WordPress access and I look in details.
Sakin
Keymaster@alukaszewicz: There is background color white (#fff) define in header id branding that is why it is taking background white. Now you change that background color to match with the main background.
Go to “Appearance -> Theme Options -> Custom CSS” box in your WordPress dashboard and add the following css:
#branding {
color: #c9e17d;
}
@ronmerk: nice site and thanks a lot for your support.Sakin
Keymaster@alukaszewicz: You are using the jpg image (http://www.gettingstamped.com/wp-content/uploads/2012/12/header_sketch3-copy.jpg) which is not transparent image. To create transparent image from the photoshop it needs to be .png image.
Sakin
Keymaster@thetwosents: yes the same logo will be used in your mobile device. It will adjust the size accordingly.
Sakin
Keymaster@msintenie: for function.php don’t copy [php] and [/php]. Just cope the code in between.
Sakin
Keymaster@rozandueta: You can disable the comment in your page while you edit the page or create the page. See this for more http://en.support.wordpress.com/enable-disable-comments/
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
-
AuthorPosts