Forum Replies Created
-
AuthorPosts
-
Mahesh
Participant@dave-82: Have you resolved the issue. There is no space now on your site.
Regards,
MaheshMahesh
Participant@filip_1: Do you have any plugins? Try deactivating theme and check again. No such issue on our demo site.
https://catchthemes.com/demo/simplecatch/Regards,
MaheshMahesh
Participant@divya-nair: I checked your site, you are using Magazine Basic theme, this is not a theme by Catch Themes. This support forum is only for themes and plugins by Catch Themes.
Regards,
MaheshMahesh
Participant@jamesmillerlifeology: This theme is designed in a way to put the social media icons as menu rather than widget. If you do want to has widget instead, I recommend you to use the Social Icons module of Catch Web Tools plugin.
https://wordpress.org/plugins/catch-web-tools/Regards,
MaheshMahesh
Participant@fireflywebs: You mean slider with content width? Yes, this is possible. I recommend you to hire a customizer for this.
Regards,
MaheshMahesh
Participant@techfreak_82: If you have two or more user and they do have at least posts, then the authors are automatically shown.
Regards,
MaheshMahesh
Participant@wouwonline: To make a post sticky, go to add/edit post page and look towards the right hand sidebar where you will see a Publish box. Look at the (Visibility: Public) field and click edit.
Check the box to make the post Sticky and publish it. If you want to make an older post sticky, follow the same steps and just click save.
To change the post order, please use some sorting or ordering plugin.Regards,
MaheshMahesh
Participant@wouwonline: For that, you’ll need to create child theme. You can find more details on creating child theme HERE. Then copy
index.phpfrom main theme to your child theme and add the following code just above</div><!-- #content -->after<?php endif; ?><?php do_action( 'catchevolution_child_after_content' ); ?>Then add the following code in your child theme’s
functions.phpfunction catchevolution_slider_display() { global $post, $wp_query, $catchevolution_options_settings; // get data value from theme options $options = $catchevolution_options_settings; $enableslider = $options['enable_slider']; $sliderselect = $options['select_slider_type']; $sliderlayout = $options['select_slider_layout']; // Front page displays in Reading Settings $page_on_front = get_option('page_on_front') ; $page_for_posts = get_option('page_for_posts'); // Get Page ID outside Loop $page_id = $wp_query->get_queried_object_id(); if ( ( 'enable-slider-allpage' == $enableslider ) || ( ( is_front_page() || ( is_home() && $page_id != $page_for_posts ) ) && 'enable-slider-homepage' == $enableslider ) ) : // Select Slider if ( $sliderselect =='image-slider' && !empty( $options['featured_image_slider_image'] ) && $sliderlayout =='fullwidth' && function_exists( 'catchevolution_imagesliders' ) ) { add_action( 'catchevolution_after_contentsidebarwrap', 'catchevolution_imagesliders', 10 ); } elseif ( $sliderselect =='post-slider' && !empty( $options['featured_slider'] ) && $sliderlayout =='fullwidth' && function_exists( 'catchevolution_sliders' ) ) { add_action( 'catchevolution_after_contentsidebarwrap', 'catchevolution_sliders', 10 ); } elseif ( $sliderselect =='page-slider' && !empty( $options['featured_slider_page'] ) && $sliderlayout =='fullwidth' && function_exists( 'catchevolution_page_sliders' ) ) { add_action( 'catchevolution_after_contentsidebarwrap', 'catchevolution_page_sliders', 10 ); } elseif ( $sliderselect =='category-slider' && !empty( $options['slider_category'] ) && $sliderlayout =='fullwidth' && function_exists( 'catchevolution_category_sliders' ) ) { add_action( 'catchevolution_after_contentsidebarwrap', 'catchevolution_category_sliders', 10 ); } elseif ( $sliderselect =='image-slider' && !empty( $options['featured_image_slider_image'] ) && function_exists( 'catchevolution_imagesliders' ) ) { add_action( 'catchevolution_child_after_content', 'catchevolution_imagesliders', 10 ); } elseif ( 'post-slider' == $sliderselect && !empty( $options['featured_slider'] ) && function_exists( 'catchevolution_sliders' ) ) { add_action( 'catchevolution_child_after_content', 'catchevolution_sliders', 10 ); } elseif ( $sliderselect =='page-slider' && !empty( $options['featured_slider_page'] ) && function_exists( 'catchevolution_page_sliders' ) ) { add_action( 'catchevolution_child_after_content', 'catchevolution_page_sliders', 10 ); } elseif ( 'category-slider' == $sliderselect && function_exists( 'catchevolution_category_sliders' ) ) { add_action( 'catchevolution_child_after_content', 'catchevolution_category_sliders', 10 ); } else { add_action( 'catchevolution_child_after_content', 'catchevolution_default_sliders', 10 ); } endif; }Then go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:
.content-sidebar-wrap { clear: both; content: " "; display: inline-block; }Regards,
MaheshMahesh
Participant@hollyehrocketmail-com: The emails are from your site not the theme. Theme does not control email options. You can switch themes and check if the problem persists.
Regards,
MaheshMahesh
Participant@newwebdesigner: Thank you for your appreciation. If you like my support and Catch Base theme then please support by providing your valuable review and rating at https://wordpress.org/support/view/theme-reviews/catch-base?rate=5#postform
Have a nice day!Regards,
MaheshMahesh
Participant@libertylobby: Add the following CSS:
.sidebar-primary .widget { margin-bottom: 5px; }Note: You can adjust the space as desired.
Regards,
MaheshMahesh
Participant@hollyehrocketmail-com: This is not a theme issue and isn’t control of the theme. This depends either on your email hosting or your site hosting. Please contact your server or email host for the issue.
Regards,
MaheshMahesh
Participant@huca: You’ll need to create a child theme for Pro theme (Copy child theme of Free and make some changes to set is as Pro’s child theme). All the function that you’ve customized through child theme for free will work on Pro too. Let me know if any problem.
Regards,
MaheshApril 11, 2017 at 11:53 pm in reply to: Translated version of homepage doesn't show postings of selected categories #113875Mahesh
Participant@olaf-boehmebissantz-de: Just to let you know that the bug is fixed and the update has been released. Please update and check. Let me know if any problem.
Regards,
MaheshMahesh
Participant@hollyehrocketmail-com: Please find and use a good spam protection/Antispam plugin from https://wordpress.org/plugins.
Regards,
MaheshMahesh
Participant@newwebdesigner: Go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:
#site-logo .custom-logo { height: 200px; width: 200px; } @media screen and (min-width: 1024px) { #page { position: relative; } #masthead { position: absolute; top: 0; width: 100%; z-index: 10; } }Regards,
MaheshMahesh
Participant@wolpertinger: You can simply hide the third sidebar in archive pages with CSS. Go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:
.archive #third-sidebar { display: none; } .archive.three-columns .content-sidebar-wrap { width: 100%; float: none; } .archive.three-columns #primary { width: 70%; } @media screen and (max-width: 1024px) { .archive.three-columns #primary { width: 100%; } } @media screen and (max-width: 1024px) and (min-width: 768px) { .two-columns #secondary .widget:nth-child(2n+1), .three-columns #secondary .widget:nth-child(2n+1) { clear: both; } .two-columns #secondary .widget, .three-columns #secondary .widget, .three-columns #third-sidebar .widget, .three-columns.equal #third-sidebar .widget { float: left; margin-left: 20px; width: 47.2%; } .widget { clear: none; } }If you want to remove it completely through code, I recommend you to hire a customizer.
Regards,
Mahesh -
AuthorPosts
