Forum Replies Created

Viewing 20 posts - 2,941 through 2,960 (of 4,888 total)
  • Author
    Posts
  • in reply to: Static Front page configured but not working #98034
    Mahesh
    Member

    @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 showing http://www.cbida.org/index.html instead of http://www.cbida.org/, have you created an index.html file? or done any redirection? It should have been just http://www.cbida.org/. And also, if you have any plugins, try disabling it and check if it resolves the issue.

    Regards,
    Mahesh

    in reply to: Featured Image Slider on a single page? #98026
    Mahesh
    Member

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

    in reply to: Blog posts don't show when published #98025
    Mahesh
    Member

    @brainlowelogic-com: Glad to know. 🙂 Thank you for your appreciation. Have a nice day!

    Regards,
    Mahesh

    in reply to: HTML tag in Slider excerpt text #98024
    Mahesh
    Member

    @phillycontemporary: For hiding Read More button, please the following CSS instead:

    #feature-slider span.more {
        display: none;
    }

    Regards,
    Mahesh

    in reply to: Migrating from Catch Base (Free) to Pro #98023
    Mahesh
    Member

    @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_content located in inc/catchbase-core.php in 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,
    Mahesh

    in reply to: Archiving Pages #98022
    Mahesh
    Member

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

    in reply to: How to get rid of space obove image header #98020
    Mahesh
    Member

    @3j: Please use the following CSS instead:

    @media screen and (min-width: 991px) {
        #masthead {
            display: none;
        }
    }

    Regards,
    Mahesh

    in reply to: Removing the "Load More" bar on the Featured Content Grid #98019
    Mahesh
    Member

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

    in reply to: Questions regarding thumbnails #98018
    Mahesh
    Member

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

    in reply to: Removing the "Load More" bar on the Featured Content Grid #97957
    Mahesh
    Member

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

    in reply to: Archiving Pages #97952
    Mahesh
    Member

    @alesia90230: I don’t quite get you there. Can you explain more.

    Regards,
    Mahesh

    in reply to: Blog Summary Page #97939
    Mahesh
    Member

    @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-97938

    Regards,
    Mahesh

    in reply to: Blog Summary Page #97938
    Mahesh
    Member

    @onnalomd:
    Hi Onna,
    For that, go to Dashboard=> Appearance=> Customize=> Theme Options=> Layout Options and select Excerpt/Blog Display in Content Layout option.

    Regards,
    Mahesh

    in reply to: How to get rid of space obove image header #97937
    Mahesh
    Member

    @3j: Please post in your site url.

    Regards,
    Mahesh

    in reply to: Adding "Terms and conditions"link on the footer #97936
    Mahesh
    Member

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

    in reply to: Migrating from Catch Base (Free) to Pro #97935
    Mahesh
    Member

    @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.php add 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

    in reply to: stop scrolling on header and main nav #97933
    Mahesh
    Member

    @hidemyage: Okay I see the background issue, please add the following CSS it will fix the issue.

    #branding, 
    #header-menu {
        max-width: 1300px;
    }

    I don’t see the other issue of menu disappearing. Let me know further.

    Regards,
    Mahesh

    in reply to: Blog posts don't show when published #97932
    Mahesh
    Member

    @brianlowelogic-com: I checked your site, seems you have selected Your latest posts in Front page displays. Please use A static page instead and then select any Page you want do display as Home page and select Blog page in Posts page.
    Let me know if any problem.

    Regards,
    Mahesh

    in reply to: Disorganized menu #97931
    Mahesh
    Member

    @aarens11: Okay, so want to arrange the menu. For that, you’ll need to manually arrange the menu items. Go to Dashboard=> Appearance=> Menus then select the Menu in Select a menu to edit, if you do not have any, create one then add the menu items from left and it will populate under Menu Structure, Then arrange them in Menu Structure by dragging each item into the order you prefer. If you prefer to have sub-items, drag them under the a menu with a little indent to the left.
    After you’ve finished arranging, scroll down and check Primary Menu in Theme Location in the same page then click Save.
    Hope this helps.

    Regards,
    Mahesh

    in reply to: Upgrade to pro left a mess to clean up. #97930
    Mahesh
    Member

    @ddk: Sorry for the confusion but we recommend you to use the customizer instead of theme options as it is easy to use and you can also see the live preview. So for adding Slider, go to Dashboard=> Appearance=> Customize=> Featured Slider=> Slider Option and choose which ever slider type you were using before and follow along. (make sure it is enabled)
    Please do the same for Featured Content, go to Dashboard=> Appearance=> Customize=> Theme Options=> Homepage Featured Content and select Homepage/Front page or Entire site as per you desire in Enable Content drop-down option. Then select you desired Featured Content Type and add up the images.
    I would like to help you further if you need any. Let me know if any problem. Sorry for the trouble.

    Regards,
    Mahesh

Viewing 20 posts - 2,941 through 2,960 (of 4,888 total)