Forum Replies Created
-
AuthorPosts
-
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>Sakin
Keymaster@AlanF: Thanks for your appreciation. If you like Catch Box theme and Catch Theme support then please support Catch Box theme by providing your valuable review and rating at https://wordpress.org/support/view/theme-reviews/catch-base?rate=5#postform. Thanks 🙂
Sakin
Keymaster@Michael: We haven’t use Qtranslate-X but our users has been using mqTranslate, WPML and Polylang. WPML has officially certified as WPML plugin compatible. So, an you use other plugin.
Sakin
Keymaster@violethuez: This is Catch Everest Pro support forum. For Full Frame free theme, please post it in http://catchthemes.com/support-forum/forum/full-frame-free/
Did you check in theme instructions for Full Frame free theme “Featured Slider” heading at http://catchthemes.com/theme-instructions/full-frame/#featured-slider
Full Frame support “Featured Page Slider”, for that first you need to create page and add in featured image to you page. Then you need to go to “Appearance => Customize => Featured Slider Options => Featured Slider Type” and select “Featured Page Slider”. Then you need to select the page which you want to show as slider. Finally, Save & Publish.
Sakin
Keymaster@pixelartists: ok thanks 🙂
Sakin
Keymaster@Michael: Logo size depends on the image that you upload. If you upload small image it will load small image.
You can add the following css in “Appearance => Theme Options => Custom CSS” box to reduce padding top and bottom:
#site-logo, #header-right { padding-top: 20px; } #hgroup-wrap { padding-bottom: 20px; }Sakin
Keymaster@petergrove: I am bit confused with your question.
1. If you want single static page as your homepage. Then go to “Settings => Readings”. You will see “Front page displays”. There you need to check “A static page (select below)” and then select page which you want to show in homepage in “Front page:” option and then select the page which you want to show as blog in “Posts page:” and save changes. -
AuthorPosts
