Forum Replies Created

Viewing 20 posts - 1,321 through 1,340 (of 4,903 total)
  • Author
    Posts
  • in reply to: slideshow has double the image select buttons. #110542
    Mahesh
    Participant

    @medialegends: Please post in your site url.

    Regards,
    Mahesh

    in reply to: Changes to Category and Tag pages #110540
    Mahesh
    Participant

    @banno2000: For this, you’ll need to create a child theme. You can find more details on creating child theme HERE. You can override the category heading with the following code. Add the following code into the child theme’s functions.php

    add_filter( 'get_the_archive_title', function ( $title ) {
        if( is_category() ) {
            $title = single_cat_title( 'Put your text here: ', false );
        }
        return $title;
    });

    Regards,
    Mahesh

    in reply to: Malformed Comment box #110532
    Mahesh
    Participant

    @dschwartzer: Glad to know you’ve solved the issue. Thank you for your appreciation. Have a nice day!

    Regards,
    Mahesh

    in reply to: Post with two images on homepage #110531
    Mahesh
    Participant

    @m-mommers: Are you using any pluigns? If so try disabling theme one by one check if that resolves the issue. From when did this issue occur? From post titled Heggenmus, all contents are displaying fine.

    Regards,
    Mahesh

    in reply to: Changes to Category and Tag pages #110528
    Mahesh
    Participant

    @banno2000:
    1. This has been answered in your previous post.
    https://catchthemes.com/support-forum/topic/remove-author-and-date-at-top-of-posts/#post-110527

    And for other two changes you’ve mentioned above, you’ll need to customize the theme further.

    Regards,
    Mahesh

    in reply to: Remove 'author' and 'date' at top of Posts #110527
    Mahesh
    Participant

    @banno2000: Go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:

    /* Hide author and date on the top */
    #main .entry-header .entry-meta {
        display: none;
    }

    And for disabling comments, go to edit post, click on Screen Options on the top right just beside Help. Some options will slide down. Check on Discussion checkbox. Then scroll down below the content and uncheck Allow Comments checkbox then click Update.
    Please repeat the process of unchecking Allow Comments checkbox for the posts. Hope this helps.

    Regards,
    Mahesh

    in reply to: Drop-down categories in primary menu #110526
    Mahesh
    Participant

    @banno2000: Yes, this can be done. Go to Dashboard=> Appearance=> Menu and add the sub categories into the menu and drag it as sub menu and save the menu. No coding required. Just drag and drop. Let me know if any problem.

    Regards,
    Mahesh

    in reply to: hide site made with Catch Everest Theme #110525
    Mahesh
    Participant

    @ccarmody: I don’t quite get you. Can you please clarify more.

    Regards,
    Mahesh

    in reply to: Disable infinite scrolling in my Catch Box theme #110523
    Mahesh
    Participant

    @cjdodaro: This is a repeat post, so I’ll skip this one. Please refer to the link below:
    https://catchthemes.com/support-forum/topic/disable-infinite-scrolling-in-my-catch-box-theme/#post-110520

    Regards,
    Mahesh

    in reply to: Full Frame WP #110522
    Mahesh
    Participant

    @omenicus: Please post in your site url. What seems to be the problem? Have you tried deactivating the plugins? Please try so and let me know further.

    Regards,
    Mahesh

    in reply to: Rearrange order of home page #110521
    Mahesh
    Participant

    @joshuacgibson: Please post in your site url.

    Regards,
    Mahesh

    in reply to: Disable infinite scrolling in my Catch Box theme #110520
    Mahesh
    Participant

    @cjdodaro: Seems you are using Jetpack plugin and infinite scroll is enabled. Please disable the infinite scroll from jetpack’s setting and you’ll be good to go.

    Regards,
    Mahesh

    in reply to: Social Links at top and bottom of page #110519
    Mahesh
    Participant

    @clive: Go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:

    #sidebar-header-right {
        display: none;
    }

    Regards,
    Mahesh

    in reply to: Adjust partial backgroundcolor, footercolor and logo size #110517
    Mahesh
    Participant

    @nico: If you mean the background color, this feature is included in Free version, go to Dashboard=> Appearance=> Customize=> Background Image and change the Background Color. Make sure you’ve removed the Background Image.
    Footer color options is available in Pro version. I recommend you to upgrade to Pro.
    For logo a bit bitter after scrolling, go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:

    .is-sticky .site-logo img {
        max-height: 80px;
    }

    Regards,
    Mahesh

    in reply to: Change text color in featured slider #110516
    Mahesh
    Participant

    @tinus53: Go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:

    #main-slider .entry-header .entry-title a {
        color: #ff00ff;
    }

    Note: Please use your desired color.

    Regards,
    Mahesh

    in reply to: Headings problem with Featured Page Slider #110514
    Mahesh
    Participant

    @andra4a: Well, we haven’t actually tested the plugin in our theme. May be it is not compatible and causing the issue.

    Regards,
    Mahesh

    in reply to: publishing time in entry-meta #110513
    Mahesh
    Participant

    @falkr1979: Yes, this can be done. For that, 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 following codes.

    function catchevolution_posted_on() {
    	/* Check Author URL to Support Google Authorship
    	*
    	* By deault the author will link to author archieve page
    	* But if the author have added their Website in Profile page then it will link to author website
    	*/
    	if ( get_the_author_meta( 'user_url' ) != '' ) {
    		$catchevolution_author_url = 	esc_url( get_the_author_meta( 'user_url' ) );
    	}
    	else {
    		$catchevolution_author_url = esc_url( get_author_posts_url( get_the_author_meta( "ID" ) ) );
    	}
    	printf( __( '<span class="sep">Posted on </span><a href="%1$s" title="%2$s" rel="bookmark"><time class="entry-date updated" datetime="%3$s" pubdate>%4$s</time></a><span class="by-author"> <span class="sep"> by </span> <span class="author vcard"><a class="url fn n" href="%5$s" title="%6$s" rel="author">%7$s</a></span></span>', 'catch-evolution' ),
    		esc_url( get_permalink() ),
    		esc_attr( get_the_time() ),
    		esc_attr( get_the_date( 'c' ) ),
    		esc_html( get_the_date( 'F j, Y g:i A' ) ),
    		$catchevolution_author_url,
    		esc_attr( sprintf( __( 'View all posts by %s', 'catch-evolution' ), get_the_author() ) ),
    		get_the_author()
    	);
    }

    Regards,
    Mahesh

    in reply to: Switch theme to get a wider screen look #110473
    Mahesh
    Participant

    @oly: You can try our other full-width themes:
    * Full Frame
    * Rock Star
    * Clean Business
    * Parallax Frame
    * Fabulous Fluid
    * Clean Magazine

    https://catchthemes.com/themes/category/premium/

    Regards,
    Mahesh

    in reply to: header background colour #110469
    Mahesh
    Participant

    @diet: Please post in your site url.

    Regards,
    Mahesh

    in reply to: WordPress detector #110461
    Mahesh
    Participant

    @brand:
    1 – I don’t understand what you mean. Please explain further.
    2 – Please post in your site url.

    Regards,
    Mahesh

Viewing 20 posts - 1,321 through 1,340 (of 4,903 total)