Forum Replies Created

Viewing 20 posts - 3,201 through 3,220 (of 4,903 total)
  • Author
    Posts
  • in reply to: Slider – remove links #95862
    Mahesh
    Participant

    @nextgenf: 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 code:

    function catchkathmandu_category_sliders() {
    	//delete_transient( 'catchkathmandu_category_sliders' );
    
    	global $post;
    	global $catchkathmandu_options_settings;
       	$options = $catchkathmandu_options_settings;
    
    	if( ( !$catchkathmandu_category_sliders = get_transient( 'catchkathmandu_category_sliders' ) ) && !empty( $options[ 'slider_category' ] ) ) {
    		echo '<!-- refreshing cache -->';
    
    		$catchkathmandu_category_sliders = '
    		<div id="main-slider" class="container">
            	<section class="featured-slider">';
    				$get_featured_posts = new WP_Query( array(
    					'posts_per_page'		=> $options[ 'slider_qty' ],
    					'category__in'			=> $options[ 'slider_category' ],
    					'ignore_sticky_posts' 	=> 1 // ignore sticky posts
    				));
    				$i=0; while ( $get_featured_posts->have_posts()) : $get_featured_posts->the_post(); $i++;
    					$title_attribute = apply_filters( 'the_title', get_the_title( $post->ID ) );
    					$excerpt = get_the_excerpt();
    					if ( $i == 1 ) { $classes = 'post pageid-'.$post->ID.' hentry slides displayblock'; } else { $classes = 'post pageid-'.$post->ID.' hentry slides displaynone'; }
    					$catchkathmandu_category_sliders .= '
    					<article class="'.$classes.'">
    						<figure class="slider-image">'. get_the_post_thumbnail( $post->ID, 'slider', array( 'title' => esc_attr( $title_attribute ), 'alt' => esc_attr( $title_attribute ), 'class'	=> 'pngfix' ) ).
    						'</figure>
    						<div class="entry-container">
    							<header class="entry-header">
    								<h1 class="entry-title">
    									<a title="Permalink to '.the_title('','',false).'" href="' . get_permalink() . '">'.the_title( '<span>','</span>', false ).'</a>
    								</h1>
    								<div class="assistive-text">'.catchkathmandu_page_post_meta().'</div>
    							</header>';
    							if( $excerpt !='') {
    								$catchkathmandu_category_sliders .= '<div class="entry-content">'. $excerpt.'</div>';
    							}
    							$catchkathmandu_category_sliders .= '
    						</div>
    					</article><!-- .slides -->';
    				endwhile; wp_reset_query();
    				$catchkathmandu_category_sliders .= '
    			</section>
            	<div id="slider-nav">
            		<a class="slide-previous"><</a>
            		<a class="slide-next">></a>
            	</div>
            	<div id="controllers"></div>
      		</div><!-- #main-slider -->';
    
    	set_transient( 'catchkathmandu_category_sliders', $catchkathmandu_category_sliders, 86940 );
    	}
    	echo $catchkathmandu_category_sliders;
    } // catchkathmandu_category_sliders

    Removing text from slider, you can use Custom CSS. Go to Dashboard=> Appearance=> Customzie=> Theme Options=> Custom CSS and add the following CSS:

    #main-slider .entry-container {
        display: none;
    }

    Regards,
    Mahesh

    in reply to: More than 20 Featured Sliders #95860
    Mahesh
    Participant

    @husker: Adding more slider will make your site slower. But if you do want to have it anyway, I can help you. Are you a developer or have a good programming knowledge? because the customization for this is complicated. If you are okay with programming, I can guide you through. If not I recommend you to hire a customizer for this.
    https://catchthemes.com/hire-customizer/

    Regards,
    Mahesh

    in reply to: Cannot install Simple Catch Pro version 3.3 #95859
    Mahesh
    Participant

    @rflores:
    Hi rflores,

    Can you send me the link of the page of other website and the text you want to display as link, then I’ll provide you with the HTML code for the anchor tag.

    Regards,
    Mahesh

    in reply to: Header image not displlayed #95858
    Mahesh
    Participant

    @moonrun:
    Hi Jen,

    I checked for the issue in Clean Business Pro in our server and it seems to be working fine. Please post in your site URL.

    Regards,
    Mahesh

    in reply to: Header image not displlayed #95857
    Mahesh
    Participant

    @tinus53: The issue is seems to be caused by WP core itself.
    https://wordpress.org/support/topic/custom-header-image-issue-default-header-not-displayed
    If you want to have the header image as of the default one, please use the following image
    https://catchthemes.com/demo/catch-adaptive/wp-content/themes/catch-adaptive-pro/images/headers/image-header-1680×720.jpg

    Regards,
    Mahesh

    in reply to: Links in post not dispayed and list-style error #95856
    Mahesh
    Participant

    @tinus53: Yes, that’s the trick. Thank you for your appreciation. If you like my support and Catch Adaptive theme then please support by providing your valuable review and rating at https://wordpress.org/support/view/theme-reviews/catch-adaptive?rate=5#postform
    Have a nice day!

    Regards,
    Mahesh

    in reply to: YouTube Video Wrap Size #95815
    Mahesh
    Participant

    @smaypower: Thank you for your appreciation. Glad to know you issue is resolved. Have a nice day!

    Regards,
    Mahesh

    in reply to: Cannot install Simple Catch Pro version 3.3 #95808
    Mahesh
    Participant

    @rflores: You can simply add the anchor tag into the content of that blog.
    Example:
    <a target="_blank" title ="Text you want to display as link" href="link-to-page-in-different-website">Text you want to display as link</a>

    Regards,
    Mahesh

    in reply to: Links in post not dispayed and list-style error #95807
    Mahesh
    Participant

    @tinus53: Then you’ll need the CSS that applies to the specific page only. Please use the following Custom CSS instead:

    #post-135 .entry-content ul > li {
    	list-style: none;
    }
    
    #post-135 .event-list .end-date {
        margin-left: 0;
    }
    
    #post-135 .multi-day {
        margin: 0;
    }

    Hope this helps.
    Note: I assume you have calendar list in this very page only.

    Regards,
    Mahesh

    in reply to: Featured image suddenly showing up enlarged in post #95806
    Mahesh
    Participant

    @jvece1: Glad to know you’ve solved it all by yourself. Have a nice day!

    Regards,
    Mahesh

    Mahesh
    Participant

    lmkele:
    Hi Kimberley,

    Thank you for using Catch Flames Pro.
    Please post in your site url / a screenshot of your problem so that I can check for the issue and help your further.

    Regards,
    Mahesh

    in reply to: problems with footer #95735
    Mahesh
    Participant

    @antoon:
    Hi Antoon,

    The above CSS is not complete it is just an example. For that you’ll need to first upload the ttf font in to your site’s folder somewhere way yoursite/wp-content/uploads and then in add the following Custom CSS:

    @font-face {
        font-family: myCalibri;
        src: url(yoursite/wp-content/uploads/calibri.ttf) format('truetype');
    }
    
    body {
        font-family: myCalibri, "Calibri";
    }

    Note: Please change the path in the above CSS to your site’s relative path.

    Do you mean to center everything in the footer? Even the table’s content? If so add the following CSS:

    .footer, 
    .footer table td, th {
        text-align: center;
    }

    Let me know if any problem.

    Regards,
    Mahesh

    in reply to: Links in post not dispayed and list-style error #95734
    Mahesh
    Participant

    @tinus53:

    1. Column Layout uses excerpt content too. 🙂

    2. Square list-type is from theme theme’s style.css and the margin is from event-list.css

    Regards,
    Mahesh

    in reply to: Header image not displlayed #95731
    Mahesh
    Participant

    @tinus53: The steps you’ve followed is correct, and should have causing such issue. Yes, please try reinstalling the theme, hope it helps. Let me know if the problem persists.

    Regards,
    Mahesh

    in reply to: Updating Catch Responsive Pro #95729
    Mahesh
    Participant

    @sheilalowe: Glad to know you’re able to update the theme and make it working. Have a nice day!

    Regards,
    Mahesh

    in reply to: YouTube Video Wrap Size #95724
    Mahesh
    Participant

    @smaypower: Are you using any plugins? Please deactivate them one by one and check if it resolves the issue.
    And can you please share the embeded code for the video?

    Regards,
    Mahesh

    in reply to: Sidebar Issues #95720
    Mahesh
    Participant

    @alwilleford: The issue is because of the Custom CSS you have used in your site. Please remove it and it will fix the issue.

    Regards,
    Mahesh

    in reply to: Mobile Site #95719
    Mahesh
    Participant

    @bdelancey: Glad to know you resolved the issue yourself. Have a nice day!

    Regards,
    Mahesh

    in reply to: Header image not displlayed #95718
    Mahesh
    Participant

    @tinus: I checked the same in our server and the header image is working fine in the theme. Please make sure you’ve saved the customizer settings. If you are using any plugins, please deactivate it and check again. Let me know if the problem persists.

    Regards,
    Mahesh

    in reply to: Links in post not dispayed and list-style error #95717
    Mahesh
    Participant

    @tinus53:
    1. Links in Posts are not displayed:
    The reason is, using excerpt will strip all the HTML and will only display plain text. You’ll need to display full content instead. This will happen in all theme.

    2. Content area it seams that this css-file has no effect:
    Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    .entry-content ul > li {
    	list-style: none;
    }
    
    .event-list .end-date {
        margin-left: 0;
    }
    
    .multi-day {
        margin: 0;
    }

    Thanks for noticing the link in the footer, we’ll fix it in the next update.

    Regards,
    Mahesh

Viewing 20 posts - 3,201 through 3,220 (of 4,903 total)