Forum Replies Created

Viewing 20 posts - 3,121 through 3,140 (of 4,908 total)
  • Author
    Posts
  • in reply to: Select Featured Content #96764
    Mahesh
    Participant

    @rollik:
    Hi Rolf,

    Sorry for the late reply.
    1. For putting Featured Content directly above footer without anything inbetween, go to Dashboard=> Appearance=> Customize=> Featured Content => Featured Content Options and check Check to Move above Footer option.
    2. I want the contributions have no icons and lable for comments, calendar, categorie etc above the post –
    Go to Dashboard=> Appearance=> Customize=> Theme Options => Custom CSS box and add the following CSS:

    .hentry .meta-post {
        display: none;
    }

    Hope this helps. Let me know if any problem.

    Regards,
    Mahesh

    in reply to: Link in Footer #96762
    Mahesh
    Participant

    @wombattle: Thank you for your appreciation. If you like my support and Catch Flames theme then please support by providing your valuable review and rating at https://wordpress.org/support/view/theme-reviews/catch-flames?rate=5#postform.
    Have a nice day!

    Regards,
    Mahesh

    in reply to: Link in Footer #96655
    Mahesh
    Participant

    @wombattle: The above code is for Catch Responsive and won’t work on Catch Flames. Its a bit tricky for Catch Flames. Add the following code in you child theme’s functions.php

    function catchflames_child_assets(){
    	$custom_link = ' | <a href="somelink.com" title="some_link_title">Some Link Text</a>';
        $catchflames_content = '
        <div class="copyright">'. esc_attr__( 'Copyright', 'catch-flames' ) . ' &copy; '. catchflames_the_year() . ' ' . catchflames_site_link() . ' ' . esc_attr__( 'All Rights Reserved', 'catch-flames' ) . $custom_link .'
        </div>
        <div class="powered">'. catchflames_theme_name() . catchflames_theme_author() . '
        </div>';
        return $catchflames_content;
    }
    
    function catchflames_child_footer_content() {
    	delete_transient( 'catchflames_footer_content' );
    
    	if ( ( !$catchflames_footer_content = get_transient( 'catchflames_footer_content' ) ) ) {
    		echo '<!-- refreshing cache -->';
    
            $catchflames_footer_content = catchflames_child_assets();
    
        	set_transient( 'catchflames_footer_content', $catchflames_footer_content, 86940 );
        }
    	echo $catchflames_footer_content;
    }
    
    function catchflames_child_custom_footer(){
    	remove_action( 'catchflames_site_generator', 'catchflames_footer_content', 30 );
    	add_action( 'catchflames_site_generator', 'catchflames_child_footer_content', 30 );
    }
    
    add_action( 'init', 'catchflames_child_custom_footer' );

    If you aren’t familiar with coding, I recommend you to upgrade to Pro since this option is available by default. Or hire a customizer.

    Regards,
    Mahesh

    in reply to: Header issue #96654
    Mahesh
    Participant

    @discoman:
    Hi Offir,

    Thank you for your consideration. I don’t think it will cause any SEO issue. Only one H1 per page is old. It was only valid for HTML4.
    In HTML5, you can have more then one H1 tag. That was issue only when you use HTML4 tags. In HTML5, H1 tag per article tag is good for SEO and we have carefully designed H1 tags with special attention on header tag and headings
    Catch Everest theme is build in HTML5, CSS3 and Responsive design. So, H1 is better for SEO then H2.
    You can also check this Video http://www.youtube.com/watch?v=GIn5qJKU8VM by Google software engineer Matt Cutts, who clearly states that you can use multiple H1 but don’t over do it. Also use h1 specific to heading and header tags.
    You can also check this article URL http://html5doctor.com/html5-seo-search-engine-optimisation/
    But if you really want to change it, you can change it by building child theme and editing it. I recommend you to hire a customizer.

    Regards,
    Mahesh

    in reply to: Adjusting Font size in Featured Content #96653
    Mahesh
    Participant

    @petermilliken: In your child theme’s functions.php add the code from the link below:
    http://bit.ly/2amBgAa
    Note: This is for the Featured Content block. Promotional headline is already using H2 tag.

    Let me know if any problem.

    Regards,
    Mahesh

    in reply to: Full Frame Theme Spam Links #96652
    Mahesh
    Participant

    @danafontaine:
    Hi Dana,

    Yes, seems so. Re-installing theme may or may not fix the hacking issue as it may have got to the other core files too. I recommend you to install a fresh copy of WordPress and theme, and yes also change you credentials.

    Regards,
    Mahesh

    in reply to: problems with clean business pro theme #96632
    Mahesh
    Participant

    @agenciabrushup: Thank you for using Clean Business Pro theme.
    Sorry, we don’t have the video tutorial for that yet. On the first one TOEFL, you have managed to use the Image Slider.
    For the same in the second one IELTS too, go to Dashboard=> Appearance=> Customize=> Featured Slider and select Featured Image Slider in Select Slider Type dropdown. Then some option Featured Slide # will appear, put your desired Image and Content there and click Save & Publish

    Hope this helps. Let me know if any problem.

    Note: You have posted the support in the Catch Adaptive Pro theme category, please post in appropriate theme category.

    Regards,
    Mahesh

    in reply to: Full Frame Theme Spam Links #96631
    Mahesh
    Participant

    @danafontaine: Are you using any plugins? May be some plugin is causing the issue. We haven’t faced or got similar issue for the theme.
    Let me know further.

    Regards,
    Mahesh

    Mahesh
    Participant

    @stefanhoesli: Please post in your site URL.
    Yes, primary sidebar can be independently formatted than content with Custom CSS.

    Regards,
    Mahesh

    in reply to: Change color of Menu #96629
    Mahesh
    Participant

    @martijn: Thank you for your appreciation. Have a nice day!

    Regards,
    Mahesh

    in reply to: Make content area wider, right sidebar narrower #96628
    Mahesh
    Participant

    @catwingz: Please post in your site url.

    in reply to: Remove page title and change mobile view page width #96624
    Mahesh
    Participant

    @lmkele:
    Hi Kim,

    I guess, you’ll need to contact the Plugin support for the issue. Because the the title is hiding fine in the desktop version it is only appearing in the mobile only if you switch to Mobile version. While desktop version is fine just the responsive issue since the Responsive Design is turned off.
    As far as I understand you requirement, using some custom CSS may fix the issue. Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    .wrapper, 
    #site-generator .wrapper {
        padding-left: 0;
    	padding-right: 0;
    }
    
    #catchflames-woocommerce.hentry {
        padding: 0;
    	margin: 0;
    }
    
    #catchflames-woocommerce.hentry .products{
    	margin: 0;
    }
    
    .woocommerce ul.products li.product, .woocommerce-page ul.products li.product, .woocommerce-page[class*="columns-"] ul.products li.product, .woocommerce[class*="columns-"] ul.products li.product {
        margin: 0 0 1.5em;
    }

    Note:
    1. Turn on Responsive Design.
    2. The Gap between slider and post is because there is are empty <p> tags in page-description which is causing the issue. Please remove those tags and it will look fine.

    Hope this helps. Let me know if any problem.

    Regards,
    Mahesh

    in reply to: Remove page title and change mobile view page width #96590
    Mahesh
    Participant

    @lmkele: For removing page title in shop page, go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    .post-type-archive-product .page-title {
        display: none;
    }

    For making the site site fit on both desktop and mobile devices, you’ll need to turn on Responsive Design. Go to Dashboard=> Appearance=> Customize=> Theme Options=> Responsive Design and uncheck Check to disable responsive design option

    Regards,
    Mahesh

    in reply to: Pagination homepage and feature content #96579
    Mahesh
    Participant

    @juliooscar: Thank you for your appreciation. I see your problem of pagination, the theme only uses scroll pagination. Free version of E-commerce has only this pagination option. Other pagination options, such as Numeric is only available in E-commerce Pro. I recommend you to upgrade to Pro version.
    And I don’t understand what you mean by bottom of feature content appears not me, can you please explain further more.

    Regards,
    Mahesh

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

    @phillycontemporary: For this, you’ll need to create a child theme. You can find more details on creating child theme HERE. Then in your child theme’s functions.php add the code from the link below:
    http://bit.ly/2awaBSI
    Then go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    #loadMore {
        display: none;
    }

    Hope this helps. Let me know if any problem.

    Regards,
    Mahesh

    in reply to: picture in the post or page #96548
    Mahesh
    Participant

    @bebou,
    Hi Beata,

    For that, edit or add new post/page, click on Add Media and then click Create Gallery. And select the images you want to display in the post content. Then click Insert Gallery and save the post. This will fulfill your requirement. Let me know if any problem.

    Regards,
    Mahesh

    in reply to: adding a post slider #96547
    Mahesh
    Participant

    @bebou:
    Hi Beata,

    Catch Adaptive Free has limited options. You can only select Pages or Demo content as Featured slider. For other options such as Posts, Category or Custom/Image as Featured Slider, I recommend you to upgrade to Pro version.

    Regards,
    Mahesh

    in reply to: white screen after installing plugin #96546
    Mahesh
    Participant

    @rms: Have you modified the code in the theme? If not please try re-installing the theme. Hope it resolves the issue. Let me know if any problem.

    Regards,
    Mahesh

    in reply to: white screen after installing plugin #96531
    Mahesh
    Participant

    @rms: Please check the space before in header.php and functions.php also. Let me know further.

    Regards,
    Mahesh

    in reply to: Title before primary menu #96529
    Mahesh
    Participant

    @carol-anne: Are you using child theme? Seems you have fullframe_scripts() function in your child theme’s functions.php it is causing the problem. Please remove it and try again. Let me know further.

    Regards,
    Mahesh

Viewing 20 posts - 3,121 through 3,140 (of 4,908 total)