Forum Replies Created

Viewing 20 posts - 2,721 through 2,740 (of 14,494 total)
  • Author
    Posts
  • in reply to: Customize Search Results page #62752
    Sakin
    Keymaster

    To change title from h1 to h3, you need to replace the following code
    <h1 class="page-title"><?php printf( __( 'Search Results for: %s', 'catchkathmandu' ), '<span>' . get_search_query() . '</span>' ); ?></h1>

    with
    <h2 class="page-title"><?php printf( __( 'Search Results for: %s', 'catchkathmandu' ), '<span>' . get_search_query() . '</span>' ); ?></h2>

    Then to remove the image from the search, you need to copy content.php file and then replace
    <?php if ( function_exists( 'catchkathmandu_content_image' ) ) : catchkathmandu_content_image(); endif; ?>

    with
    <?php if ( function_exists( 'catchkathmandu_content_image' ) && !is_search() ) : catchkathmandu_content_image(); endif; ?>

    then to change the post title from h1 to h3. replace the following code from content.php
    <h1 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'catchkathmandu' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h1>
    with
    <h3 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'catchkathmandu' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h3>

    in reply to: problem on excerpt and thumbnail alignment #62751
    Sakin
    Keymaster

    @Luchino: I will go for solution no 4. Don’t use the plugin and insert image directly in the post. Then change the archive layout to “Show Full Content (No Featured Image)” from “Appearance => Customize => Theme Options => Layout Options => Archive Content Layout”

    Stripping format in the excerpt in done by WordPress core and we are not allowed to change that from theme. Sorry for that.

    in reply to: Problem with Featured Slider #62750
    Sakin
    Keymaster

    @Joseph: Thanks for your appreciation.

    in reply to: Remove Search From Header #62749
    Sakin
    Keymaster

    @Robertf: thanks 🙂

    in reply to: home page featured content disappeared after upgrade #62721
    Sakin
    Keymaster

    @effess: what was the edit you have done in your child theme. Need to check that.
    Also check in your “Select Content Type” in “Appearance => Theme Options => Featured Content => Featured Content Options”

    in reply to: home page featured content disappeared after upgrade #62719
    Sakin
    Keymaster

    @effess: Looks like you have edited files inside catch-kathmandu-pro theme directory. As when you update the theme, all the files and codes inside catch-kathmandu-pro theme directory will be reverted back to original.

    So, you need to change the Featured Content from “Appearance => Theme Options => Featured Content”. Then in Featured Content options box, you need to select Content Type, enable content, and so on. Then if you choose Image Content, then you need to upload image and content from “Featured Image Content Options”.

    in reply to: Mobile Version of Desktop top header menu #62718
    Sakin
    Keymaster

    @Michael: To change the mobile menu icon hover color, you can adjust the color code in the following css as per your need and then add it in “Appearance => Theme Options => Custom CSS” box:
    .mobile-menu-bar:hover { color: #7c9b30; }

    in reply to: Enabling 'Adventurous Options' in the Custom Post Admin #62717
    Sakin
    Keymaster

    @Horst: nice you solved it. Thanks 🙂

    in reply to: Error 404-Page NOT Found #62716
    Sakin
    Keymaster

    @elpmendieta: So what is the problem. I see there is post in your blog http://www.chispumkids.com/blog/

    in reply to: Mobile menu Is not working properly #62714
    Sakin
    Keymaster

    @kangrob: Soryy, there is no option to add in title of each post automatically inside of a header image without editing it. You need to do advance customization by building child theme.

    in reply to: Several Problems with New Update #62712
    Sakin
    Keymaster

    @Barb: Please post in your site URL so that I can check in and suggest you the solution.

    in reply to: Featured Content Font change #62711
    Sakin
    Keymaster

    @christiane: For featured content sub-headline text, you can add the following css:

    #featured-heading p { font-family: "Archivo Black",sans-serif,Arial; }

    in reply to: Image path incorrect #62710
    Sakin
    Keymaster

    @Lizi: You shouldn’t add any files inside `catch-evolution-pro’ theme directory. All your new image should be added from “Add Media”. If you want to add image in post/page, then you need to add it from “Add Media” button in your page/post. If you just want to upload image, then you can upload it from “Media => Add New”.

    But if you are trying to change image in slider. Then you can upload image from “Appearance => Theme Options => Featured Slider”

    So, please post in your site URL and tell us what are you trying to do it. Then I can suggest you accordingly.

    in reply to: Slider replace static header image on Hompage #62704
    Sakin
    Keymaster

    @Lizi: There is no option to replace the static image with the featured slider as these two are different.

    If you want to ads in slider, then you need to go to “Appearance => Theme Options => Featured Slider => Slider Options”. Then you can select slider type as “Featured Image Slider” and if want large slider then you need to select “Full Width Slider” from Slider Layout. But if you want small one then you can select “Normal Width Slider”, then you can add image.

    in reply to: problem on excerpt and thumbnail alignment #62703
    Sakin
    Keymaster

    @Luchino: The “Excerpt” layout will nit display your post formatting and it will just show plain text with featured image. So, if you want formatted text to show then you don’t need plugin. You can just go to “Appearance => Customize => Theme Options => Layout Options => Archive Content Layout” and select “Show Full Content (No Featured Image”. Now, your homepage will show full content of your post. Now, you can split content using more tag <!--more-->. For detail about more tag, check out http://devotepress.com/wordpress-writing-editing/how-to-split-content-using-the-more-tag-option

    in reply to: customizer error #62702
    Sakin
    Keymaster

    @agenciabrushup: I just check in your site but you are not using theme developed by us that is CatchThemes.com. So, I will not be able to help you on this. Please contact your theme author support.

    in reply to: Featured Slider Image wont load #62701
    Sakin
    Keymaster

    @Peter: You can just add the following code in your child theme functions.php file

    function catchresponsive_featured_slider() {
    	echo do_shortcode('[banner_rotator hosting1]');
    }
    in reply to: Slide pics' quality shows very low resolution. #62699
    Sakin
    Keymaster

    @SungJu: I just check in your site but I don’t see the slider to check the quality. So, can you add in slider image and let me know it.

    in reply to: Layout without side bar on tablet #62698
    Sakin
    Keymaster

    @Christine: You can adjust the max-height in the following css as per your need and then add it in “Appearance => Theme Options => Custom CSS” box:
    #masthead.fixed-header #site-logo img { max-height: 32px; }

    in reply to: Double Menus #62697
    Sakin
    Keymaster

    @ginabrasseur: Sorry I don’t get it what you mean. Looks like you are looking at source code. There are two menu items. Once in your desktop menu and another is mobile menu.

Viewing 20 posts - 2,721 through 2,740 (of 14,494 total)