Viewing 20 results - 901 through 920 (of 2,395 total)
  • Author
    Search Results
  • #68718

    In reply to: Cambiar slider image

    Anonymous
    Inactive

    @Nadae: For Catch Kathmandu Free theme slider, you need to go to “Appearance => Theme Options => Featured Slider”, then you need to select “Post Slider or Category Slider” from slider type and then add in post ID. For more, please follow theme instructions at http://catchthemes.com/theme-instructions/catch-kathmandu/ and screencast at http://catchthemes.com/blog/videos-blog/video-series-adding-featured-post-slider/

    #68371
    NANKYUNG
    Member

    I understand why you can’t find it.
    I also counld’t find it at first time.
    I thought featured slider was not working.
    my slider is just between menu and the paragraph starting with 세계한민족여성재단(KOWINNER)은.
    if you put your cursor there, you can see the phrase, “2015 코윈대회 환영만찬 주최”
    I can see just 1cm of featured image I set up.
    Can you check it again, please?

    #68240
    Sakin
    Keymaster

    @michel78: In pro version, you only have option to select featured slider type. But there is no option to add in different slider in every page.

    For more information about additional features in pro version, check out theme instructions page at http://catchthemes.com/theme-instructions/full-frame-pro/

    #68238
    Sakin
    Keymaster

    @Sensei: Only Studio Pro theme support Featured Post Slider. You can see list of additional features in pro version at http://catchthemes.com/theme-instructions/studio-pro/

    You should see featured image excerpt. Can you post in your site URL and then I can check in.

    #68199
    Sakin
    Keymaster

    @NANKYUNG: I don’t get it what you mean. You site doesn’t have slider. You can check your slider settings at “Appearance => Customize => Featured Slider” and check “Image Loader” option.

    #68196
    Sakin
    Keymaster

    @Alexander:
    1. Menu is working fine. Also we are trying our new script for menu and it will be nice update.
    2. For image, have to regenerate the thumbnail after you activated this theme. If you haven’t regenerate then activate the pluign http://wordpress.org/plugins/regenerate-thumbnails and then regenerate thumbnail. Also make sure that you have selected “Excerpt/Blog Display (Style 1 – Featured Image Size )” in “Appearance => Theme Options => Layout Options => Archive Content Layout”
    3. You can add the following css in “Appearance => Theme Options => Custom CSS” box:
    .home.paged #main-slider { display: none; }
    4. We only have “infinite Scroll” click option. For that you need to install Jetpack plugin and active “Infinite Scroll” module.
    5. I see that you have added in “Recent Posts” widget and this will display recent post. So, you need to change the date. Why don’t you create custom menu from “Appearance => Menus” and then add add all the post you want and arrange it as per your need. No need to change date. Then save that menu and go to “Appearance => Widgets” add in “Custom Menu” widgets.

    #68167
    Sakin
    Keymaster

    @Alvin: Still not sure, as in our demo http://catchthemes.com/demo/adventurous/, the homepage don’t have page/post. It has promotion headline and featured content just below the slider where as in other pages, it have page content. So, I think you want to remove that content padding top. For that, try adding the following css in “Appearance => Theme Options => Custom CSS” box:
    #content-sidebar { padding-top: 0; }

    #68111
    Sakin
    Keymaster

    @Gregory: If you want full image then replace your code

    <?php if( has_post_thumbnail() ):
    	if ( $options['sidebar_layout']= 'no-sidebar-full-width' ) {
    		the_post_thumbnail( 'featured-slider-larger' );
    	}
    	else {
    		the_post_thumbnail( 'featured-slider' ); 
    	} 
    endif; ?>

    With the following:

    <?php if( has_post_thumbnail() ):
    	the_post_thumbnail( 'full' ); 
    endif; ?>
    #67963

    In reply to: Featured Slider

    Sakin
    Keymaster

    @Pier: Sorry not sure about the development process, I will refer this today. Sorry we missed this thread. Will try to add in next version update.

    For now, can you just use “Featured Category Slider”, so it takes latest posts automatically.

    #67888

    In reply to: Featured Slider

    Pier
    Member

    Hallo,
    any hope to have both posts and pages IDs in ‘Featured Image Slider’? As I said a few months ago, it is very expensive for me to update manually each slider every time I change the title of the posts/pages I use together in slider and it happens sometime I update posts and pages, forgetting to update sliders:(((

    Hoping to hear from you soon with an update to resolve my problem.

    Thanks in advance, best regards.
    Pier

    #67882
    Sakin
    Keymaster

    @Gregory: Yes, you are right. It only display in archive and slider. If you want to show that then you need to build child theme. For child theme refer to http://catchthemes.com/blog/create-child-theme-wordpress/ and then copy content-single.php file and add the following code after <div class="entry-content">

    <?php if( has_post_thumbnail() ):
    	if ( $options['sidebar_layout']= 'no-sidebar-full-width' ) {
    		the_post_thumbnail( 'featured-slider-larger' );
    	}
    	else {
    		the_post_thumbnail( 'featured-slider' ); 
    	} 
    endif; ?>
    #67873
    Gregory
    Member

    I’m talking about the featured image displaying on the individual post page. When you click on the article, it doesn’t show the featured image. It only displays on the homepage and in the slider.

    #67741
    Sakin
    Keymaster

    @Ralf_St: Looks like you are using “Featured Page Slider” in Catch Base Free theme. Which uses page title, excerpt and featured image. To hide that text, you can add the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:
    #feature-slider .entry-container { display: none; }

    Featured Image slider option is there only in Pro version. So, try adding above css to hide that text.

    #67548
    Sakin
    Keymaster

    @PierreSG: Catch Everest Free version is not compatible to multilanguage plugin like Polylang or WPML, only pro version is compatible to Polylang and WPML plugin. For free version, first build child theme (for child theme refer to http://catchthemes.com/blog/create-child-theme-wordpress/ ) and then add the following code in your child theme functions.php file.

    if ( ! function_exists( 'catcheverest_wpml_invalidcache' ) ) :
    /**
     * Template for Clearing WPML Invalid Cache
     *
     * To override this in a child theme
     * simply create your own catcheverest_wpml_invalidcache(), and that function will be used instead.
     *
     * @since Catch Everest Pro 2.0
     */
    function catcheverest_wpml_invalidcache() {
    	delete_transient( 'catcheverest_post_sliders' );
    	delete_transient( 'catcheverest_homepage_featured_content' );
    	delete_transient( 'catcheverest_homepage_headline' );
    	delete_transient( 'catcheverest_footer_content_new' ); // Footer Content New
    
    } // catcheverest_wpml_invalidcache
    endif;
    
    add_action( 'after_setup_theme', 'catcheverest_wpml_invalidcache' );
    #67078

    In reply to: Footer Menu Align

    ShoreBeing
    Member

    Thank you for this, it looks great!

    There is just one more thing, could you tell me how to change the padding between the main menu and featured slider on the home page? Also, is there a way of removing the blue dot in the centre/bottom of the featured slider when only using one image?

    Thank you, you’ve been great!

    #67068
    Robert
    Member

    Thank you. I hope it’s not too confusing to ask a separate question in this thread? How do I find the Post ID to change the featured content or slider to posts? I have featured images in all posts but I don’t know what the post ID is and can’t find it.

    #66924
    Sakin
    Keymaster

    @flp2001: In Page Slider, first you need to change featured image in your pages. Then you need to change setting in your customizer. Then you will see new image. If cannot be done from Media uploader. It need to be done from page featured image, Add Media.

    #66836
    Sakin
    Keymaster

    @Christine: Looks like you are trying to change Featured Demo Slider with your own Image. For that, check out theme instructions page at http://catchthemes.com/theme-instructions/full-frame-pro/#featured-slider
    1. First, you need to select the slider type from “Appearance => Customize => Featured Slider => Featured Slider Options”
    2. Then depending up the slider type you need to setup accordingly. If you select Featured Image Slider, then you need to upload image, title, content and link as per your need from “Appearance => Customize => Featured Slider => Featured Slider Options”
    If you choose Featured Page slider, then you need to select the page. These pages will replace the demo slider. Same with post slider and category slider. But make sure you have added in featured image in those page/post.

    #66812
    Sakin
    Keymaster

    @freebird: Thanks for reporting. We found that this issue is there only in Featured Post Slider. We will fix this in next version update. For now, you can add the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:
    #feature-slider .cycle-slideshow .slides { width: 100%; }

    #66669
    Mark
    Member

    Every Slider and Featured Image

    Here’s a test link: http://www.citainsurance.com.php53-15.ord1-1.websitetestlink.com/

Viewing 20 results - 901 through 920 (of 2,395 total)