Viewing 20 results - 661 through 680 (of 2,393 total)
  • Author
    Search Results
  • #97533
    Mahesh
    Participant

    @voila2014: Thank you for using our theme, we really appreciate it. For exact same layout, Catch Everest Pro is the best option I guess. It does have more functionalities that the free version like: More Options in Slider, Featured Content, Layouts, Colors, Fonts etc. However, the theme doesn’t have the Pricing table. May be you can use an appropriate plugin from WordPress repo for that one.

    Regards,
    Mahesh

    #97450
    Mahesh
    Participant

    @paul-mac:
    Hi Paul,

    For this, 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 catchkathmandu_child_move_title_below_slider_header_image() {
    	remove_action( 'catchkathmandu_before_main', 'catchkathmandu_slider_display', 10 );
    	add_action( 'catchkathmandu_before_hgroup_wrap', 'catchkathmandu_slider_display', 15 );
    
    	remove_action( 'catchkathmandu_before', 'catchkathmandu_featured_image_display', 10 );
    	add_action( 'catchkathmandu_before_hgroup_wrap', 'catchkathmandu_featured_overall_image', 20 );
    }
    add_action( 'init', 'catchkathmandu_child_move_title_below_slider_header_image' );

    Regards,
    Mahesh

    #97229

    In reply to: Where is slider?

    Pratik
    Participant

    @Len,
    For refund related matter please contact our sales team directly. However, Pro version does allow you to add several images of your own as Featured Slider. There must be issues with the server or conflict with other plugin. Please try deactivating the plugins and see if the problem occurs.

    You need to follow the instructions here

    Let me know if you need further assistance.

    Regards,
    Pratik

    #97191
    Pratik
    Participant

    Hi Orlando,

    This is because by default, slider loads the images that are loaded first so that there slider loads up quickly.

    To make slider load in order, goto Appearance=> Customize=> Featured Slider and in Image Loader option either select Wait or False

    Save your settings.

    Let me know how it goes.

    Regards,
    Pratik

    #97181

    In reply to: Text Slider

    mayapour
    Participant

    Sorry I find it…

    I did a display on #featured-content #featured-heading {
    because I don’t want the Title of the page on the top on the page.

    But when I display the title page, it display also the slider text 🙁

    How can I display the title page but keep the title slider text ?

    Thanks

    #96860
    Mahesh
    Participant

    @uliu: Clean Business theme has two types of slider,
    1. Demo Featured Slider : Content / Images cannot be edited
    2. Featured Page Slider : Displays Pages content and Featured Image as Slider. (The content you put in page will be displayed here).
    Clean Business Free version is limited to these two options. If you want to have custom Image, Content and Links, I recommend you to upgrade to Pro version. There is already Featured Image Slider option in Pro version.
    https://catchthemes.com/themes/clean-business-pro/

    Regards,
    Mahesh

    #96859

    In reply to: Featured Image Slider

    Mahesh
    Participant

    @rheja:
    Hi Jap,

    For this, you’ll need to create a child theme. You can find more on creating child theme HERE. Then in you child theme’s functions.php add the following codes:

    function fullframe_featured_slider() {
    	global $post, $wp_query;
    	//fullframe_flush_transients();
    	// get data value from options
    	$options 		= fullframe_get_theme_options();
    	$enableslider 	= $options['featured_slider_option'];
    	$sliderselect 	= $options['featured_slider_type'];
    	$imageloader	= isset ( $options['featured_slider_image_loader'] ) ? $options['featured_slider_image_loader'] : 'true';
    
    	// Get Page ID outside Loop
    	$page_id = $wp_query->get_queried_object_id();
    
    	// Front page displays in Reading Settings
    	$page_on_front = get_option('page_on_front') ;
    	$page_for_posts = get_option('page_for_posts');
    
    	if ( $enableslider == 'entire-site' || ( ( is_front_page() || ( is_home() && $page_for_posts != $page_id ) ) && $enableslider == 'homepage' ) ) {
    		if( ( !$fullframe_featured_slider = get_transient( 'fullframe_featured_slider' ) ) ) {
    			echo '<!-- refreshing cache -->';
    
    			$fullframe_featured_slider = '
    				<section id="feature-slider">
    					<div class="wrapper">
    						<div class="cycle-slideshow"
    						    data-cycle-log="false"
    						    data-cycle-pause-on-hover="true"
    						    data-cycle-swipe="true"
    						    data-cycle-random="true"
    						    data-cycle-auto-height=container
    						     data-cycle-fx="'. esc_attr( $options['featured_slide_transition_effect'] ) .'"
    							data-cycle-speed="'. esc_attr( $options['featured_slide_transition_length'] ) * 1000 .'"
    							data-cycle-timeout="'. esc_attr( $options['featured_slide_transition_delay'] ) * 1000 .'"
    							data-cycle-loader="'. esc_attr( $imageloader ) .'"
    							data-cycle-slides="> article"
    							>
    
    						    <!-- prev/next links -->
    						    <div class="cycle-prev"></div>
    						    <div class="cycle-next"></div>
    
    						    <!-- empty element for pager links -->
    	    					<div class="cycle-pager"></div>';
    
    							// Select Slider
    							if ( $sliderselect == 'demo-featured-slider' && function_exists( 'fullframe_demo_slider' ) ) {
    								$fullframe_featured_slider .=  fullframe_demo_slider( $options );
    							}
    							else if ( $sliderselect == 'featured-post-slider' && function_exists( 'fullframe_post_slider' ) ) {
    								$fullframe_featured_slider .=  fullframe_post_slider( $options );
    							}
    							elseif ( $sliderselect == 'featured-page-slider' && function_exists( 'fullframe_page_slider' ) ) {
    								$fullframe_featured_slider .=  fullframe_page_slider( $options );
    							}
    							elseif ( $sliderselect == 'featured-category-slider' && function_exists( 'fullframe_category_slider' ) ) {
    								$fullframe_featured_slider .=  fullframe_category_slider( $options );
    							}
    							elseif ( $sliderselect == 'featured-image-slider' && function_exists( 'fullframe_image_slider' ) ) {
    								$fullframe_featured_slider .=  fullframe_image_slider( $options );
    							}
    
    			$fullframe_featured_slider .= '
    						</div><!-- .cycle-slideshow -->
    					</div><!-- .wrapper -->
    				</section><!-- #feature-slider -->';
    
    			set_transient( 'fullframe_featured_slider', $fullframe_featured_slider, 86940 );
    		}
    		echo $fullframe_featured_slider;
    	}
    }
    

    Regards,
    Mahesh

    #96703
    Pratik
    Participant

    I checked your site and you are using Free version of Featured Content and Slider.
    The free version have Featured Page Content and Featured Page Slider so adding new posts should not hamper them at all.

    They are loading fine when I checked.

    #96696

    In reply to: Image slider

    Pratik
    Participant

    HI JPSSAU,

    Custom Image slider is not present in Catch Responsive Free theme. If you want custom Image slider + a lot of other features, it would be better to upgrade to Pro version.
    Checkout other features: https://catchthemes.com/theme-instructions/catch-responsive-pro/

    Free version has featured page sliders, which means, you can add featured images to pages and use them as sliders. For this, please follow the instructions at https://catchthemes.com/theme-instructions/catch-responsive/#featured-slider

    Regards,
    Pratik

    #96632
    Mahesh
    Participant

    @agenciabrushup: Thank you for using Clean Business Pro theme.
    Sorry, we don’t have the video tutorial for that yet. On the first one TOEFL, you have managed to use the Image Slider.
    For the same in the second one IELTS too, go to Dashboard=> Appearance=> Customize=> Featured Slider and select Featured Image Slider in Select Slider Type dropdown. Then some option Featured Slide # will appear, put your desired Image and Content there and click Save & Publish

    Hope this helps. Let me know if any problem.

    Note: You have posted the support in the Catch Adaptive Pro theme category, please post in appropriate theme category.

    Regards,
    Mahesh

    #96547

    In reply to: adding a post slider

    Mahesh
    Participant

    @bebou:
    Hi Beata,

    Catch Adaptive Free has limited options. You can only select Pages or Demo content as Featured slider. For other options such as Posts, Category or Custom/Image as Featured Slider, I recommend you to upgrade to Pro version.

    Regards,
    Mahesh

    #96532
    RMS
    Participant

    HI Mahesh – thanks for your response.

    There is no space at the beginning of the files. Header.php has multiple <?php tags – I can’t tell if there is a problem with any of the other tags.
    Code below:
    <?php
    /**
    * The Header for our theme.
    *
    * Displays all of the <head> section and everything up till <div id=”main”>
    *
    * @package Catch Themes
    * @subpackage Adventurous
    * @since Adventurous 1.0
    */
    ?>
    <!DOCTYPE html>
    <!–[if IE 6]>
    <html id=”ie6″ <?php language_attributes(); ?>>
    <![endif]–>
    <!–[if IE 7]>
    <html id=”ie7″ <?php language_attributes(); ?>>
    <![endif]–>
    <!–[if IE 8]>
    <html id=”ie8″ <?php language_attributes(); ?>>
    <![endif]–>
    <!–[if !(IE 6) | !(IE 7) | !(IE 8) ]><!–>
    <html <?php language_attributes(); ?>>
    <!–<![endif]–>
    <head>
    <meta charset=”<?php bloginfo( ‘charset’ ); ?>” />
    <link rel=”profile” href=”http://gmpg.org/xfn/11&#8243; />
    <link rel=”pingback” href=”<?php bloginfo( ‘pingback_url’ ); ?>” />
    <?php wp_head(); ?>
    </head>

    <body <?php body_class(); ?>>

    <?php
    /**
    * adventurous_before hook
    */
    do_action( ‘adventurous_before’ ); ?>

    <div id=”page” class=”hfeed site”>

    <?php
    /**
    * adventurous_before_header hook
    *
    * HOOKED_FUNCTION_NAME PRIORITY
    *
    * adventurous_header_top 10
    */
    do_action( ‘adventurous_before_header’ ); ?>

    <header id=”masthead”>

    <?php
    /**
    * adventurous_before_hgroup_wrap hook
    *
    * HOOKED_FUNCTION_NAME PRIORITY
    *
    * adventurous_promotion_display 20
    */
    do_action( ‘adventurous_before_hgroup_wrap’ ); ?>

    <div id=”hgroup-wrap” class=”container”>

    <?php
    /**
    * adventurous_hgroup_wrap hook
    *
    * HOOKED_FUNCTION_NAME PRIORITY
    *
    * adventurous_header_image 10
    * adventurous_header_right 20
    */
    do_action( ‘adventurous_hgroup_wrap’ ); ?>

    </div><!– #hgroup-wrap –>

    <?php
    /**
    * adventurous_after_hgroup_wrap hook
    *
    * HOOKED_FUNCTION_NAME PRIORITY
    *
    * adventurous_homepage_featured_position 10
    */
    do_action( ‘adventurous_after_hgroup_wrap’ ); ?>

    </header><!– #masthead .site-header –>

    <?php
    /**
    * adventurous_after_header hook
    */
    do_action( ‘adventurous_after_header’ ); ?>

    <div id=”main-wrapper”>
    <?php
    /**
    * adventurous_before_main hook
    *
    * HOOKED_FUNCTION_NAME PRIORITY
    *
    * adventurous_featured_overall_image value after header 5
    * adventurous_secondary_menu 10
    * content_sidebar_check 20
    * adventurous_slider_display 40
    * adventurous_homepage_headline value after slider 60
    * adventurous_homepage_featured_display 80
    */
    do_action( ‘adventurous_before_main’ ); ?>

    <?php
    /**
    * adventurous_main hook
    *
    * HOOKED_FUNCTION_NAME PRIORITY
    *
    * adventurous_main_wrapper 10
    */
    do_action( ‘adventurous_main’ ); ?>

    <?php
    /**
    * adventurous_content_sidebar hook
    *
    * HOOKED_FUNCTION_NAME PRIORITY
    *
    * adventurous_content_sidebar_wrapper 10
    * adventurous_breadcrumb_display 20
    */
    do_action( ‘adventurous_content_sidebar’ ); ?>

    #96192
    Roland
    Participant

    Hi Mahesh,

    I’m afraid I can’t get this to work, perhaps I’ve inserted it incorrectly into the child theme functions.php? Here’s the file:

    <?php
    /**
     * Child Theme functions and definitions
     *
     */
    add_action( 'wp_enqueue_scripts', 'catchkathmandu_child_enqueue_styles' );
    function catchkathmandu_child_enqueue_styles() {
        wp_enqueue_style( 'catchkathmandu-parent-style', get_template_directory_uri() . '/style.css' );
    }
    function catchkathmandu_post_sliders() {
    	//delete_transient( 'catchkathmandu_post_sliders' );
    
    	global $post;
    	global $catchkathmandu_options_settings;
       	$options = $catchkathmandu_options_settings;
    
    	if( ( !$catchkathmandu_post_sliders = get_transient( 'catchkathmandu_post_sliders' ) ) && !empty( $options[ 'featured_slider' ] ) ) {
    		echo '<!-- refreshing cache -->';
    
    		$catchkathmandu_post_sliders = '
    		<div id="main-slider" class="container">
            	<section class="featured-slider">';
    				$get_featured_posts = new WP_Query( array(
    					'posts_per_page' => $options[ 'slider_qty' ],
    					'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 = apply_filters( 'the_title', get_the_title( $post->ID ) );
    					$excerpt = get_the_excerpt();
    					if ( $i == 1 ) { $classes = 'post postid-'.$post->ID.' hentry slides displayblock'; } else { $classes = 'post postid-'.$post->ID.' hentry slides displaynone'; }
    					$catchkathmandu_post_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_post_sliders .= '<div class="entry-content">'. $excerpt.'</div>';
    							}
    							$catchkathmandu_post_sliders .= '
    						</div>
    					</article><!-- .slides -->';
    				endwhile; wp_reset_query();
    				$catchkathmandu_post_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_post_sliders', $catchkathmandu_post_sliders, 86940 );
    	}
    	echo $catchkathmandu_post_sliders;
    } // catchkathmandu_post_sliders
    
    /**
     * Loading Parent theme stylesheet
     *
     */
    

    Kind regards,

    Roland

    #96177
    Roland
    Participant

    Hi Mahesh,

    Thanks for responding so quickly.

    Unfortunately this doesn’t seem to work, probably because I have wrongly inserted your code. Here’s my functions.php with your code inserted:

    <?php
    /**
    * Child Theme functions and definitions
    *
    */
    add_action( ‘wp_enqueue_scripts’, ‘catchkathmandu_child_enqueue_styles’ );
    function catchkathmandu_child_enqueue_styles() {
    wp_enqueue_style( ‘catchkathmandu-parent-style’, get_template_directory_uri() . ‘/style.css’ );
    }
    function catchkathmandu_post_sliders() {
    //delete_transient( ‘catchkathmandu_post_sliders’ );

    global $post;
    global $catchkathmandu_options_settings;
    $options = $catchkathmandu_options_settings;

    if( ( !$catchkathmandu_post_sliders = get_transient( ‘catchkathmandu_post_sliders’ ) ) && !empty( $options[ ‘featured_slider’ ] ) ) {
    echo ‘<!– refreshing cache –>’;

    $catchkathmandu_post_sliders = ‘
    <div id=”main-slider” class=”container”>
    <section class=”featured-slider”>’;
    $get_featured_posts = new WP_Query( array(
    ‘posts_per_page’ => $options[ ‘slider_qty’ ],
    ‘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 = apply_filters( ‘the_title’, get_the_title( $post->ID ) );
    $excerpt = get_the_excerpt();
    if ( $i == 1 ) { $classes = ‘post postid-‘.$post->ID.’ hentry slides displayblock’; } else { $classes = ‘post postid-‘.$post->ID.’ hentry slides displaynone’; }
    $catchkathmandu_post_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”>
    ‘.the_title( ‘<span>’,'</span>’, false ).’
    </h1>
    <div class=”assistive-text”>’.catchkathmandu_page_post_meta().'</div>
    </header>’;
    if( $excerpt !=”) {
    $catchkathmandu_post_sliders .= ‘<div class=”entry-content”>’. $excerpt.'</div>’;
    }
    $catchkathmandu_post_sliders .= ‘
    </div>
    </article><!– .slides –>’;
    endwhile; wp_reset_query();
    $catchkathmandu_post_sliders .= ‘
    </section>
    <div id=”slider-nav”>
    <
    >
    </div>
    <div id=”controllers”></div>
    </div><!– #main-slider –>’;

    set_transient( ‘catchkathmandu_post_sliders’, $catchkathmandu_post_sliders, 86940 );
    }
    echo $catchkathmandu_post_sliders;
    } // catchkathmandu_post_sliders

    /**
    * Loading Parent theme stylesheet
    *
    */

    Kind regards,

    Roland

    #96155
    Mahesh
    Participant

    @rolandallen: Thought you were using Category Slider. 🙂
    For Post Slider, add the following code intead:

    function catchkathmandu_post_sliders() {
    	//delete_transient( 'catchkathmandu_post_sliders' );
    
    	global $post;
    	global $catchkathmandu_options_settings;
       	$options = $catchkathmandu_options_settings;
    
    	if( ( !$catchkathmandu_post_sliders = get_transient( 'catchkathmandu_post_sliders' ) ) && !empty( $options[ 'featured_slider' ] ) ) {
    		echo '<!-- refreshing cache -->';
    
    		$catchkathmandu_post_sliders = '
    		<div id="main-slider" class="container">
            	<section class="featured-slider">';
    				$get_featured_posts = new WP_Query( array(
    					'posts_per_page' => $options[ 'slider_qty' ],
    					'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 = apply_filters( 'the_title', get_the_title( $post->ID ) );
    					$excerpt = get_the_excerpt();
    					if ( $i == 1 ) { $classes = 'post postid-'.$post->ID.' hentry slides displayblock'; } else { $classes = 'post postid-'.$post->ID.' hentry slides displaynone'; }
    					$catchkathmandu_post_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_post_sliders .= '<div class="entry-content">'. $excerpt.'</div>';
    							}
    							$catchkathmandu_post_sliders .= '
    						</div>
    					</article><!-- .slides -->';
    				endwhile; wp_reset_query();
    				$catchkathmandu_post_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_post_sliders', $catchkathmandu_post_sliders, 86940 );
    	}
    	echo $catchkathmandu_post_sliders;
    } // catchkathmandu_post_sliders

    Regards,
    Mahesh

    #96119

    In reply to: Number of Slider

    maeva
    Participant

    I can’t do that because i haven’t “featured slider” in “customize”.

    Look my code in “catchresponsive-featured-slider.php” :

    function catchresponsive_demo_slider( $options ) {
    $catchresponsive_demo_slider =’
    <article class=”post hentry slides demo-image displayblock”>
    <figure class=”slider-image”>

    Baptême Parc des Expositions

    </figure>
    <div class=”entry-container”>
    <header class=”entry-header”>
    <h1 class=”entry-title”>
    <span></span>
    </h1>
    </header>
    <div class=”entry-content”>
    <p></p>
    </div>
    </div>
    </article><!– .slides –>

    <article class=”post hentry slides demo-image displaynone”>
    <figure class=”Slider Image 2″>

    Slider Image 2

    </figure>
    <div class=”entry-container”>
    <header class=”entry-header”>
    <h1 class=”entry-title”>
    <span></span>
    </h1>
    </header>
    <div class=”entry-content”>
    <p></p>
    </div>
    </div>
    </article><!– .slides –> ‘;
    return $catchresponsive_demo_slider;
    }
    endif; // catchresponsive_demo_slider

    Can i add a new code to add a new slider ?

    Thanks for your answer

    #96117

    In reply to: Number of Slider

    Mahesh
    Participant

    @maeva: Go to Dashboard=> Appearance=> Customize=> Featured Slider and select Featured Page Slider in Select Slider Type then select desired number of slider you want to display. You have to select pages to display as slider and the slider use the page’s featured image as slides.
    If you want Custom Image in Slider, I recommend you upgrade to Catch Base Pro.

    Regards,
    Mahesh

    #95912
    Mahesh
    Participant

    @piratealfie:
    Hi Allan,

    Thank you for using Full Frame Pro theme.
    For using Header Image, go to Dashboard=> Appearance=> Customize=> Header Image and then choose a header image you want to display in your site. Then choose Homepage/Frontpage option in Enable Featured Header Image on (Displays header image on homepage/frontpage only). Then click on Save & Publish.

    OR

    If you want to make slider as Header Image removing the navigation links, go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS and add the following CSS:

    #feature-slider .cycle-pager, 
    #feature-slider .cycle-prev, 
    #feature-slider .cycle-next, 
    #feature-slider .entry-container {
        display: none;
    }

    Hope this helps.

    Regards,
    Mahesh

    #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

    #95776
    smoothiechode
    Participant

    What kind of price are we looking at to get a customizer to create a simple slider on the store homepage (2) and a seperate featured content section to be displayed in all pages/products in the store (4)?

    I have all of content and pictures ready.

Viewing 20 results - 661 through 680 (of 2,393 total)