-
AuthorSearch Results
-
January 27, 2016 at 9:58 am #83847
In reply to: removing image (new york) from the slider…
Mahesh
ParticipantHi @gfde,
Thank you for using Catch Base Pro.
The image you are seeing is the Demo Slider. To change the slider, go to “Dashboard=> Appearance=> Customize=> Featured Slider”. In Catch Base Pro, you have five different Slider Type options:
1. Demo Slider (Displays Demo Slider)
2. Page Slider (Displays selected page in slider. Select Page)
3. Post Slider (Displays selected post in slider. Select Post ID)
4. Image Slider (Displays selected image in slider. Upload Image)
5. Category Slider (Displays selected category’s post in slider. Select Category)
Choose one of the above option from drop-down in Select Slider Type and the choose number of sliders.
The Slider options varies as per the Slider Type selected.Hope this helps you.
Regards,
MaheshJanuary 26, 2016 at 11:51 am #83761In reply to: change text from copyright
Mahesh
ParticipantHi @marga,
Thank you for your appreciation.
1. In Catch Base Free version, feature to change copyright text is not available, however, it is available in Catch Base Pro. I recommend you to upgrade to pro version.2. For removing link from slider, you have to create a child theme. You can find more details on creating child theme HERE. Then in
functions.phpadd the following codes.function catchbase_page_slider( $options ) { $quantity = absint( $options['featured_slide_number'] ); global $post; $output = ''; $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-base' ), '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'; } $output .= ' <article class="'.$classes.'"> <figure class="slider-image">'; if ( has_post_thumbnail() ) { $output .= get_the_post_thumbnail( $post->ID, 'catchbase_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 $catchbase_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 $catchbase_first_image = catchbase_get_first_image( $post->ID, 'medium', 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 ( '' != $catchbase_first_image ) { $catchbase_image = $catchbase_first_image; } $output .= $catchbase_image; } $output .= ' </figure><!-- .slider-image --> <div class="entry-container"> <header class="entry-header"> <h1 class="entry-title"> <a title="' . the_title_attribute( array( 'before' => __( 'Permalink to:', 'catch-base' ), 'echo' => false ) ) . '" href="' . get_permalink() . '">'.the_title( '<span>','</span>', false ).'</a> </h1> <div class="assistive-text">'.catchbase_page_post_meta().'</div> </header>'; if( $excerpt !='') { $output .= '<div class="entry-content">'. $excerpt.'</div>'; } $output .= ' </div><!-- .entry-container --> </article><!-- .slides -->'; } wp_reset_query(); } return $output; }Regards,
MaheshJanuary 26, 2016 at 9:50 am #83749In reply to: Responsive – Homepage Slider not Page image
Mahesh
ParticipantHi @tracypost,
Sorry for the inconvenience.
The theme features in Catch Responsive and Simple Catch is little different. Catch Responsive allows you to display the slider using page’s featured image, whereas Simple Catch allows you to display the slider using post’s featured image.
The feature you’ve mentioned is available in Catch Responsive Pro. I recommend you to upgrade to Catch Responsive Pro.Regards,
MaheshJanuary 25, 2016 at 10:56 am #83657In reply to: Gif on the featured slider
Mahesh
ParticipantHi @Daniel,
Sorry there. Thank you for using Catch Box Pro.
For gif images in slider, go to “Dashboard=> Appearance=> Theme Options=> Featured Slider (Tab)” and select Featured Image Slider in Select Slider Type option. Then scroll down you’ll see Featured Image Slider Options, click on Add/Change button in image and choose your desired gif image. After you’re done, click Save.Let me know if this helps with your issue.
Regards,
MaheshJanuary 22, 2016 at 4:39 pm #83453In reply to: Add image size
Mouvance web
MemberI subsitute the slider by one main image in the header. I would like that images download in #header-featured-image be systematically resized, 1200px for the width, 300px for the height.
Currently, images are resized at 1200px for width, 400px for height. I know that I can resize images manually, but it’s important that it be computerized. I hope I have been clear…Thank you!January 21, 2016 at 10:21 am #83371In reply to: Move primary menu below featured image
Mahesh
ParticipantHi @Paul,
I’ll provide you the code that I’ve tested with which is working fine. Please try with the following.
1. style.css/* Theme Name: Catch Kathmandu Pro Child Theme Theme URI: http://catchthemes.com/themes/catch-kathmandu-pro Author: Catch Themes Team Author URI: http://catchthemes.com Description: Catch Themes has come up with a full-fledged Corporate/Blog premium WordPress theme, Catch Kathmandu Pro! The design is highly customizable and you can tailor the display to your taste with a few easy clicks. Based on HTML5 and CSS3, it is a responsive theme which automatically adapts to the screen's size, regardless of the devices the visitors use. It has a large screen layout which elegantly extends to 1280 pixels! If you are looking for a clean professional space which accommodates your visuals and yet provides you with ample amount of textual area, Catch Kathmandu Pro is your perfect find. Active community at http://catchthemes.com/support-forum/ Version: 1.0 License: GNU General Public License, version 3 (GPLv3) License URI: http://www.gnu.org/licenses/gpl-3.0.txt Tags: black, blue, gray, white, dark,light, one-column, two-columns, left-sidebar, right-sidebar, fixed-layout, fluid-layout, responsive-layout, custom-background, custom-header, custom-menu, featured-image-header, featured-images, flexible-header, front-page-post-form, full-width-template, post-formats, sticky-post, theme-options, threaded-comments, translation-ready Text Domain: catchkathmandu Template: catch-kathmandu-pro */ /* =Child Theme Custom CSS -------------------------------------------------------------- */2. functions.php
<?php /** * Child Theme functions and definitions * */ /** * Loading Parent theme stylesheet * */ 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' ); } /** * Moving Primary Slider below Slider * */ add_action( 'init' , 'catchkathmandu_child_move_menu_below_slider' ); function catchkathmandu_child_move_menu_below_slider() { remove_action( 'catchkathmandu_hgroup_wrap', 'catchkathmandu_header_right', 15 ); add_action( 'catchkathmandu_before_main', 'catchkathmandu_header_right', 15 ); }The link below is the image of the changes made with the above codes in the child theme.
http://www.awesomescreenshot.com/image/925575/3ad7ec7128fb34c76175a8c2b3cdad24Regards,
MaheshJanuary 15, 2016 at 10:17 am #82926In reply to: Featured Slider Height
Pratik
ParticipantHI @benowchiro,
In free version, there is only featured post slider and featured category slider. The images for both these are automatically re-sized so it is not possible to fix a certain height as they are pre-build. So, they cannot be resized with custom CSS.
If you upgrade to pro version, you can select a featured image slider in which you can add images with custom height for your need. The details of pro version is here
Regards,
PratikJanuary 13, 2016 at 11:55 pm #82820In reply to: Move primary menu below featured image
Paul
ParticipantI tried that but it didn’t work. Perhaps I’m using the wrong terminology. I have a featured slider as the main image at the top of the page, the primary menu is positioned above this featured image. I wish to move the menu below the image just above the words of the web page
Thanks
Paul
January 13, 2016 at 11:54 pm #82819In reply to: Move primary menu below featured image
Paul
ParticipantI tried that but it didn’t work. Perhaps I’m using the wrong terminology. I have a featured slider as the main image at the top of the page, the primary menu is positioned above this featured image. I wish to move the menu below the image just above the words of the web page
January 11, 2016 at 7:26 pm #82682In reply to: Catch Base Image Slider
NickBallDesign
ParticipantHello, I am also using “Featured Page Slider” in Catch Base Free theme – everything works fine but the slider stops at final slide rather than looping back to the beginning. I can’t find any control for this – is there some code I can add in?
January 6, 2016 at 10:57 am #82287In reply to: Home Page Slider Other Pages Featured Image
Mahesh
ParticipantHi @rickm813,
Yes, there is an inbuilt setting for this feature in both themes.
You’ve already set the slider for the homepage only, so I’ll skip this one. The next in to enable Header Featured Image in all other pages excluding Homepage.
1. Go to “Dashboard=> Appearance=> Customize=> Header Image”.
2. Add an image you want as Header Featured Image or select any image from suggested if you’ve already uploaded.
3. Select “Excluding Homepage” option from “Enable Featured Header Image on” dropdown.
4. Click “Save & Publish” button and check.Regards,
MaheshDecember 31, 2015 at 4:22 pm #81975In reply to: Slider Image Content
Sakin
Keymaster@snouks: Hi Andrea,
Oh you are using Gernman Language. Sorry, I don’t understand it and I am using Google translate to understand your support request.
I see that you are tying to add in Featured Slider. For this you can refer to theme instructions at http://catchthemes.com/theme-instructions/catch-responsive-pro/#featured-slider . First, you need to select slider type. Catch Responsive Pro supports 4 featured slider types to choose from: Featured Post Slider, Featured Page Slider, Featured Category Slider and Featured Image Slider.
For Featured Slider Options, go to “Appearance => Customize => Featured Slider => Featured Slider Options”. Then use it as per your need.
December 31, 2015 at 4:16 pm #81972In reply to: Feature Content
Sakin
Keymaster@joein610:
1. Feature Slider
You can change the Demo Slider image to any image you like. First you need to select the slider type. Catch Responsive Pro supports 4 featured slider types to choose from: Featured Post Slider, Featured Page Slider, Featured Category Slider and Featured Image Slider. For more check it out at http://catchthemes.com/theme-instructions/catch-responsive-pro/#featured-sliderYou image cycling though image is not happening. First, can you update theme to latest version 3.5.1 as you are using old version 3.0 where you have fixed so many issues. For change log refer to http://catchthemes.com/changelogs/catch-responsive-pro-theme/
2. Featured Content
It’s same. You can check out instructions at http://catchthemes.com/theme-instructions/catch-responsive-pro/#featured-contentThen I can check in why it’s not sliding. It might be plugin conflict issue as well. For this, you need to deactivate plugin one by one and check in.
December 31, 2015 at 3:52 pm #81966In reply to: How to make featured slider image width of screen?
Sakin
Keymaster@treboroom: Hi Robert,
The site you are referring to uses Full Width like our theme Clean Journal Pro, Full Frame Pro, Catch Flames Pro and Adventurous Pro. Check out at http://catchthemes.com/themes/category/premium/. But Catch Responsive Pro uses maximum fixed width. So, changing to this theme will be little difficult and you need lot of custom css. Best is to change the theme. Otherwise, try the following css:
.site { width: 100%; } #feature-slider .cycle-slideshow { max-width: 100%; } #feature-slider .cycle-slideshow img { width: 100%; height: auto; } /* 460px; */ @media screen and (min-width: 1100px) { #header-featured-image, #masthead, #promotion-message, #featured-content, .site-content, #colophon { margin: 0 auto; width: 460px; } /* 520px; */ @media screen and (min-width: 1100px) { #header-featured-image, #masthead, #promotion-message, #featured-content, .site-content, #colophon { width: 520px; } /* 560px; */ @media screen and (min-width: 1100px) { #header-featured-image, #masthead, #promotion-message, #featured-content, .site-content, #colophon { width: 560px; } /* 660px; */ @media screen and (min-width: 1100px) { #header-featured-image, #masthead, #promotion-message, #featured-content, .site-content, #colophon { width: 660px; } /* 740px; */ @media screen and (min-width: 1100px) { #header-featured-image, #masthead, #promotion-message, #featured-content, .site-content, #colophon { width: 740px; } /* 960px; */ @media screen and (min-width: 1100px) { #header-featured-image, #masthead, #promotion-message, #featured-content, .site-content, #colophon { width: 960px; } /* 1040px; */ @media screen and (min-width: 1100px) { #header-featured-image, #masthead, #promotion-message, #featured-content, .site-content, #colophon { width: 1040px; } /* 1100px; */ @media screen and (min-width: 1100px) { #header-featured-image, #masthead, #promotion-message, #featured-content, .site-content, #colophon { width: 1100px; } /* 1200px; */ @media screen and (min-width: 1200px) { #header-featured-image, #masthead, #promotion-message, #featured-content, .site-content, #colophon { width: 1200px; }Sorry, I cannot make 100% sure about this css. It’s advance.
December 30, 2015 at 10:44 am #81893In reply to: Cannot install Simple Catch Pro version 3.3
Mahesh
ParticipantHi @rflores,
The image displayed in the slider and the blog post is the same image i.e. Featured Image. The image used inside the post content has nothing to do with it. The image selected as featured image is automatically cropped to 210*210 image to be displayed in the post list as thumbnail.
Let me know if any problem.
Regards,
MaheshDecember 30, 2015 at 10:32 am #81891In reply to: How to make featured slider image width of screen?
Mahesh
ParticipantHi @Robert,
For removing space between featured slider and featured content, go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” and add the following CSS.
#feature-slider{ padding-bottom: 0; }For full-width slider, Sakin will answer it, its a bit complicated.
Regards,
MaheshDecember 30, 2015 at 9:48 am #81876In reply to: Hide the text Mount Everest and Nepal Prayer Wheels
Sakin
Keymaster@adunning: You can add any number of posts in featured post slider. You can refer to http://catchthemes.com/blog/videos-blog/video-series-adding-featured-post-slider/
December 30, 2015 at 5:26 am #81863In reply to: Cannot install Simple Catch Pro version 3.3
rflores
ParticipantThanks Mahesh. A little more help please, so I understand the process for using images in a post and in an image slider. Currently, I have the “post slider” option selected. I use an image 210 x 210 and insert into post, and update. I’ll then select an image for slider that is 976 x 312 and select this image as a featured image into the slider. Is this correct? Sorry for the beginner questions, but I am very close to creating a good url for a beginner to this process.
Again, thank you very much for your assistance.
rflores
December 29, 2015 at 11:56 pm #81843In reply to: How to make featured slider image width of screen?
Robert
ParticipantThank @Mahesh. So I’m hoping to get the featured slider to look something like this ******* or ******. Also wondering about removing space between featured slider and featured content. My site is: http://www.theshokoshow.com/
December 29, 2015 at 10:39 am #81811In reply to: Use 1 Header-Image on frontpage instead of slider
Mahesh
ParticipantHi @Frank,
For that, first disable the slider. Go to “Dashboard=> Appearance=> Customize=> Featured Slider=> Slider Options” and select “Disable” option in “Enable Slider” dropdown. Then go back to “Customize=> Header Image” and select “Entire Site, Page/Post Featured Image” option from “Enable Featured Header Image” dropdown. Click “Save & Publish” and check the front page.
Regards,
Mahesh -
AuthorSearch Results
