Viewing 20 results - 801 through 820 (of 2,392 total)
  • Author
    Search Results
  • #86342
    dougdavis22
    Member

    The only changes I’ve made are to add a couple of Custom CSS bits:

    #slider {
    background-color: #ffffff;
    }
    #slider .featured-text { color: #000000; }

    #access-secondary{
    background-color: #496175;
    font-style: italic;
    font-size:80%;
    }

    #86333

    In reply to: Featured Image

    Kyaw Sithu
    Member

    Hello I am using the simple catch pro version. But how do i add different featured slider per page? Is there a way? Could u pls help me out with that?

    #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

    #85810
    studiodimare
    Member

    It’s very strange. I’ve not modified any codes to my knowledge. I’m not a programmer. So prior customizations would have been done on the previous theme I was using. I can only remember changing the text of my 404 error page in the past before loading Full Frame.

    I forgot to mention in my first post that when in the customizer I am not able to see the preview at all. Only a spinning icon as if the page is trying to refresh is seen no matter which option I am trying to view. So the only way I can see if any changes are to my liking is to save and publish, then refresh a live version of my site in another tab.

    I disabled all plug-ins as you suggested. It was only then that I was able to see another section of the Featured Content options and I changed the default background and the headline. I was not able to get any options to change the Featured Page to use the 3/4 selections that are supposed to be possible. So I disabled it from showing the default instead. I tried looking for it in other areas of the customizer and to see if I could change the Featured Slider. Nothing new could be found anywhere else.

    Returning to the Featured Content area of the customizer I tried refreshing my browser hoping that my preview would show up. Then the options to modify the Featured Content I was finally seeing before disappeared again. I am left only with the new background and headline I changed before this option disappeared. Thankfully I am happy with this much for now. However, I would like to put in the featured page info of linking to different services I want to showcase.

    Thinking that perhaps it was a corrupted install of the theme, I also downloaded a new copy and reinstalled it. Nothing new. I’ve turned back on my plugins and will go back to adding more content on other pages for now.

    #85721
    Mahesh
    Participant

    Hi @calmo16,

    You’ll need to override another function that displays Featured Grid Content similarly as for Featured Slider and Featured Content. Add the following code in you child theme’s functions.php

    function clean_box_page_grid_content( $options ) {
        $quantity       = $options['featured_grid_content_number'];
    
        global $post;
    
        $clean_box_page_grid_content = '';
        $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_grid_content_page_' . $i] ) && $options['featured_grid_content_page_' . $i] > 0 ){
                $number_of_page++;
    
                $page_list  =   array_merge( $page_list, array( $options['featured_grid_content_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=1;
    
            while ( $get_featured_posts->have_posts() ) {
    
                $get_featured_posts->the_post();
    
                $title_attribute = the_title_attribute( array( 'echo' => false ) );
    
                $classes = 'page pageid-' . $post->ID;
    
                if ( 1 == $i ) {
                    $classes .= ' first';
                }
                else if ( 1 == $i%3 ) {
                    $classes .= ' first-cols';
                }
    
                $clean_box_page_grid_content .=
                '<a class="grid-box '. $classes .'" title="' . $title_attribute . '" href="' . get_permalink() . '">';
    
                if ( has_post_thumbnail() ) {
                    if ( 1 == $i ) {
                        $clean_box_page_grid_content .= get_the_post_thumbnail( $post->ID, 'clean-box-featured-grid', array( 'title' => esc_attr( $title_attribute ), 'alt' => esc_attr( $title_attribute ), 'class'    => 'pngfix' ) );
                    }
                    else{
                        $clean_box_page_grid_content .= get_the_post_thumbnail( $post->ID, 'clean-box-featured-content', array( 'title' => esc_attr( $title_attribute ), 'alt' => esc_attr( $title_attribute ), 'class' => 'pngfix' ) );
                    }
                }
                else {
                    //Default value if there is no first image
                    $clean_box_image =
                        '<img class="no-image pngfix" src="'.get_template_directory_uri().'/images/gallery/no-featured-image-800x450.jpg" />';
    
                    //Get the first image in page, returns false if there is no image
                    $clean_box_first_image = clean_box_get_first_image( $post->ID, 'medium', array( 'title' => esc_attr( $title_attribute ), 'alt' => esc_attr( $title_attribute ), 'class' => 'pngfix' ) );
    
                    //Set value of image as first image if there is an image present in the post
                    if ( '' != $clean_box_first_image ) {
                        $clean_box_image =  $clean_box_first_image;
                    }
    
                    $clean_box_page_grid_content .= $clean_box_image;
                }
    
                $clean_box_page_grid_content .= '
                    <div class="caption">
                        <span class="vcenter">
                            <span class="entry-title">
                                ' . the_title('', '', false) . '
                            </span>
                            <span class="more">';
    
                            $clean_box_page_grid_content .=  $options['excerpt_more_text'];
    
                    $clean_box_page_grid_content .= '
                            </span><!-- .more -->
                        </span><!-- .vcenter -->
                    </div><!-- .caption -->
                </a><!-- .grid-box -->';
    
                $i++;
            }
    
            wp_reset_query();
        }
    
        return $clean_box_page_grid_content;
    }

    Regards,
    Mahesh

    #85716
    Mahesh
    Participant

    Hi @calmo16,

    Sorry, I thought it to be Featured Slider. The above code is for Featured Slider, for Featured Content, add the code below in child theme’s functions.php

    function clean_box_page_content( $options ) {
        global $post;
    
        $quantity                   = $options [ 'featured_content_number' ];
    
        $more_link_text             = $options['excerpt_more_text'];
    
        $show_content   = isset( $options['featured_content_show'] ) ? $options['featured_content_show'] : 'excerpt';
    
        $clean_box_page_content     = '';
    
        $number_of_page             = 0;        // for number of pages
    
        $page_list                  = array();  // list of valid pages ids
    
        //Get valid pages
        for( $i = 1; $i <= $quantity; $i++ ){
            if( isset ( $options['featured_content_page_' . $i] ) && $options['featured_content_page_' . $i] > 0 ){
                $number_of_page++;
    
                $page_list  =   array_merge( $page_list, array( $options['featured_content_page_' . $i] ) );
            }
    
        }
        if ( !empty( $page_list ) && $number_of_page > 0 ) {
            $get_featured_posts = new WP_Query( array(
                        'posts_per_page'        => $number_of_page,
                        'post__in'              => $page_list,
                        'orderby'               => 'post__in',
                        'post_type'             => 'page',
                    ));
    
            $i=0;
            while ( $get_featured_posts->have_posts()) : $get_featured_posts->the_post(); $i++;
                $title_attribute = the_title_attribute( array( 'echo' => false ) );
    
                $excerpt = get_the_excerpt();
    
                $clean_box_page_content .= '
                    <article id="featured-post-' . $i . '" class="post hentry featured-page-content">';
                    if ( has_post_thumbnail() ) {
                        $clean_box_page_content .= '
                        <figure class="featured-homepage-image">
                            <a href="' . get_permalink() . '" title="' . $title_attribute . '">
                            '. get_the_post_thumbnail( $post->ID, 'medium', array( 'title' => esc_attr( $title_attribute ), 'alt' => esc_attr( $title_attribute ), 'class' => 'pngfix' ) ) .'
                            </a>
                        </figure>';
                    }
                    else {
                        $clean_box_first_image = clean_box_get_first_image( $post->ID, 'medium', array( 'title' => esc_attr( $title_attribute ), 'alt' => esc_attr( $title_attribute ), 'class' => 'pngfix' ) );
    
                        if ( '' != $clean_box_first_image ) {
                            $clean_box_page_content .= '
                            <figure class="featured-homepage-image">
                                <a href="' . get_permalink() . '" title="' . $title_attribute . '">
                                    '. $clean_box_first_image .'
                                </a>
                            </figure>';
                        }
                    }
    
                    $clean_box_page_content .= '
                        <div class="entry-container">
                            <header class="entry-header">
                                <h1 class="entry-title">
                                    <a href="' . get_permalink() . '" rel="bookmark">' . the_title( '','', false ) . '</a>
                                </h1>
                            </header>';
                            if ( 'excerpt' == $show_content ) {
                                $clean_box_page_content .= '<div class="entry-excerpt"><p>' . $excerpt . '</p></div><!-- .entry-excerpt -->';
                            }
                            elseif ( 'full-content' == $show_content ) {
                                $content = apply_filters( 'the_content', get_the_content() );
                                $content = str_replace( ']]>', ']]>', $content );
                                $clean_box_page_content .= '<div class="entry-content">' . $content . '</div><!-- .entry-content -->';
                            }
                            $clean_box_page_content .= '
                        </div><!-- .entry-container -->
                    </article><!-- .featured-post-'. $i .' -->';
            endwhile;
    
            wp_reset_query();
        }
    
        return $clean_box_page_content;
    }

    Regards,
    Mahesh

    #85711
    sparta
    Member

    In custom CSS I didn’t change anything, This field is empty.

    Photos size I tried 1680 x 720 , and 1920 × 823. neither fit. Both looks like in my printscreen.

    And no matter what I choose.. I choose demo featured slider the pictures size is the same like in printscreen, and then I choose featured image slider with my own photos is also the same thing like in printscreen.

    #85708
    Mahesh
    Participant

    Hi @sparta,

    Do you mean demo featured slider shows the slider in front-end with small image? Or only custom image slider is showing the issue? What sizes image are you using? The recommended slider size is Width: 1680px Height: 720px.
    And have you changed anything in the theme (code or Custom CSS).

    Regards,
    Mahesh

    #85643
    Mahesh
    Participant

    Hi calmo16,

    The above code was for Catch Box. Please replace it with the following for Clean Box.

    function clean_box_page_slider( $options ) {
        $quantity       = $options['featured_slider_number'];
        $more_link_text =   $options['excerpt_more_text'];
    
        global $post;
    
        $clean_box_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( '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'; }
                $clean_box_page_slider .= '
                <article class="'.$classes.'">
                    <figure class="slider-image">';
                    if ( has_post_thumbnail() ) {
                        $clean_box_page_slider .= '<a title="' . esc_attr( $title_attribute ) . '" href="' . get_permalink() . '">
                            '. get_the_post_thumbnail( $post->ID, 'clean-box-slider', array( 'title' => esc_attr( $title_attribute ), 'alt' => esc_attr( $title_attribute ), 'class'    => 'pngfix' ) ).'
                        </a>';
                    }
                    else {
                        //Default value if there is no first image
                        $clean_box_image = '<img class="pngfix wp-post-image" src="'.get_template_directory_uri().'/images/gallery/no-featured-image-1680x720.jpg" >';
    
                        //Get the first image in page, returns false if there is no image
                        $clean_box_first_image = clean_box_get_first_image( $post->ID, 'fullframe-slider', array( 'title' => esc_attr( $title_attribute ), 'alt' => esc_attr( $title_attribute ), 'class' => 'pngfix' ) );
    
                        //Set value of image as first image if there is an image present in the page
                        if ( '' != $clean_box_first_image ) {
                            $clean_box_image =  $clean_box_first_image;
                        }
    
                        $clean_box_page_slider .= '<a title="' . esc_attr( $title_attribute ) . '" href="' . get_permalink() . '">
                            '. $clean_box_image .'
                        </a>';
                    }
    
                    $clean_box_page_slider .= '
                    </figure><!-- .slider-image -->
                    <div class="entry-container">
                        <header class="entry-header">
                            <h1 class="entry-title">
                                <a title="' . esc_attr( $title_attribute ) . '" href="' . get_permalink() . '">'.the_title( '<span>','</span>', false ).'</a>
                            </h1>
                            <div class="assistive-text">'.clean_box_page_post_meta().'</div>
                        </header>';
                        if( $excerpt !='') {
                            $clean_box_page_slider .= '<div class="entry-content">'. $excerpt.'</div>';
                        }
                        $clean_box_page_slider .= '
                    </div><!-- .entry-container -->
                </article><!-- .slides -->';
            endwhile;
    
            wp_reset_query();
        }
        return $clean_box_page_slider;
    }

    Note: Please use child theme. If you change the core files, all your change will be lost after theme update.
    If you don’t see any changes (may be because of transient), please go to customize and save change something and it will work fine.
    Let me know if any problems.

    Regards,
    Mahesh

    #85623
    Sakin
    Keymaster

    @tivonjohnson: Looks like you are using Feature Post Slider, where you featured image get auto crop to 976px by 313px. If you want to use your custom size image, then change your slider type to Featured Image Slider and upload your image as per your need. But don’t upload too big image, it will hamper your site load. So, best option is to change to image slider and upload image with maximum width 976px and height as your like.

    #85622
    Mahesh
    Participant

    Hi @tivonjohnson,

    The recommended image size for Featured Post Slider is (976px x 313px). If you use large image then it will automatically crop the image to that size(without maintaining the aspect ratio). And if you use small image, the original image will be used. I recommend you to re-size/crop the image to the recommended size, then upload.
    Let me know if any problem.

    Regards,
    Mahesh

    #85621
    Mahesh
    Participant

    Hi calmo16,

    You need to create a child theme for this. You can find more on creating child theme HERE. Then in your child theme’s functions.php add the following code:

    function catchbox_sliders() {
    	global $post;
    
    	//delete_transient( 'catchbox_sliders' );
    
    	// get data value from catchbox_options_slider through theme options
    	$options = catchbox_get_theme_options();
    	// get slider_qty from theme options
    	if( !isset( $options['slider_qty'] ) || !is_numeric( $options['slider_qty'] ) ) {
    		$options[ 'slider_qty' ] = 4;
    	}
    
    	$postperpage = $options[ 'slider_qty' ];
    
    	//In customizer, all values are returned but with empty, this rectifies the issue in customizer
    	if( isset( $options[ 'featured_slider' ] ) && !array_filter( $options[ 'featured_slider' ] ) ) {
    	    return;
    	}
    
    	if( ( !$catchbox_sliders = get_transient( 'catchbox_sliders' ) ) && !empty( $options[ 'featured_slider' ] ) ) {
    		echo '<!-- refreshing cache -->';
    
    		$catchbox_sliders = '
    		<div id="slider">
    			<section id="slider-wrap">';
    			$get_featured_posts = new WP_Query( array(
    				'posts_per_page' => $postperpage,
    				'post__in'		 => $options[ 'featured_slider' ],
    				'orderby' 		 => 'post__in',
    				'ignore_sticky_posts' => 1 // ignore sticky posts
    			));
    
    			$i=0; while ( $get_featured_posts->have_posts()) : $get_featured_posts->the_post(); $i++;
    				$title_attribute = esc_attr( apply_filters( 'the_title', get_the_title( $post->ID ) ) );
    
    				if ( $i == 1 ) { $classes = "slides displayblock"; } else { $classes = "slides displaynone"; }
    				$catchbox_sliders .= '
    				<div class="'.$classes.'">
    					<a href="'. esc_url ( get_permalink() ).'" title="'.sprintf( esc_attr__( '%s', 'catch-box' ), the_title_attribute( 'echo=0' ) ).'" rel="bookmark">
    							'.get_the_post_thumbnail( $post->ID, 'featured-slider', array( 'title' => $title_attribute, 'alt' => $title_attribute, 'class'	=> 'pngfix' ) ).'
    					</a>
    					<div class="featured-text">'
    						.the_title( '<span class="slider-title">','</span>', false ).' <span class="sep">:</span>
    						<span class="slider-excerpt">'.get_the_excerpt().'</span>
    					</div><!-- .featured-text -->
    				</div> <!-- .slides -->';
    			endwhile; wp_reset_query();
    		$catchbox_sliders .= '
    			</section> <!-- .slider-wrap -->
    			<nav id="nav-slider">
    				<div class="nav-previous"><img class="pngfix" src="'.get_template_directory_uri().'/images/previous.png" alt="next slide"></div>
    				<div class="nav-next"><img class="pngfix" src="'.get_template_directory_uri().'/images/next.png" alt="next slide"></div>
    			</nav>
    		</div> <!-- #featured-slider -->';
    		set_transient( 'catchbox_sliders', $catchbox_sliders, 86940 );
    	}
    	echo $catchbox_sliders;
    }

    Regards,
    Mahesh

    #85603
    tivonjohnson
    Participant

    I’m having an issue with my slider as well. One of my featured slider images changed the cropping by itself and I can’t seem to get it correct again. Here is the url.
    everythingiswine.com

    Notice in the second image in the slider the man’s head is cut off. I’ve tried to recrop it in the thumbnail editor but it’s not working. I’m trying to get to where the man’s face is included in the slider.

    Thanks,
    Tivon

    #85561
    Mahesh
    Participant

    Hi @noote,

    Catch Responsive free theme has to slider options.
    1. Demo Slider (Content cannot be changed)
    2. Page Slider (Use featured image as slider image, Page title as Slider title and Page content as Slider content, links to related page).
    To use page slider, go to “Dashboard=> Appearance=> Customize=> Featured Slider” and select Page slider in Select Slider Type then select number of slides you want to use (need refresh). Then in select the page you want to use as slider form Featured Page # drop down.

    If you want to have other options in slider, I recommend you to upgrade to pro.
    1. Features from Catch Responsive free (Demo Slider and Page Slider)
    2. Post Slider (Use featured image as slider image, Post title as Slider title and Post content as Slider content, links to related Post).
    3. Image Slider (custom image, custom title, custom content and custom link).
    4. Category Slider

    Regards,
    Mahesh

    #85515
    torpedo
    Member

    Hi,
    I had the same problem, today I tried 2 times to upgrade from 4.3.1 to 4.3.3 with no success.
    I was LUCKY, I have a backup and I was able to return to version 4.3.1 using ftp….
    It seems that the upgrade process deletes a lot of files and folders needed by the theme…

    I put here a recursive list of the files before and after the upgrade, I hope it can help you to diagnose the problem :
    (Sorry for this long post)

    ———————————
    FILES OF VERSION 4.3.1 :
    ———————————

    4.3.1/catch-box/:
    total 736
    drwxrwxr-x 9 1001 1001 4096 feb 15 19:45 .
    drwxrwxr-x 3 1001 1001 4096 feb 15 19:45 ..
    -rw-rw-r– 1 1001 1001 1502 feb 15 19:45 404.php
    -rw-rw-r– 1 1001 1001 2551 feb 15 19:45 archive.php
    -rw-rw-r– 1 1001 1001 3059 feb 15 19:45 author.php
    -rw-rw-r– 1 1001 1001 2067 feb 15 19:45 category.php
    -rw-rw-r– 1 1001 1001 16636 feb 15 19:45 changelog.txt
    drwxrwxr-x 2 1001 1001 4096 feb 15 19:45 colors
    -rw-rw-r– 1 1001 1001 3073 feb 15 19:45 comments.php
    -rw-rw-r– 1 1001 1001 2337 feb 15 19:45 content-aside.php
    -rw-rw-r– 1 1001 1001 1960 feb 15 19:45 content-featured.php
    -rw-rw-r– 1 1001 1001 4020 feb 15 19:45 content-gallery.php
    -rw-rw-r– 1 1001 1001 3563 feb 15 19:45 content-image.php
    -rw-rw-r– 1 1001 1001 2224 feb 15 19:45 content-link.php
    -rw-rw-r– 1 1001 1001 908 feb 15 19:45 content-page.php
    -rw-rw-r– 1 1001 1001 4887 feb 15 19:45 content.php
    -rw-rw-r– 1 1001 1001 3293 feb 15 19:45 content-quote.php
    -rw-rw-r– 1 1001 1001 3669 feb 15 19:45 content-single.php
    -rw-rw-r– 1 1001 1001 2340 feb 15 19:45 content-status.php
    drwxrwxr-x 2 1001 1001 4096 feb 15 19:45 css
    -rw-rw-r– 1 1001 1001 4911 feb 15 19:45 editor-style.css
    -rw-rw-r– 1 1001 1001 298 feb 15 19:45 editor-style-rtl.css
    -rw-rw-r– 1 1001 1001 1806 feb 15 19:45 footer.php
    -rw-rw-r– 1 1001 1001 45535 feb 15 19:45 functions.php
    drwxrwxr-x 2 1001 1001 4096 feb 15 19:45 genericons
    -rw-rw-r– 1 1001 1001 3098 feb 15 19:45 header.php
    -rw-rw-r– 1 1001 1001 4727 feb 15 19:45 image.php
    drwxrwxr-x 3 1001 1001 4096 feb 15 19:45 images
    drwxrwxr-x 4 1001 1001 4096 feb 15 19:45 inc
    -rw-rw-r– 1 1001 1001 1659 feb 15 19:45 index.php
    drwxrwxr-x 2 1001 1001 4096 feb 15 19:45 js
    drwxrwxr-x 2 1001 1001 4096 feb 15 19:45 languages
    -rw-rw-r– 1 1001 1001 35146 feb 15 19:45 license.txt
    -rw-rw-r– 1 1001 1001 2400 feb 15 19:45 page-blog.php
    -rw-rw-r– 1 1001 1001 766 feb 15 19:45 page-disable-sidebar.php
    -rw-rw-r– 1 1001 1001 777 feb 15 19:45 page-fullwidth.php
    -rw-rw-r– 1 1001 1001 764 feb 15 19:45 page-onecolumn.php
    -rw-rw-r– 1 1001 1001 932 feb 15 19:45 page.php
    -rw-rw-r– 1 1001 1001 6173 feb 15 19:45 readme.txt
    -rw-rw-r– 1 1001 1001 12060 feb 15 19:45 rtl.css
    -rw-rw-r– 1 1001 1001 359358 feb 15 19:45 screenshot.png
    -rw-rw-r– 1 1001 1001 1033 feb 15 19:45 searchform.php
    -rw-rw-r– 1 1001 1001 1830 feb 15 19:45 search.php
    -rw-rw-r– 1 1001 1001 1224 feb 15 19:45 sidebar-footer.php
    -rw-rw-r– 1 1001 1001 2247 feb 15 19:45 sidebar.php
    -rw-rw-r– 1 1001 1001 1163 feb 15 19:45 single.php
    -rw-rw-r– 1 1001 1001 82802 feb 15 19:45 style.css
    -rw-rw-r– 1 1001 1001 2027 feb 15 19:44 tag.php

    4.3.1/catch-box/colors:
    total 44
    drwxrwxr-x 2 1001 1001 4096 feb 15 19:45 .
    drwxrwxr-x 9 1001 1001 4096 feb 15 19:45 ..
    -rw-rw-r– 1 1001 1001 2082 feb 15 19:45 blue.css
    -rw-rw-r– 1 1001 1001 2135 feb 15 19:45 brown.css
    -rw-rw-r– 1 1001 1001 13328 feb 15 19:45 dark.css
    -rw-rw-r– 1 1001 1001 2080 feb 15 19:45 green.css
    -rw-rw-r– 1 1001 1001 2080 feb 15 19:45 orange.css
    -rw-rw-r– 1 1001 1001 2122 feb 15 19:45 red.css

    4.3.1/catch-box/css:
    total 40
    drwxrwxr-x 2 1001 1001 4096 feb 15 19:45 .
    drwxrwxr-x 9 1001 1001 4096 feb 15 19:45 ..
    -rw-rw-r– 1 1001 1001 29901 feb 15 19:45 bbpress.css

    4.3.1/catch-box/genericons:
    total 188
    drwxrwxr-x 2 1001 1001 4096 feb 15 19:45 .
    drwxrwxr-x 9 1001 1001 4096 feb 15 19:45 ..
    -rw-rw-r– 1 1001 1001 28266 feb 15 19:45 genericons.css
    -rw-rw-r– 1 1001 1001 22374 feb 15 19:45 Genericons.eot
    -rw-rw-r– 1 1001 1001 76980 feb 15 19:45 Genericons.svg
    -rw-rw-r– 1 1001 1001 22188 feb 15 19:45 Genericons.ttf
    -rw-rw-r– 1 1001 1001 13988 feb 15 19:45 Genericons.woff
    -rw-rw-r– 1 1001 1001 10630 feb 15 19:45 README.md

    4.3.1/catch-box/images:
    total 64
    drwxrwxr-x 3 1001 1001 4096 feb 15 19:45 .
    drwxrwxr-x 9 1001 1001 4096 feb 15 19:45 ..
    -rw-rw-r– 1 1001 1001 783 feb 15 19:45 comment-bubble-rtl.png
    drwxrwxr-x 2 1001 1001 4096 feb 15 19:45 headers
    -rw-rw-r– 1 1001 1001 464 feb 15 19:45 menu.png
    -rw-rw-r– 1 1001 1001 872 feb 15 19:45 next.png
    -rw-rw-r– 1 1001 1001 869 feb 15 19:45 previous.png
    -rw-rw-r– 1 1001 1001 441 feb 15 19:45 search.png
    -rw-rw-r– 1 1001 1001 2836 feb 15 19:45 select-arrow.png
    -rw-rw-r– 1 1001 1001 27499 feb 15 19:45 social-profiles.png

    4.3.1/catch-box/images/headers:
    total 132
    drwxrwxr-x 2 1001 1001 4096 feb 15 19:45 .
    drwxrwxr-x 3 1001 1001 4096 feb 15 19:45 ..
    -rw-rw-r– 1 1001 1001 42660 feb 15 19:45 flower.jpg
    -rw-rw-r– 1 1001 1001 19728 feb 15 19:45 flower-thumbnail.jpg
    -rw-rw-r– 1 1001 1001 8126 feb 15 19:45 garden.jpg
    -rw-rw-r– 1 1001 1001 11797 feb 15 19:45 garden-thumbnail.jpg
    -rw-rw-r– 1 1001 1001 24260 feb 15 19:45 mountain.jpg
    -rw-rw-r– 1 1001 1001 12846 feb 15 19:45 mountain-thumbnail.jpg

    4.3.1/catch-box/inc:
    total 140
    drwxrwxr-x 4 1001 1001 4096 feb 15 19:45 .
    drwxrwxr-x 9 1001 1001 4096 feb 15 19:45 ..
    -rw-rw-r– 1 1001 1001 908 feb 15 19:45 add_image_scripts.js
    -rw-rw-r– 1 1001 1001 385 feb 15 19:45 catchbox-customizer.css
    -rw-rw-r– 1 1001 1001 9217 feb 15 19:45 catchbox-menus.php
    drwxrwxr-x 2 1001 1001 4096 feb 15 19:45 customizer
    -rw-rw-r– 1 1001 1001 1063 feb 15 19:45 customizer-custom-scripts.js
    drwxrwxr-x 2 1001 1001 4096 feb 15 19:45 images
    -rw-rw-r– 1 1001 1001 7658 feb 15 19:45 theme-options.css
    -rw-rw-r– 1 1001 1001 1401 feb 15 19:45 theme-options.js
    -rw-rw-r– 1 1001 1001 6109 feb 15 19:45 theme-options.min.css
    -rw-rw-r– 1 1001 1001 975 feb 15 19:45 theme-options.min.js
    -rw-rw-r– 1 1001 1001 67619 feb 15 19:45 theme-options.php
    -rw-rw-r– 1 1001 1001 4819 feb 15 19:45 widgets.php

    4.3.1/catch-box/inc/customizer:
    total 52
    drwxrwxr-x 2 1001 1001 4096 feb 15 19:45 .
    drwxrwxr-x 4 1001 1001 4096 feb 15 19:45 ..
    -rw-rw-r– 1 1001 1001 1567 feb 15 19:45 customizer-active-callbacks.php
    -rw-rw-r– 1 1001 1001 2371 feb 15 19:45 customizer-custom-controls.php
    -rw-rw-r– 1 1001 1001 28403 feb 15 19:45 customizer.php
    -rw-rw-r– 1 1001 1001 5638 feb 15 19:45 customizer-sanitize-functions.php

    4.3.1/catch-box/inc/images:
    total 248
    drwxrwxr-x 2 1001 1001 4096 feb 15 19:45 .
    drwxrwxr-x 4 1001 1001 4096 feb 15 19:45 ..
    -rw-rw-r– 1 1001 1001 218 feb 15 19:45 arrow-dark.png
    -rw-rw-r– 1 1001 1001 218 feb 15 19:45 arrow-light.png
    -rw-rw-r– 1 1001 1001 327 feb 15 19:45 blue-bg.jpg
    -rw-rw-r– 1 1001 1001 19546 feb 15 19:45 blue.png
    -rw-rw-r– 1 1001 1001 339 feb 15 19:45 brown-bg.jpg
    -rw-rw-r– 1 1001 1001 16022 feb 15 19:45 brown.png
    -rw-rw-r– 1 1001 1001 6871 feb 15 19:45 catch-themes.png
    -rw-rw-r– 1 1001 1001 3682 feb 15 19:45 content.png
    -rw-rw-r– 1 1001 1001 273 feb 15 19:45 content-sidebar.png
    -rw-rw-r– 1 1001 1001 18116 feb 15 19:45 dark.png
    -rw-rw-r– 1 1001 1001 29630 feb 15 19:45 excerpt.png
    -rw-rw-r– 1 1001 1001 313 feb 15 19:45 facebook-bg.jpg
    -rw-rw-r– 1 1001 1001 24603 feb 15 19:45 full-content.png
    -rw-rw-r– 1 1001 1001 342 feb 15 19:45 green-bg.jpg
    -rw-rw-r– 1 1001 1001 16692 feb 15 19:45 green.png
    -rw-rw-r– 1 1001 1001 17623 feb 15 19:45 light.png
    -rw-rw-r– 1 1001 1001 16891 feb 15 19:45 orange.png
    -rw-rw-r– 1 1001 1001 15405 feb 15 19:45 red.png
    -rw-rw-r– 1 1001 1001 272 feb 15 19:45 sidebar-content.png
    -rw-rw-r– 1 1001 1001 334 feb 15 19:45 twitter-bg.jpg

    4.3.1/catch-box/js:
    total 164
    drwxrwxr-x 2 1001 1001 4096 feb 15 19:45 .
    drwxrwxr-x 9 1001 1001 4096 feb 15 19:45 ..
    -rw-rw-r– 1 1001 1001 393 feb 15 19:45 catchbox-scrollup.js
    -rw-rw-r– 1 1001 1001 314 feb 15 19:45 catchbox-scrollup.min.js
    -rw-rw-r– 1 1001 1001 1174 feb 15 19:45 catchbox_slider.js
    -rw-rw-r– 1 1001 1001 10330 feb 15 19:45 html5.js
    -rw-rw-r– 1 1001 1001 2639 feb 15 19:45 html5.min.js
    -rw-rw-r– 1 1001 1001 3095 feb 15 19:45 jquery.cookie.js
    -rw-rw-r– 1 1001 1001 1295 feb 15 19:45 jquery.cookie.min.js
    -rw-rw-r– 1 1001 1001 52026 feb 15 19:45 jquery.cycle.all.js
    -rw-rw-r– 1 1001 1001 27181 feb 15 19:45 jquery.cycle.all.min.js
    -rw-rw-r– 1 1001 1001 18918 feb 15 19:45 jquery.sidr.js
    -rw-rw-r– 1 1001 1001 9175 feb 15 19:45 jquery.sidr.min.js
    -rw-rw-r– 1 1001 1001 1487 feb 15 19:45 navigation.js
    -rw-rw-r– 1 1001 1001 1059 feb 15 19:45 skip-link-focus-fix.js

    4.3.1/catch-box/languages:
    total 1500
    drwxrwxr-x 2 1001 1001 4096 feb 15 19:45 .
    drwxrwxr-x 9 1001 1001 4096 feb 15 19:45 ..
    -rw-rw-r– 1 1001 1001 19323 feb 15 19:45 ar.mo
    -rw-rw-r– 1 1001 1001 42472 feb 15 19:45 ar.po
    -rw-rw-r– 1 1001 1001 18372 feb 15 19:45 bs_BA.mo
    -rw-rw-r– 1 1001 1001 36832 feb 15 19:45 bs_BA.po
    -rw-rw-r– 1 1001 1001 19359 feb 15 19:45 ca.mo
    -rw-rw-r– 1 1001 1001 43333 feb 15 19:45 ca.po
    -rw-rw-r– 1 1001 1001 28701 feb 15 19:45 catch-box.pot
    -rw-rw-r– 1 1001 1001 18141 feb 15 19:45 cs_CZ.mo
    -rw-rw-r– 1 1001 1001 40505 feb 15 19:45 cs_CZ.po
    -rw-rw-r– 1 1001 1001 18240 feb 15 19:45 da_DK.mo
    -rw-rw-r– 1 1001 1001 44352 feb 15 19:45 da_DK.po
    -rw-rw-r– 1 1001 1001 19880 feb 15 19:45 de_DE.mo
    -rw-rw-r– 1 1001 1001 39757 feb 15 19:45 de_DE.po
    -rw-rw-r– 1 1001 1001 18897 feb 15 19:45 es_ES.mo
    -rw-rw-r– 1 1001 1001 43095 feb 15 19:45 es_ES.po
    -rw-rw-r– 1 1001 1001 20779 feb 15 19:45 fa_IR.mo
    -rw-rw-r– 1 1001 1001 39261 feb 15 19:45 fa_IR.po
    -rw-rw-r– 1 1001 1001 23936 feb 15 19:45 fr_FR.mo
    -rw-rw-r– 1 1001 1001 44747 feb 15 19:45 fr_FR.po
    -rw-rw-r– 1 1001 1001 18251 feb 15 19:45 hr_HR.mo
    -rw-rw-r– 1 1001 1001 40895 feb 15 19:45 hr_HR.po
    -rw-rw-r– 1 1001 1001 18865 feb 15 19:45 hu_HU.mo
    -rw-rw-r– 1 1001 1001 37261 feb 15 19:45 hu_HU.po
    -rw-rw-r– 1 1001 1001 18475 feb 15 19:45 it_IT.mo
    -rw-rw-r– 1 1001 1001 40890 feb 15 19:45 it_IT.po
    -rw-rw-r– 1 1001 1001 20038 feb 15 19:45 ja.mo
    -rw-rw-r– 1 1001 1001 38451 feb 15 19:45 ja.po
    -rw-rw-r– 1 1001 1001 12597 feb 15 19:45 lt_LT.mo
    -rw-rw-r– 1 1001 1001 52122 feb 15 19:45 lt_LT.po
    -rw-rw-r– 1 1001 1001 18448 feb 15 19:45 nl_NL.mo
    -rw-rw-r– 1 1001 1001 41070 feb 15 19:45 nl_NL.po
    -rw-rw-r– 1 1001 1001 18808 feb 15 19:45 pl_PL.mo
    -rw-rw-r– 1 1001 1001 41496 feb 15 19:45 pl_PL.po
    -rw-rw-r– 1 1001 1001 21439 feb 15 19:45 pt_BR.mo
    -rw-rw-r– 1 1001 1001 49762 feb 15 19:45 pt_BR.po
    -rw-rw-r– 1 1001 1001 18878 feb 15 19:45 ro_RO.mo
    -rw-rw-r– 1 1001 1001 36974 feb 15 19:45 ro_RO.po
    -rw-rw-r– 1 1001 1001 20932 feb 15 19:45 ru_RU.mo
    -rw-rw-r– 1 1001 1001 44700 feb 15 19:45 ru_RU.po
    -rw-rw-r– 1 1001 1001 18209 feb 15 19:45 sk_SK.mo
    -rw-rw-r– 1 1001 1001 40465 feb 15 19:45 sk_SK.po
    -rw-rw-r– 1 1001 1001 18226 feb 15 19:45 sr_RS.mo
    -rw-rw-r– 1 1001 1001 40883 feb 15 19:45 sr_RS.po
    -rw-rw-r– 1 1001 1001 19169 feb 15 19:45 sv_SE.mo
    -rw-rw-r– 1 1001 1001 42372 feb 15 19:45 sv_SE.po
    -rw-rw-r– 1 1001 1001 23851 feb 15 19:45 uk.mo
    -rw-rw-r– 1 1001 1001 48016 feb 15 19:45 uk.po

    ———————————
    FILES OF VERSION 4.3.3 :
    ———————————

    4.3.3/catch-box/:
    total 184
    drwxrwxr-x 5 1001 1001 4096 feb 15 19:46 .
    drwxrwxr-x 3 1001 1001 4096 feb 15 19:45 ..
    -rw-rw-r– 1 1001 1001 2551 feb 15 19:45 archive.php
    -rw-rw-r– 1 1001 1001 3059 feb 15 19:45 author.php
    -rw-rw-r– 1 1001 1001 2067 feb 15 19:45 category.php
    -rw-rw-r– 1 1001 1001 17083 feb 15 19:45 changelog.txt
    -rw-rw-r– 1 1001 1001 3204 feb 15 19:45 comments.php
    -rw-rw-r– 1 1001 1001 1960 feb 15 19:45 content-featured.php
    -rw-rw-r– 1 1001 1001 4020 feb 15 19:45 content-gallery.php
    -rw-rw-r– 1 1001 1001 3563 feb 15 19:45 content-image.php
    -rw-rw-r– 1 1001 1001 2224 feb 15 19:45 content-link.php
    -rw-rw-r– 1 1001 1001 3293 feb 15 19:45 content-quote.php
    -rw-rw-r– 1 1001 1001 3669 feb 15 19:45 content-single.php
    drwxrwxr-x 2 1001 1001 4096 feb 15 19:46 css
    -rw-rw-r– 1 1001 1001 4911 feb 15 19:45 editor-style.css
    -rw-rw-r– 1 1001 1001 1806 feb 15 19:45 footer.php
    -rw-rw-r– 1 1001 1001 45640 feb 15 19:45 functions.php
    drwxrwxr-x 3 1001 1001 4096 feb 15 19:46 images
    -rw-rw-r– 1 1001 1001 1659 feb 15 19:45 index.php
    drwxrwxr-x 2 1001 1001 4096 feb 15 19:46 languages
    -rw-rw-r– 1 1001 1001 777 feb 15 19:45 page-fullwidth.php
    -rw-rw-r– 1 1001 1001 764 feb 15 19:45 page-onecolumn.php
    -rw-rw-r– 1 1001 1001 6175 feb 15 19:45 readme.txt
    -rw-rw-r– 1 1001 1001 12060 feb 15 19:45 rtl.css
    -rw-rw-r– 1 1001 1001 1033 feb 15 19:45 searchform.php
    -rw-rw-r– 1 1001 1001 1830 feb 15 19:45 search.php
    -rw-rw-r– 1 1001 1001 2247 feb 15 19:45 sidebar.php

    4.3.3/catch-box/css:
    total 40
    drwxrwxr-x 2 1001 1001 4096 feb 15 19:46 .
    drwxrwxr-x 5 1001 1001 4096 feb 15 19:46 ..
    -rw-rw-r– 1 1001 1001 29901 feb 15 19:46 bbpress.css

    4.3.3/catch-box/images:
    total 64
    drwxrwxr-x 3 1001 1001 4096 feb 15 19:46 .
    drwxrwxr-x 5 1001 1001 4096 feb 15 19:46 ..
    -rw-rw-r– 1 1001 1001 783 feb 15 19:46 comment-bubble-rtl.png
    drwxrwxr-x 2 1001 1001 4096 feb 15 19:46 headers
    -rw-rw-r– 1 1001 1001 464 feb 15 19:46 menu.png
    -rw-rw-r– 1 1001 1001 872 feb 15 19:46 next.png
    -rw-rw-r– 1 1001 1001 869 feb 15 19:46 previous.png
    -rw-rw-r– 1 1001 1001 441 feb 15 19:46 search.png
    -rw-rw-r– 1 1001 1001 2836 feb 15 19:46 select-arrow.png
    -rw-rw-r– 1 1001 1001 27499 feb 15 19:46 social-profiles.png

    4.3.3/catch-box/images/headers:
    total 132
    drwxrwxr-x 2 1001 1001 4096 feb 15 19:46 .
    drwxrwxr-x 3 1001 1001 4096 feb 15 19:46 ..
    -rw-rw-r– 1 1001 1001 42660 feb 15 19:46 flower.jpg
    -rw-rw-r– 1 1001 1001 19728 feb 15 19:46 flower-thumbnail.jpg
    -rw-rw-r– 1 1001 1001 8126 feb 15 19:46 garden.jpg
    -rw-rw-r– 1 1001 1001 11797 feb 15 19:46 garden-thumbnail.jpg
    -rw-rw-r– 1 1001 1001 24260 feb 15 19:46 mountain.jpg
    -rw-rw-r– 1 1001 1001 12846 feb 15 19:46 mountain-thumbnail.jpg

    4.3.3/catch-box/languages:
    total 504
    drwxrwxr-x 2 1001 1001 4096 feb 15 19:46 .
    drwxrwxr-x 5 1001 1001 4096 feb 15 19:46 ..
    -rw-rw-r– 1 1001 1001 37067 feb 15 19:46 bs_BA.po
    -rw-rw-r– 1 1001 1001 45790 feb 15 19:46 da_DK.po
    -rw-rw-r– 1 1001 1001 20779 feb 15 19:46 fa_IR.mo
    -rw-rw-r– 1 1001 1001 41130 feb 15 19:46 hr_HR.po
    -rw-rw-r– 1 1001 1001 18865 feb 15 19:46 hu_HU.mo
    -rw-rw-r– 1 1001 1001 18475 feb 15 19:46 it_IT.mo
    -rw-rw-r– 1 1001 1001 52322 feb 15 19:46 lt_LT.po
    -rw-rw-r– 1 1001 1001 41305 feb 15 19:46 nl_NL.po
    -rw-rw-r– 1 1001 1001 41731 feb 15 19:46 pl_PL.po
    -rw-rw-r– 1 1001 1001 51404 feb 15 19:46 pt_BR.po
    -rw-rw-r– 1 1001 1001 18878 feb 15 19:46 ro_RO.mo
    -rw-rw-r– 1 1001 1001 40700 feb 15 19:46 sk_SK.po
    -rw-rw-r– 1 1001 1001 48251 feb 15 19:46 uk.po

    #85469
    Mahesh
    Participant

    Hi @Wynaco,

    For the above you’ll need little customization. First create a child theme. You can find more on creating child theme HERE. Then in your child theme’s functions.php add the following codes.

    function cleanbox_child_move_slider_below_site_title(){
        remove_action( 'clean_box_header', 'clean_box_featured_slider', 30 );
    
        add_action( 'clean_box_header', 'clean_box_featured_slider', 110 );
    }
    add_action('init', 'cleanbox_child_move_slider_below_site_title');

    This will move, Featured Slider below the Site Title and above Featured Content.

    Then for making Featured Slider same as the content, go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS.

    #feature-slider .wrapper {
        width: 1200px;
    }
    @media screen and (max-width: 1280px) {
        #feature-slider .wrapper  {
            width: 1140px;
        }
    }
    
    @media screen and (max-width: 1152px) {
        #feature-slider .wrapper {
            width: 1038px;
        }
    }
    
    @media screen and (max-width: 1100px) {
        #feature-slider .wrapper {
            width: 960px;
        }
    }
    
    @media screen and (max-width: 990px) {
        #feature-slider .wrapper {
            width: 738px;
        }
    }
    
    @media screen and (max-width: 767px) {
        #feature-slider .wrapper {
            width: 660px;
        }
    }
    
    @media screen and (max-width: 700px) {
        #feature-slider .wrapper {
            width: 561px;
        }
    }
    
    @media screen and (max-width: 600px) {
        #feature-slider .wrapper {
            width: 522px;
        }
    }
    
    @media screen and (max-width: 540px) {
        #feature-slider .wrapper {
            width: 462px;
        }
    }
    
    @media screen and (max-width: 480px) {
        #feature-slider .wrapper {
            width: 380px;
        }
    }
    
    @media screen and (max-width: 400px) {
        #feature-slider .wrapper {
            width: 320px;
            padding: 0;
        }
    }
    
    #feature-slider {
        margin-top: 0;
    }
    
    #featured-content {
        padding-top: 20px;
    }

    Regards,
    Mahesh

    #85259
    Mahesh
    Participant

    Hi @connectionspgh,

    The featured image is resized into three sizes, featured post slider(1600×600), featured image(800×324) and small image(400×267). Which image is one causing the issue. And what size do you want to change the image to?
    You can use the large image or the size mentioned above.
    Let me know further.

    Regards,
    Mahesh

    #85170
    Pratik
    Participant

    Hi @Alex,
    Yes, you are right, the Featured Slider only has those options. You can use child theme to customize it, but since you have already replaced it with a plugin, I am going to skip that part.

    Let me know if there is anything else. Have a nice day.

    Regards,
    Pratik

    #85046
    Danielle
    Participant

    Hello,

    The featured image slider at the homepage is only partly visable when viewed on a mobile phone. The images ar cut in half (sorry for my English..). Can you please help me out? This is my site: http://www.daniellebosveld.nl
    Thank you in advance!
    Kind regards, Danielle

    #84786

    In reply to: Featured image slider

    Pratik
    Participant

    Hi @Sanket,

    1. How can I limit the number of posts on the slider. I want the latest 5 posts to display on the slider and not the older ones.
    * The slider in free version has option to show the number of posts but not to show the latest post. Simple Catch Pro version has a Featured Category Slider, with which you can achieve what you want. Other features in pro version can be found here.

    2. Is Simple Catch a responsive theme or not?
    * Unfortunately, Simple Catch Theme is not responsive. You can use any other theme from our themes(including free ones) and it will be responsive.

    3. How can I reduce the size of Featured Image Slider. I want to reduce height of the slider.
    * To achieve this, you will need to do some customization via child theme. For details on child theme, you can go here. Then in the child theme’s functions.php file, add following code:

    
    function simple_catch_change_image_size() {
       add_image_size( 'slider', 976, 313, true);
    }
    add_action( 'after_setup_theme', 'simple_catch_change_image_size', 11 );
    

    You can change the width: 976px and height 313px to the size you want. After this, you need to regenerate the thumbnails. For that, install Regenerate Thumbnail Plugin and follow its instructions.

    4. Can you recommend a compatible Call Now button plugin for this theme? The ones I searched on WP are not compatible with Some Catch.
    I am not sure If I can recommend a plugin. You can search for plugins in WordPress.org plugins repo.

Viewing 20 results - 801 through 820 (of 2,392 total)