Forum Replies Created

Viewing 20 posts - 841 through 860 (of 4,903 total)
  • Author
    Posts
  • in reply to: Show author #113971
    Mahesh
    Participant

    @techfreak_82: If you have two or more user and they do have at least posts, then the authors are automatically shown.

    Regards,
    Mahesh

    in reply to: Sticky post #113934
    Mahesh
    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,
    Mahesh

    in reply to: Clean Box – Double Image Issue #113925
    Mahesh
    Participant

    @bmp999: Please post in your site url.

    Regards,
    Mahesh

    in reply to: Center the header logo #113924
    Mahesh
    Participant

    @rickm813: Please​ post in your site url.

    Regards,
    Mahesh

    in reply to: Switch location Blog post and slider on homepage #113897
    Mahesh
    Participant

    @wouwonline: For that, you’ll need to create child theme. You can find more details on creating child theme HERE. Then copy index.php from 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.php

    function 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,
    Mahesh

    in reply to: spoofing on my site #113884
    Mahesh
    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,
    Mahesh

    in reply to: Reduce header height #113883
    Mahesh
    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,
    Mahesh

    in reply to: Remove padding around widgets & content #113879
    Mahesh
    Participant

    @libertylobby: Add the following CSS:

    .sidebar-primary .widget {
        margin-bottom: 5px;
    }

    Note: You can adjust the space as desired.

    Regards,
    Mahesh

    in reply to: spoofing on my site #113878
    Mahesh
    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,
    Mahesh

    in reply to: Upgradint to PRO version with childtheme #113877
    Mahesh
    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,
    Mahesh

    in reply to: Header Image #113876
    Mahesh
    Participant

    @dave-82: Please post in your site url.

    Regards,
    Mahesh

    Mahesh
    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,
    Mahesh

    in reply to: spoofing on my site #113834
    Mahesh
    Participant

    @hollyehrocketmail-com: Please find and use a good spam protection/Antispam plugin from https://wordpress.org/plugins.

    Regards,
    Mahesh

    in reply to: Reduce header height #113833
    Mahesh
    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,
    Mahesh

    in reply to: number of columns in archives #113832
    Mahesh
    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

    Mahesh
    Participant

    @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,
    Mahesh

    in reply to: Header Highlight Content spacing #113826
    Mahesh
    Participant

    @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 164 the second image and 293 x 196 the fifth image. The correct dimension is 293 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,
    Mahesh

    in reply to: Remove padding around widgets & content #113825
    Mahesh
    Participant

    @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,
    Mahesh

    in reply to: Question re PHP 7.0/7.1 #113824
    Mahesh
    Participant

    @peterdroginformation-nu: Yes, the theme is compatible with php7.

    Regards,
    Mahesh

    in reply to: Reduce header height #113822
    Mahesh
    Participant

    @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

Viewing 20 posts - 841 through 860 (of 4,903 total)