-
AuthorSearch Results
-
November 20, 2016 at 11:07 pm #103601
In reply to: How to change slider images
Sakin
Keymaster@grahama: Please add in your site URL and explain that are you trying to do. When I check in your site http://proencltd.com/, you haven’t added image. For more, check out theme instructions at https://catchthemes.com/theme-instructions/catch-base/#featured-slider
November 15, 2016 at 8:46 pm #103351In reply to: How to change slider images
grahama
ParticipantSakin, I have uploaded the featured images and when I select the page in slider settings to the featured images on page, > Save > refresh – no images just text over -writing image – no featured image!
Changed back to default – an other option is how can i remove the grey text slider 1 from default slider??
Screen shot is here => https://www.dropbox.com/s/g2kaho05u7rtbfz/error.png?dl=0
November 10, 2016 at 12:15 pm #103094Mahesh
Participant@dercncplaner: On the slider, custom truncate is being used (substr) which I’m afraid actually doesn’t work with arabic language. But on the other such as blogs list, featured grid etc. the excerpt works. Hope you understand.
Regards,
MaheshNovember 7, 2016 at 4:46 pm #102939In reply to: Slider disappearing
Mahesh
Participant@marco-cherin: I checked the same on our server and it is working fine. Go to Dashboard=> Appearance=> Customize=> Featured Post Slider=> Slider Options and make sure you’ve put correct Post ID in Featured Post Slider #.
Let me know further.Regards,
MaheshNovember 6, 2016 at 10:02 am #102894In reply to: Not Getting Paid Support
Mahesh
Participant@mjadkowskigmail-com: We are responding to all the tickets sent to us. We’ve inform the Premium Support team and they have responded you with an email please check. Did you receive the email?
Sidebar menu issue: Yes, this can be done. As you’ve mentioned you already have a sidebar set up on one page. I assume you’ve put it in the Sidebar Widget Area. Please set up new on on Optional Sidebar # Widget areas too then. When adding a new page, scroll down to be bottom, you’ll find Chicago Options. Click on Select Sidebar tab. And choose one of the option. On choosing, the sidebar menu of selected sidebar will be displayed. Hope this helps.
Sorry, we don’t have that but what you can do is, go to Dashboard=> Appearance=> Customize=> Featured Slider=> Featured Slider Options and select Homepage/Frontpage on Enable Slider on option to check the demo. Let me know further if you need any help.
Regards,
MaheshOctober 29, 2016 at 5:51 pm #102447In reply to: Featured Slider
Pratik
ParticipantHi @billgrant,
Slider options should be in Appearance=> Customize=> Featured Slider from dashboard. It’s detailed instructions are here: https://catchthemes.com/theme-instructions/rock-star/#featured-slider
Regards,
PratikOctober 26, 2016 at 9:52 am #102188In reply to: Featured Slider – background and size
Mahesh
Participant@tingstedkirke: Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:
.featured-slider .slides { background-color: #000fff; } .featured-slider .slides img { height: 350px; }Note: Change the color and height as desired.
Regards,
MaheshOctober 20, 2016 at 9:35 am #101824In reply to: HELP! Slider & Featured images / white space /uneven
Mahesh
Participant@mindfulsami:
1. The problem you are having is because of inconsistency of the image size you are using. The recommend image size for Slider is Width: 1680px Height: 720px. Use image with similar dimensions and the problem will be resolved.
2. Featured Content seems to be fine.
3. Use image with same dimensions, Featured Grid Content uses image with 4:3 aspect ratio. Small grid image is Width: 420px Height: 283px and large grid image is Width: 840px Height: 565px. These sized image are auto generated by the theme.
Hope you understand. Let me know if any problem.Regards,
MaheshOctober 17, 2016 at 10:06 am #101607In reply to: Rearrange order of display areas on home page
Pratik
ParticipantHI @spot0608,
Here is what you need to do.
1. First move Featured Content To bottom. For that, goto Appearance=> Customize=> Featured Content=> Featured Content Options and check Check to Move above Footer option
2. Add function given here: http://pastebin.com/N826Eimi in your child theme’s functions.php fileThis should achieve what you want. Please note the comment blocks and remove the unnecessary lines as I have given you solutions for
Promotion Headlinefor both 3 and 4.This should achieve following:
1) Featured Slider
2) Hero Content
3) * Promotion Headline
4) Header Highlight Content
5) * Promotion Headline
6) Portfolio
7) Static Front Page Content
8) Featured Content
9) Logo SliderRegards,
PratikOctober 16, 2016 at 10:00 pm #101568In reply to: Updated to v4.8 – will I need to alter Child Theme?
Roland
ParticipantHi Pratik,
Here is the theme folder structure:https://dl.dropboxusercontent.com/u/8699166/Theme%20folder%20structure.png
The version 4.7.1 theme is “catch-kathmandu-pro-3” (existing parent theme)
the version 4.8 theme is “catch-kathmandu-pro”Child theme functions.php:
<?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">' . get_the_title() . '</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 * */Child theme styles.css header: https://dl.dropboxusercontent.com/u/8699166/Child%20theme%20styles.css%20header.png
Thanks
Roland
October 16, 2016 at 5:21 pm #101553In reply to: Rearrange order of display areas on home page
spot0608
ParticipantHi Pratik,
thanks for your answer.
Unfortunately the page is not available on a public server yet. I just downloaded and installed the theme on my local server as a draft and activated all the frontpage sections with demo content. So the current order is the one from the installed original parallax frame like1) Featured Slider
2) Hero Content
3) Header Highlight Content
4) Portfolio
5) Featured Content
6) Promotion Headline
7) Logo Slider
8) Static Front Page ContentI would like to have “Promotion Headline” on Position 3 or 4 and the “Static Front page content” on Position 4 or 5 so that for example the “Logo slider” is the last section.
Is there a file in which the order of the front page sections is set?
Thanks a lot
JohnOctober 14, 2016 at 8:19 pm #101493In reply to: Featured page slider
Pratik
ParticipantHI @aliceb,
Free version of the theme has Page Sliders. To achieve what you need, you need to upgrade to Pro. Pro version has Custom Featured Image Slider and then you can use # in link to not link it to anywhere.
Regards,
PratikOctober 14, 2016 at 7:39 am #101445In reply to: Responsive on Moto G4 phone not always right
Nonno
ParticipantHi Pratik,
The URL https://catchthemes.com/demo/catch-responsive-pro works fine on Moto G4 …featured slider and all.
On my site – USRTownSquare.org/blog/ – the featured images for individual posts sometimes show very large and the title *incorrectly* goes under the image.
Very unpredictable —- sometimes entire view is ok but overall too small.
Then sometimes looks perfect?????Very confusing …problem seems to vary
October 6, 2016 at 11:55 am #100998In reply to: How to get my site to look like demo?
Mahesh
Participant@chi: Free version has limited features. You’ll need to add page with featured image and then select that page. And then the image set as featured image will be displayed as Featured Image, Slider etc. For custom images, I recommend you to upgrade to Pro version.
Regards,
MaheshOctober 6, 2016 at 10:45 am #100994In reply to: How to get my site to look like demo?
Mahesh
Participant@chi: The features in the theme are disabled by default. If you want to have similar look as of the demo. Go to Dashboard=> Appearance=> Customize:
=> Header Highlight Content and select Homepage/Frontpage or Entire Site in Enable Header Highlight Content on.
Do the same for Featured Slider, Featured Content and News Ticker and you are good to go.
Let me know if any problem.Note: Please skip the reply on the other thread.
Regards,
MaheshOctober 6, 2016 at 10:18 am #100987In reply to: initial set up of template is not like the demo
Mahesh
Participant@chi: Please post the problem in the correct Thread. You are using Clean Magazine, this is Wen Business Pro theme’s thread.
The features in the theme are disabled by default. If you want to have similar look as of the demo. Go to Dashboard=> Appearance=> Customize:
=> Header Highlight Content and select Homepage/Frontpage or Entire Site in Enable Header Highlight Content on.
Do the same for Featured Slider, Featured Content and News Ticker and you are good to go.
Let me know if any problem.Regards,
MaheshOctober 3, 2016 at 12:57 pm #100770In reply to: Height of feature slider
Pratik
ParticipantHi @ipswichcatholic,
It is possible to reduce height of slider but will crop out the image. Try following code in Apperance=> Customize=> Theme Options=> Custom CSS box:
#feature-slider .cycle-slideshow { height: 500px !important; } #feature-slider .entry-container { top: 35%; }If you do not want the image to be cropped, then you will need to upgrade to Pro version and use Featured Image Slider rather than the Page Slider provided in free version.
Regards,
PratikSeptember 26, 2016 at 2:06 pm #100282In reply to: Have no options to change Slider Images
Mahesh
Participant@spegrum: Go to Dashboard=> Appearance=> Featured Slider then choose Homepage/Front Page or Entire Site in Enable slider on option, then further options will slide down. Then choose demo or Featured Page Slider. Using Featured Page slider, you can make selected pages as slider and Featured image will be displayed as slides. Please make sure you have featured image set in the pages selected. If the slider still doesn’t appear, set Image Loader to false.
Let me know further.Regards,
MaheshSeptember 23, 2016 at 10:51 am #100049In reply to: How to remove slider border
Mahesh
Participant@misstraveling: Thank you for using Simple Catch Pro theme. The recommended size for slider is 976 x 313, however you may have image with diferent size too.
To remove grey borders, go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:.featured-img { border-left: none; border-right: none; border-bottom: none; }If you want to keep the border at the bottom, remove
border-bottom: none;from the above CSS.Regards,
MaheshSeptember 22, 2016 at 5:13 pm #99971Mahesh
Participant@android: I did check your site and the customize setting are working just fine. But when selecting Pages in slider, please make sure that the page have featured image set. Or the slider will not load. By default, Image Loader option is set to true, which loads all the image first before displaying the sldier. And if one image is not found, the slider will not be displayed. So try setting it to false and let me know.
Regards,
Mahesh -
AuthorSearch Results
