Forum Replies Created
-
AuthorPosts
-
Sakin
Keymaster@notjustblack: Sorry for min-understanding.
For that:
1. Go to “Appearance => Theme Options => Layout Options”, select “No Sidebar, Full Width” and Save it. This will make your site No Sidebar, Full Width.
2. Then edit the page “Blog” and below you page content editor, you will see “Select Sidebar Layout” meta box, from there you can change the blog page layout to “Right sidebar” and update your page.Sakin
Keymaster@Romany: Oh ok you are taking about Pro theme update. Pro and Premium theme cannot be update like that directly. Firs, you need to download the update zip file from your account at http://catchthemes.com/my-account. Then you can either update it either WordPress Dashboard or FTP. Detail instruction for update is given in theme instructions page at http://catchthemes.com/theme-instructions/catch-kathmandu-pro/
The easy one to update the theme is by using Catch Updater plugin. You can download it from http://catchthemes.com/wp-plugins/catch-updater/, you can find the instruction in the same page.
Sakin
Keymaster@theecodiaries:
1. Sorry there is no option to make it random rotate. But yes, in pro version you can choose Featured Category Slider and it will automatically take the image from your latest post in those selected category. For more info about pro version, check out theme instructions page at http://catchthemes.com/theme-instructions/catch-flames-pro/2. For this, you can just add the following css in “Appearance => Theme Options => Custom CSS” box. In pro version you will get Color Options in theme options panel through which you can change color by yourself as per your need.
a { color: #f2a070; }3. For menu background color, you can add the following css in “Appearance => Theme Options => Custom CSS” box.
#header-menu #access, #footer-menu { background-color: #f2a070; }Sakin
Keymaster@Jan Deelstra: Yes same issue. You still have missing closing
</a>in your Footer widgets for<a href="http://www.jandeelstra.com/feng-shui/">and<a href="http://www.jandeelstra.com/co-dependence-or-love/">Sakin
Keymaster@SK: By default, there is no option to remove links and Read More.. from Gridalicious Free theme. You can remove read more easily by adding in the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:
#featured-grid-content .more { display: none; }But for removing link, you need to build child theme and then copy function
gridalicious_page_grid_content()to your child theme functions.php file and remove the link. You can check about Child theme at http://catchthemes.com/blog/create-child-theme-wordpress/Also you have option to upgrade to Pro version and you can change “Featured Page Grid Content” to “Featured Image Grid Content” which lets you to add title, content, link, image all options. So, just don’t add link and it will remove link and read more. For more about additional featured in pro version. Check out theme instructions page at http://catchthemes.com/theme-instructions/gridalicious-pro/
April 2, 2015 at 9:35 am in reply to: How to control all the submenus under a menu displayed horizontally? #54925Sakin
Keymaster@Xianmin: The menu position possibility is display in our demo page at http://catchthemes.com/demo/catchbox-pro/, where you can see Primary Menu, Secondary Menu and also Navigation that is menu that we added in sidebar and also Footer Menu. So, this is all possible with default setting of menu. If you want any other way then you need to either search for plugin to do that or you can build child theme and modify the codes.
Sakin
Keymaster@Glenneman: Thanks for your question. In Free version, you have option to use only Featured Page Content so you need to select the page and it will take featured image of that page, title and content. However, you can split content of that page using more tag
<!--more-->. So, what ever text is before this more that will display in Featured Page Content. For more information about more tag, check this http://devotepress.com/wordpress-writing-editing/how-to-split-content-using-the-more-tag-option/In Pro version, you can change this to “Featured Image Content” where you can upload image, title, content and link, all custom as per your need. Also you have option to use “Featured Post Content” or “Featured Category Content”. For more about this, you can check out Gridalicious Pro theme instructions at http://catchthemes.com/theme-instructions/gridalicious-pro/
Sakin
Keymasteryes
Sakin
Keymaster@Sakin: Oh wow qtranslate x is nice. So remove that previous code and add the following
/** * Add Support for qTranslate X */ if ( defined( 'QTX_VERSION' ) ) { require( get_template_directory() . '/inc/catcheverest-wpml.php' ); }Sakin
Keymaster@Michael: Not sure about it. We need to test it first. But it shouldn’t mess your menu. can you me let me know what happen to your menu in details.
Sakin
Keymaster@ceedj: So if you want to remove whole black box with title, content and dots, then you can add the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:
#feature-slider .entry-container, #feature-slider .cycle-pager { display: none; }Sakin
Keymaster@Andrea: For transparency, you need to use RBGA color with opacity. For example, in the following you can css background: #444; this is for old browser support and is solid color without transparency. But the background: rgba(0,0,0,0.7); mean black color with 70% transparent.
.nav-primary { background: #444; background: rgba(0,0,0,0.7); }Sakin
Keymaster@Michael: Yes, I check in with qTranslate-X i and that code will make our theme compatible
Sakin
Keymaster@notjustblack: WooCommerce has it’s own template. This theme is not WooCommerce plugin ready. So, you cannot do that. You can add the following css in “Appearance => Theme Options => Custom CSS” box:
.woocommerce-page #container { float: left; width: 690px; } @media screen and (max-width: 1189px) { .woocommerce-page #container { width: 570px; } } @media screen and (min-width: 1001px) { .woocommerce-page #container { padding: 0 40px; } } @media screen and (max-width: 1000px) { .woocommerce-page #container { width: 100%; } }Sakin
Keymaster@doctormobius: This is little strange and I need to check in your server. So, I will send you personal email.
Sakin
Keymaster@Michael: Ok then we need to add compatible with qTanslate-X as well. We will go this in next version update. Thanks for the info.
For now you can open functions.php file and edit the following code:
/** * Add Suport for qTranslate and mqTranslate Plugin */ if ( in_array( 'qtranslate/qtranslate.php', apply_filters( 'active_plugins', get_option( 'active_plugins' ) ) ) || in_array( 'mqtranslate/mqtranslate.php', apply_filters( 'active_plugins', get_option( 'active_plugins' ) ) ) ) { require( get_template_directory() . '/inc/catchkathmandu-qtranslate.php' ); }With the code as below:
/** * Add Support for qTranslate X, mqTranslate and qTranslate Plugin */ if ( defined( 'QTX_VERSION' ) || in_array( 'qtranslate/qtranslate.php', apply_filters( 'active_plugins', get_option( 'active_plugins' ) ) ) || in_array( 'mqtranslate/mqtranslate.php', apply_filters( 'active_plugins', get_option( 'active_plugins' ) ) ) ) { require( get_template_directory() . '/inc/catchkathmandu-qtranslate.php' ); }Sakin
Keymaster@Disser24: Yes look like you have already fixed it as when I check in from my phone, your menu is working fine. Thanks
Sakin
Keymaster@Gordon: I don’t know where you test it. But we have tested Catch Responsive Pro theme in Google Mobile-Friendly Test. See the result https://www.google.com/webmasters/tools/mobile-friendly/?url=http%3A%2F%2Fcatchthemes.com%2Fdemo%2Fcatch-responsive%2F
Sakin
Keymaster@Jan Deelstra: Hum, it’s not the problem of third widget. It’s the problem with “Grab the Pop Corn. Grab the Wine. Women’s Empowerment THEATRE” widget in your sidebar. You have forget to close your hyperlink.
I see the code in your site as below, where
</a>is missing:
<a href="http://www.JanDeelstra.com/theatre"><img class="alignnone wp-image-6219 size-medium" src="http://www.jandeelstra.com/wp-content/uploads/2015/03/movie_film_camera-500x421.png" alt="movie_film_camera" width="500" height="421" />NOW PLAYING!So, replace that with the following:
<a href="http://www.JanDeelstra.com/theatre"> <img class="alignnone wp-image-6219 size-medium" src="http://www.jandeelstra.com/wp-content/uploads/2015/03/movie_film_camera-500x421.png" alt="movie_film_camera" width="500" height="421" /> NOW PLAYING! </a> -
AuthorPosts
