Forum Replies Created

Viewing 20 posts - 10,741 through 10,760 (of 12,034 total)
  • Author
    Posts
  • in reply to: posts to be displayed on home page #150134
    Skandha
    Participant

    @wolpertinger: Let me know if you have anymore issues. Have a good day! 🙂

    Kind Regards,
    Skandha

    in reply to: Catch Box Pro update #150133
    Skandha
    Participant

    @profhickman: Well, that is strange. I will contact you shortly by email.

    Kind Regards,
    Skandha

    in reply to: Purchased Catch Box Pro, Zip File Not Downloaded #150132
    Skandha
    Participant

    @evergreenw60: You can either Zip the theme folder you have downloaded and then upload it or try re-downloading the .zip file using browsers other than Safari. I think then it won’t automatically unzip the file.

    Let me know if this works out!
    Kind Regards,
    Skandha

    in reply to: Featured Slider Images don't always show #150130
    Skandha
    Participant

    @dan-wem: Please post in your site URL so that I can look into the issue.

    Kind Regards,
    Skandha

    Skandha
    Participant

    @intermissionabeautybreak: I don’t think there is much you can do for this but maybe the following CSS Code will make it look better.

    Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    @media screen and (max-width:610px) {
    	.column-1 {
    		width:115px;
    	}
    }

    Let me know if this works out!
    Kind Regards,
    Skandha

    in reply to: Featured Post on Clean Box Pro #150098
    Skandha
    Participant

    @summermedia: I am not able to access you site. Please make you site accessible so that I can look in to the issue and provide you a solution.

    Kind Regards,
    Skandha

    Skandha
    Participant

    @n-bely: Go to => Appearance => Customize => Additional CSS and add the following CSS Code.
    /* To remove search field in mobile view */

    .mobile-search-wrapper {
         display:none !important;
    }

    /*To remove prev and next button */

    .meta-nav {
        display:none !important;
    }

    /* To change hover color of prev and next buttons */

    .nav-previous a:hover, .nav-previous span:hover, .nav-next a:hover, .nav-next span:hover {
        color:grey !important;
    }

    Let me know if this is what you want!
    Kind Regards,
    Skandha

    in reply to: Download failed #150095
    Skandha
    Participant

    @thumper: Please follow this tutorial and try to upload the theme again.

    Let me know if you are still having difficulty uploading the theme.
    Kind Regards,
    Skandha

    in reply to: Everest Theme Premium: Theme Option >Social Links #150094
    Skandha
    Participant

    @joytinat: I just deactivated and again activated all your plugins and it seems to work now. Please check and let me know if the issue is resolved.

    Kind Regards,
    Skandha

    in reply to: Remove linking from sliders and content photos #150093
    Skandha
    Participant

    @rollinroots: I checked your site and it looks like you have figured out a way to disable links in the slider.

    Let me know if you have anymore issues!
    Kind Regards,
    Skandha

    in reply to: Promotion Headline Button Text Colour & Background #150092
    Skandha
    Participant

    @adilkhan150785: Hello, there, I hope I was able to resolve your issue. If it’s not too much trouble, I have a quick request: could you please leave an honest review?
    https://wordpress.org/support/theme/catch-responsive/reviews/#new-post
    Your review will help others know what to expect when they’re looking for the support I offer. Even a sentence or two would be hugely appreciated. Thanks, and if there’s anything else at all that I can do to help,
    don’t hesitate to let me know. Have a good day! 🙂

    Kind Regards,
    Skandha

    in reply to: Content cut off on mobile #150088
    Skandha
    Participant

    @intermissionabeautybreak: Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    div {
        white-space:unset;
    }

    Let me know if this works out!
    Kind Regards,
    Skandha

    in reply to: How to add an empty line in content #150087
    Skandha
    Participant

    @ingoz: Please post in your site URL and let me know where you want to add an empty line.

    Kind Regards,
    Skandha

    in reply to: Theme help! #150086
    Skandha
    Participant

    @jafflycgmail-com: Glad you were able to solve the issue yourself. Have a good day! 🙂

    Kind Regards,
    Skandha

    in reply to: Custom Post Types #150085
    Skandha
    Participant

    @wolpertinger: Can you please elaborate what kind of custom post type you want to add?

    Kind Regards,
    Skandha

    Skandha
    Participant

    @nicolasbassand: There seems to be an issue with the font options. I will get back to you soon on this.

    Kind Regards,
    Skandha

    in reply to: Display post dates on my website #150081
    Skandha
    Participant

    @nicolasbassand: I have replied to this issue in the previous thread.

    Kind Regards,
    Skandha

    Skandha
    Participant

    @nicolasbassand: To remove Archive for text
    Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    .archive-text {
    	display:none;
    }

    Let me know if this works out!
    Kind Regards,
    Skandha

    in reply to: Display post dates on my website #150079
    Skandha
    Participant

    @nicolasbassand: For this you will need to create a child theme. If you do not know how to create a child theme you can use Generate Child Theme Plugin.

    After creating a child theme. Go to => Child Theme Folder => Open functions.php file and add the following Code.

    function catch_wheels_header_text() {
    		if ( is_front_page() ) {
    			$header_media_text = get_theme_mod( 'catch_wheels_header_media_text' );
    
    			echo wp_kses_post( $header_media_text );
    		} elseif ( is_singular() ) {
    			// Show By author.
    			echo '<div class="entry-meta">';
    
    			global $post;
    
    			$author_id=$post->post_author;
    			
    
    			echo get_the_modified_date();
    
    			$byline = sprintf(
    				/* translators: %s: post author */
    				__( '<span class="author-label screen-reader-text">By </span>%s', 'catch-wheels-pro' ),
    				'<span class="author vcard"><span>By</span><a class="url fn n" href="' . esc_url( get_author_posts_url( $author_id ) ) . '">' . esc_html( get_the_author_meta( 'display_name', $author_id ) ) . '</a></span>'
    			);
    
    			echo '<span class="byline"> ' . $byline . '</span>'; // WPCS: XSS OK.
    
    			echo '</div><!-- .entry-meta -->';
    		} elseif ( is_404() ) {
    			esc_html_e( 'It looks like nothing was found at this location. Maybe try one of the links below or a search?', 'catch-wheels-pro' );
    		} elseif( is_search() || ( class_exists( 'WooCommerce' ) && is_woocommerce() ) ) {
    			// No Header Media Text.
    		} else {
    			the_archive_description();
    		}
    	}

    Let me know if this works out!
    Kind Regards,
    Skandha

    in reply to: Blog Title #150040
    Skandha
    Participant

    @darlo: There seems to be an issue with the archive title. I will check and get back to you soon.

    Kind Regards,
    Skandha

Viewing 20 posts - 10,741 through 10,760 (of 12,034 total)