Forum Replies Created

Viewing 20 posts - 4,261 through 4,280 (of 4,903 total)
  • Author
    Posts
  • in reply to: Featured Slider Text Overlap #86336
    Mahesh
    Participant

    Hi @dougdavis22,

    Please post in your site url.

    Regards,
    Mahesh

    in reply to: Table Column Widths #86334
    Mahesh
    Participant

    Hi @chicadita,

    Glad to know you were able to fix you issue.
    Catch Box free version does have Custom CSS option. You can find it in “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS”.
    For making first column more narrow than the other two, add the following CSS:

    .entry-content table tr td {
          width: 40%;
    }
    .entry-content table tr td:nth-child(1) {
          width: 20%;
    }

    Note: Adjust the width as you desire.

    Regards,
    Mahesh

    in reply to: How to make fixed header responsive? #86308
    Mahesh
    Participant

    Hi @calmo16,

    Thank you for your appreciation. If you like my support and Clean Box theme then please support by providing your valuable review and rating at
    https://wordpress.org/support/view/theme-reviews/clean-box?rate=5#postform

    Have a nice day!

    Regards,
    Mahesh

    in reply to: Home page only 2°footer area #86302
    Mahesh
    Participant

    Hi @isabella,

    For aligning the footer area to the center, go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS:

    .home #supplementary .widget-area {
        float: none;
    }

    Regards,
    Mahesh

    in reply to: How to make fixed header responsive? #86297
    Mahesh
    Participant

    Hi @calmo16,

    For making logo below menu non-responsive, add the following CSS:

    #site-logo img {
        max-width: none;
        width: 1200px;
    }

    Regards,
    Mahesh

    in reply to: Table Column Widths #86296
    Mahesh
    Participant

    Hi @chicadita,

    Please post in your site url.

    Regards,
    Mahesh

    in reply to: Disable links on slider images #86295
    Mahesh
    Participant

    Hi @corkiesmom,

    You’ll need to create a child theme for that. You can find more details on creating child theme HERE. Then in your child theme’s functions.php add the following code and it will remove the links from the slider image.

    function catchresponsive_page_slider( $options ) {
    	$quantity		= $options['featured_slide_number'];
    	$more_link_text	=	$options['excerpt_more_text'];
    
        global $post;
    
        $catchresponsive_page_slider = '';
        $number_of_page 		= 0; 		// for number of pages
    	$page_list				= array();	// list of valid page ids
    
    	//Get number of valid pages
    	for( $i = 1; $i <= $quantity; $i++ ){
    		if( isset ( $options['featured_slider_page_' . $i] ) && $options['featured_slider_page_' . $i] > 0 ){
    			$number_of_page++;
    
    			$page_list	=	array_merge( $page_list, array( $options['featured_slider_page_' . $i] ) );
    		}
    
    	}
    
    	if ( !empty( $page_list ) && $number_of_page > 0 ) {
    		$get_featured_posts = new WP_Query( array(
    			'posts_per_page'	=> $quantity,
    			'post_type'			=> 'page',
    			'post__in'			=> $page_list,
    			'orderby' 			=> 'post__in'
    		));
    		$i=0;
    
    		while ( $get_featured_posts->have_posts()) : $get_featured_posts->the_post(); $i++;
    			$title_attribute = the_title_attribute( array( 'before' => __( 'Permalink to: ', 'catch-responsive' ), 'echo' => false ) );
    			$excerpt = get_the_excerpt();
    			if ( $i == 1 ) { $classes = 'page pageid-'.$post->ID.' hentry slides displayblock'; } else { $classes = 'page pageid-'.$post->ID.' hentry slides displaynone'; }
    			$catchresponsive_page_slider .= '
    			<article class="'.$classes.'">
    				<figure class="slider-image">';
    				if ( has_post_thumbnail() ) {
    					$catchresponsive_page_slider .= get_the_post_thumbnail( $post->ID, 'catchresponsive-slider', array( 'title' => esc_attr( $title_attribute ), 'alt' => esc_attr( $title_attribute ), 'class'	=> 'attached-page-image' ) );
    				}
    				else {
    					//Default value if there is no first image
    					$catchresponsive_image = '<img class="pngfix wp-post-image" src="'.get_template_directory_uri().'/images/gallery/no-featured-image-1200x514.jpg" >';
    
    					//Get the first image in page, returns false if there is no image
    					$catchresponsive_first_image = catchresponsive_get_first_image( $post->ID, 'catchresponsive-slider', array( 'title' => esc_attr( $title_attribute ), 'alt' => esc_attr( $title_attribute ), 'class' => 'attached-page-image' ) );
    
    					//Set value of image as first image if there is an image present in the page
    					if ( '' != $catchresponsive_first_image ) {
    						$catchresponsive_image =	$catchresponsive_first_image;
    					}
    
    					$catchresponsive_page_slider .= $catchresponsive_image;
    				}
    
    				$catchresponsive_page_slider .= '
    				</figure><!-- .slider-image -->
    				<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">'.catchresponsive_page_post_meta().'</div>
    					</header>';
    					if( $excerpt !='') {
    						$catchresponsive_page_slider .= '<div class="entry-content"><p>'. $excerpt.'</p></div>';
    					}
    					$catchresponsive_page_slider .= '
    				</div><!-- .entry-container -->
    			</article><!-- .slides -->';
    		endwhile;
    
    		wp_reset_query();
      	}
    	return $catchresponsive_page_slider;
    }

    Regards,
    Mahesh

    in reply to: Mobile Table Responsive Text #86294
    Mahesh
    Participant

    Hi @husker,

    For the above changes:
    1. Edit the page with that text, go to content text tab and find the line
    <p>Scroll left and right to view all</p>
    And replace it with the following
    <p class="mobile-display">Scroll left and right to view all</p>
    Then click update.

    2. Go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS”

    .mobile-display {
        display: none;
    }
      
    @media screen and (max-width: 768px) {
        .mobile-display {
            display: block;
        }
    }

    Note: Follow step for all pages with “Scroll left and right to view all” text

    Regards,
    Mahesh

    in reply to: Home page only 2°footer area #86293
    Mahesh
    Participant

    Hi @isabella,

    Thank you for using Catch Everest Pro.
    I recommend you to use Widget Visibility control plugins such as Jetpack’s Widget Visibility or Widget Visibility plugin etc. Or you may use any plugins from WordPress.org plugins repo with similar feature. And then use the widget to display your desired image in home page only.

    Regards,
    Mahesh

    Mahesh
    Participant

    Hi @hugodebe,

    Glad you made it work. And the above one the the great step by step tutorial for creating .po, .mo files for translation.
    And yes the .po and .mo files are case sensitive.
    Thank you for the above.
    Have a nice day!

    Regards,
    Mahesh

    in reply to: Thumbnails und Pictures in one Post #86290
    Mahesh
    Participant

    Hi @halbfett,

    Sorry, I didn’t quite get what you meant, please clarify more. Please post in your site url.

    Regards,
    Mahesh

    in reply to: 2 questions: Update question, How to do it-question #86289
    Mahesh
    Participant

    Hi @knudkp,

    1. You can check theme’s change log. Theme folder/changelog.txt. And you can check the theme’s version in “Dashboard=> Appearance=> Themes” Theme Details.

    2. We do have how to do video for Catch Updater. Please check the link below.
    https://www.youtube.com/watch?v=W95SuabDZi8

    Regards,
    Mahesh

    in reply to: Social widget #86287
    Mahesh
    Participant

    Hi @micha,

    I recommend you to use the Catch Web Tool’s Social Icons module. It includes the features you desired. The latest update is about to release soon. Please wait for the update. Thank you for your patience.

    Regards,
    Mahesh

    in reply to: A question about excerpt tag #86286
    Mahesh
    Participant

    Hi @borakula,

    By default, full content is displayed in post list. You have to change the setting for displaying excerpt instead of full content. Go to “Dashboard=> Appearance=> Customize=> Theme Options=> Layout Options” and in select Excerpt/Blog Display from Full Content Display dropdown. Click Save and check the front end.

    Regards,
    Mahesh

    in reply to: Catchbase Pro 3.3 update not installing #86283
    Mahesh
    Participant

    Hi @knudkp,

    For updating theme please follow the instruction in the theme-instruction in the link below:
    https://catchthemes.com/theme-instructions/catch-base-pro/#updating
    I recommend you to use the Catch Updater plugin.
    Let me know if any problem.

    Regards,
    Mahesh

    in reply to: Catchbase Pro 3.3 update not installing #86282
    Mahesh
    Participant

    Hi @marga,

    Glad it helped you. Thank you for your appreciation.
    Have a nice day!

    Regards,
    Mahesh

    in reply to: Change the colour of the category tags. #86279
    Mahesh
    Participant

    Hi @blogtunes,

    Thank you for your appreciation.
    Have a nice day!

    Regards,
    Mahesh

    in reply to: Radio button or check box #86278
    Mahesh
    Participant

    Hi @micha,

    Yes indeed. 🙂
    Have a nice day!

    Regards,
    Mahesh

    in reply to: Mobile responsive problem #86277
    Mahesh
    Participant

    Hi @dmp-lakshitha,

    But I didn’t really do anything. May be the issue was due to cache.
    Anyway, thank you for your appreciation. 🙂
    Have a nice day!

    Regards,
    Mahesh

    Mahesh
    Participant

    Hi @micha,

    Yes, it is Jetpack’s commenting feature that you are using. First after the page loads, only the text area is visible and as soon as you click inside the comment box, other form inputs slides down and the white space shrinks.

    Regards,
    Mahesh

Viewing 20 posts - 4,261 through 4,280 (of 4,903 total)