Forum Replies Created
-
AuthorPosts
-
Mahesh
Member@techfreak_82: If you have two or more user and they do have at least posts, then the authors are automatically shown.
Regards,
MaheshMahesh
Member@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
Member@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
Member@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
Member@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
Member@libertylobby: Add the following CSS:
.sidebar-primary .widget { margin-bottom: 5px; }Note: You can adjust the space as desired.
Regards,
MaheshMahesh
Member@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
Member@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
Member@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
Member@hollyehrocketmail-com: Please find and use a good spam protection/Antispam plugin from https://wordpress.org/plugins.
Regards,
MaheshMahesh
Member@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
Member@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,
MaheshApril 11, 2017 at 3:42 am in reply to: Choosing the image which is preview before entering the post #113831Mahesh
Member@smartdog: For that, you’ll need to create a child theme. You can find more details on creating child theme HERE. Then in you child theme create content-gallery.php file and paste in the codes from the link below:
http://bit.ly/2p0ersF
Let me know if any problem.Regards,
MaheshMahesh
Member@banno2000: The issue your are facing is because 2 of the 5 post in the Header Highlight Content has incorrect image dimensions. Second(Psychology of Travel: 3 Reality Checks to Remember) and the Fifth(Travel Packing Tips). Currently the image sizes are
293 x 164the second image and293 x 196the fifth image. The correct dimension is293 x 220. Remaining three image has correct dimensions. Please use the image on second and fifth as the same size used in others. Let me know if any problem.Regards,
MaheshMahesh
Member@libertylobby: Go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:
.entry-container, .widget, #supplementary .wrapper, #supplementary .widget { padding-top: 0; padding-bottom: 0; }Regards,
MaheshMahesh
Member@peterdroginformation-nu: Yes, the theme is compatible with php7.
Regards,
MaheshMahesh
Member@newwebdesigner: Are you using Catch Base or Catch Kathmandu theme, you are posting in Catch Base’s thread but have mentioned Catch Kathmandu. Please post in your site url.
Regards,
Mahesh -
AuthorPosts
