Forum Replies Created

Viewing 20 posts - 841 through 860 (of 4,908 total)
  • Author
    Posts
  • in reply to: Header Image #113980
    Mahesh
    Participant

    @dave-82: Have you resolved the issue. There is no space now on your site.

    Regards,
    Mahesh

    in reply to: Problems with theme update #113979
    Mahesh
    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,
    Mahesh

    in reply to: theme customiser not working #113977
    Mahesh
    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,
    Mahesh

    in reply to: Social Media #113973
    Mahesh
    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,
    Mahesh

    in reply to: Post Slider #113972
    Mahesh
    Participant

    @fireflywebs: You mean slider with content width? Yes, this is possible. I recommend you to hire a customizer for this.

    Regards,
    Mahesh

    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

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