Forum Replies Created
-
AuthorPosts
-
Mahesh
Participant@himynameisanton: Oh for that I recommend you to upgrade to Pro version. Pro version fully supports WPML and qtranslate plugins.
So that you can use string like
[:en]English Text[:de]Deutsch[:]which shows English Text selecting English language and Deutsch when German language is selected.Regards,
MaheshMahesh
Participant@phillycontemporary: Go to Dashbaord=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:
#feature-slider .thumbnail h2 { display: none; } #feature-slider .entry-title { text-transform: none; font-weight: bold; } #feature-slider .caption > .vcenter { left: 10%; margin: 0; } #feature-slider .caption, #feature-slider .entry-content { text-align: left; }Regards,
MaheshMahesh
Participant@db: For that, go to Dashboard=> Appearance=> Customize=> Site Identity and then choose a logo you desire. You can hide Site Title and Tagline by unchecking Display Site Title and Tagline option. But because of some bug in the theme, this is not working for now. It will be fixed in the next update. So please use custom CSS to hide the Site Title and Tagline for now.
.site-title a, .site-description { position: absolute !important; clip: rect(1px 1px 1px 1px); clip: rect(1px, 1px, 1px, 1px); }Regards,
MaheshMahesh
Participant@himynameisanton: I tested the plugin with Catch Base theme on our sever and it the translation worked fine. What error do you get.
Let me know further.Regards,
MaheshMahesh
Participant@fmhboudreau:
Hi Faith,Thank you for using Catch Kathmandu Pro.
Have you made any changes in permalinks? Go to Dashboard=> Settings=> Permalinks and click Save Changes once and try again. I noticed that the home page url is showinghttp://www.cbida.org/index.htmlinstead ofhttp://www.cbida.org/, have you created an index.html file? or done any redirection? It should have been justhttp://www.cbida.org/. And also, if you have any plugins, try disabling it and check if it resolves the issue.Regards,
MaheshMahesh
Participant@phillycontemporary: Sorry, that’s not possible. You can have only one slider for the entire site. But you can hide the slider where you don’t want it.
Regards,
MaheshMahesh
Participant@brainlowelogic-com: Glad to know. 🙂 Thank you for your appreciation. Have a nice day!
Regards,
MaheshMahesh
Participant@phillycontemporary: For hiding Read More button, please the following CSS instead:
#feature-slider span.more { display: none; }Regards,
MaheshMahesh
Participant@nickballdesign: Well, since you prefer to use Free version, footer editor function settings cannot be simply added even with a child theme. The alternative is, instead of modifying the code in the base theme, you can override the following function
catchbase_footer_contentlocated ininc/catchbase-core.phpin the free theme with a different name in child theme and modify/customize the content. Then remove the previous action from the hook and add the new one in the same hook.
reference:
add_action( 'catchbase_footer', 'catchbase_footer_content', 100 );
If possible, I highly recommend you to use the child theme with Pro version and some customization or tune settings so the your site look like as it is even using the Pro theme. I know its kinda hard for you to do tune up all the settings. And there is lot of options and setting in Pro version that you cannot simply get to work just by adding couple of codes from Pro to Free even with the child theme.I hope you understand.
Regards,
MaheshMahesh
Participant@alesia90230: Can you please post in your site url. I checked the above url and it is using a different theme. Let me know further.
Regards,
MaheshMahesh
Participant@3j: Please use the following CSS instead:
@media screen and (min-width: 991px) { #masthead { display: none; } }Regards,
MaheshAugust 25, 2016 at 9:41 am in reply to: Removing the "Load More" bar on the Featured Content Grid #98019Mahesh
Participant@armando: Thank you for your appreciation. If you like my support and Fabulous Fluid theme then please support by providing your valuable review and rating at https://wordpress.org/support/view/theme-reviews/fabulous-fluid?rate=5#postform
Have a nice day!Regards,
MaheshMahesh
Participant@imboliboli: Go to Dashboard=> Appearance=> Customize=> Featured Content=> Featured Content Options and select Below Content option in Featured Content Position drop-down. This will display the Featured Content right next to the menu sidebar.
Let me know if any problem.Regards,
MaheshAugust 24, 2016 at 1:29 pm in reply to: Removing the "Load More" bar on the Featured Content Grid #97957Mahesh
Participant@armando: Do you want to let the title displayed? If so, go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:
#feature-slider .caption .entry-content { display: none; }Regards,
MaheshMahesh
Participant@alesia90230: I don’t quite get you there. Can you explain more.
Regards,
MaheshMahesh
Participant@onnalomd: I’ve replied in the following thread so I’ll skip this one. Please do not post the same issue twice.
https://catchthemes.com/support-forum/topic/blog-summary-page-2/#post-97938Regards,
MaheshMahesh
Participant@onnalomd:
Hi Onna,
For that, go to Dashboard=> Appearance=> Customize=> Theme Options=> Layout Options and select Excerpt/Blog Display in Content Layout option.Regards,
MaheshMahesh
Participant@monicavilas: Child theme created for Free version will work flawlessly with Pro theme as well, you’ll just need to change the Template and Child theme name. Other codes/functions will work fine. Let me know if any problem.
Regards,
MaheshMahesh
Participant@nickballdesign: You are using the child theme, so the settings is not carried to Pro version. However, the child theme codes will work on both Free and Pro. If you to have the feature there, yes you can customize the child theme little further and copy the featured to the child theme. In your child theme’s
functions.phpadd the following code:function catchbase_archive_content_image() { $options = catchbase_get_theme_options(); $featured_image = $options['content_layout']; if ( has_post_thumbnail() && 'excerpt-featured-image' == $featured_image ) { ?> <figure class="featured-image"> <a rel="bookmark" href="<?php the_permalink(); ?>"> <?php the_post_thumbnail( 'thumbnail' ); ?> </a> </figure> <?php } } function catchbase_post_classes( $classes ) { //Getting Ready to load data from Theme Options Panel $options = catchbase_get_theme_options(); $contentlayout = 'excerpt-thumbnail-featured-image'; if ( is_archive() || is_home() ) { $classes[] = $contentlayout; } return $classes; } add_filter( 'post_class', 'catchbase_post_classes' );Regards,
Mahesh -
AuthorPosts
