-
AuthorSearch Results
-
November 26, 2018 at 5:02 pm #160157
In reply to: Align primary menu top right
EvdelParticipantJust one more thing:
We would love to have the same font on our header images as we have on our featured slider’s sub title:
– can we change the font on the header images?
– How can we see what the font of the sub title on our feature slider is?Can we change the text on the button that appears on the featured slide when we want it link to a certain page? Now the link says ‘continue reading’, but we want to state something like ‘our products’.
Again thanks for your help!
November 12, 2018 at 5:38 am #159068In reply to: Remove "Read more" button in feature slider
ns151ParticipantYes, thank you anyway. Now I have another problem. I tried to add a new post to the featured slider and it works well when I look at the site logged in the administrator but nothing changes when I check it as a user, it looks like I haven’t made any changes. I tried to refresh and save the new version multiple times but it doesn’t seem to work.
November 12, 2018 at 2:23 am #159046In reply to: News Ticker Position issue
SkandhaParticipant@ravanh: I will look into the issue with the order of featured page slider and get back to you soon.
Regarding the French translation, since we do not know french, those translations are not done by us and are done by our customers like you. You could contribute to translating the theme in french and we will put your name as a contributor for the translation.
All you need to do is download free software from http://poedit.net/ and open it then. Edit a translation and then select fr_FR file and open. Then you will see the English text on left side and its translation to the right. You can correct previous translations as well as add new translations to the empty ones. After completing translating the words you can email us the .po file and we will update the translation in the next theme update.Let me know if this helps you out!
Kind Regards,
SkandhaNovember 10, 2018 at 7:09 pm #158972In reply to: News Ticker Position issue
RavanHParticipantAny news on this? I also noticed that when the Featured Slider is set to Pages, the order of the slides seems to be reversed. Slide number 1 comes last instead of first…
November 6, 2018 at 11:31 am #158692In reply to: Catch Fullscreen Pro – Header Slider
pelinsu2010ParticipantHello again,
I found Featured Slider options. But still i need use featured slider to header area. Also can i change arrow and dot options in featured slider?
Thank you.
November 5, 2018 at 6:10 am #158571In reply to: two post pages in featured content
HansParticipantHi Skandha,
What I should like has been solved voor 75% by using featured images.
Where I am looking for is the following:
In the featured content should be four featured content in the final version of the website.
Two of them are “normal” pages and two of them are pages with lated posts. And I should like to have for all 4 the possibility of a “read more link” and an image above the text.
Now I use the featured image functionality and then it isn’t possible to have an excerpt and a read more link.And if I use the featured content functionality then I have to use an image for a page to get the image in the featured content. But…. I use a featured slider and then using an extra image as featured image gives an ugly effect.I am not able to make the featured picture for a latest post page so that it is only visible to the featured content on the front page and not on the latest post page.
Addition question: is it possible to upload a picture to you, then it is easier to explain what I mean.
Kind regards
Hans
November 2, 2018 at 3:41 am #158322In reply to: Scroll over text on Feature Content
sapanaParticipant@fireflywebs: Go to => Lucida-pro-child => funtions.php and add the following Code.
function lucida_page_post_category_content( $options ) { global $post; $no_of_post = 0; // for number of posts $post_list = array();// list of valid post/page ids $layouts = 3; $quantity = $options['featured_content_number']; $type = $options['featured_content_type']; $show_content = $options['featured_content_show']; $output = '<div class="featured_content_slider_wrap">'; if( 'layout-four' == $options['featured_content_layout'] ) { $layouts = 4; } elseif ( 'layout-two' == $options['featured_content_layout'] ) { $layouts = 2; } $args = array( 'post_type' => 'any', 'orderby' => 'post__in', 'ignore_sticky_posts' => 1 // ignore sticky posts ); //Get valid number of posts if( 'post' == $type || 'page' == $type ) { for( $i = 1; $i <= $quantity; $i++ ){ $post_id = ''; if( 'post' == $type ) { $post_id = isset( $options['featured_content_post_' . $i] ) ? $options['featured_content_post_' . $i] : false; } elseif( 'page' == $type ) { $post_id = isset( $options['featured_content_page_' . $i] ) ? $options['featured_content_page_' . $i] : false; } if ( $post_id && '' != $post_id ) { $post_list = array_merge( $post_list, array( $post_id ) ); $no_of_post++; } } $args['post__in'] = $post_list; } elseif( 'category' == $type ) { $no_of_post = $quantity; $args['category__in'] = $options['featured_content_select_category']; } if ( 0 == $no_of_post ) { return; } $args['posts_per_page'] = $no_of_post; $loop = new WP_Query( $args ); $i=0; while ( $loop->have_posts()) : $loop->the_post(); $i++; $title_attribute = the_title_attribute( array( 'before' => esc_html__( 'Go to: ', 'lucida-pro' ), 'echo' => false ) ); $excerpt = get_the_excerpt(); $output .= ' <article id="featured-post-' . $i . '" class="post hentry post">'; //Default value if there is no first image $image = '<img class="wp-post-image" src="'.esc_url( get_template_directory_uri() ).'/images/gallery/no-featured-image-1920x800.jpg" >'; if ( has_post_thumbnail() ) { $image = get_the_post_thumbnail( $post->ID, 'lucida-landscape', array( 'title' => $title_attribute, 'alt' => $title_attribute ) ); } else { //Get the first image in page, returns false if there is no image $first_image = lucida_get_first_image( $post->ID, 'lucida-landscape', array( 'title' => $title_attribute, 'alt' => $title_attribute ) ); //Set value of image as first image if there is an image present in the page if ( '' != $first_image ) { $image = $first_image; } } $output .= ' <figure class="featured-homepage-image"> <a href="' . esc_url( get_permalink() ) . '" title="' . $title_attribute . '"> '. $image .' </a> </figure>'; $output .= ' <div class="entry-container"> <header class="entry-header"> <h2 class="entry-title"> <a href="' . esc_url( get_permalink() ) . '" rel="bookmark">' . the_title( '','', false ) . '</a> </h2> </header>'; if ( 'excerpt' == $show_content ) { $output .= '<div class="entry-summary"><p>' . $excerpt . '</p></div><!-- .entry-summary -->'; } elseif ( 'full-content' == $show_content ) { $content = apply_filters( 'the_content', get_the_content() ); $content = str_replace( ']]>', ']]>', $content ); $output .= '<div class="entry-content">' . wp_kses_post( $content ) . '</div><!-- .entry-content -->'; } $output .= ' </div><!-- .entry-container --> </article><!-- .featured-post-'. $i .' -->'; endwhile; wp_reset_postdata(); return $output; }
This should change your Permalink to:=> Go to. Let me know if this works out!
Kind Regards,
SapanaOctober 24, 2018 at 4:13 am #157457In reply to: Where are the sections?
SkandhaParticipant@umbra989: Yes, sections here mean featured content, featured slider, hero content, posts and so on and you can change their order using the Section Sorter feature in the theme options.
Kind Regards,
SkandhaOctober 20, 2018 at 12:13 am #157163In reply to: Featured slider height issue
SakinKeymaster@ravanh: I think it’s got to do with the image loader. So, can you go to “Appearance => Customize => Featured Slider” and change the value of “Image Loader”
October 16, 2018 at 5:59 pm #156881SugranParticipantThere is no post option under ‘Featured Slider’, it shows -> Content Alignment for #1, 2, 3…
October 16, 2018 at 4:04 pm #156863In reply to: Adding Social icons to Header
SakinKeymasterHello Chris,
Sorry, there is no option to add social icons to the header right. There is option to enable social icons in Featured Slider from “Appearance => Customize => Featured Slider”. Further, you can add social icons in widget areas from “Appearance => Widgets” and then drag and drop “CT: Social Icons” widget to your desire widget area.
Regards,
SakinOctober 15, 2018 at 10:44 am #156800In reply to: Featured Slider custom html content
grobcParticipantHi Skandha,
of course I use a child theme…and now I added the function to load the page at the featured-slider.php to my child theme functions.php.
My idea was to buy the Pro theme, support your company and get pro functionalities…to be able to setup an page as content for the featured slider with HTML, that will be shown at the website.But for me it looks, like I don´t get any extra functions with this Pro theme… The font, that could be loaded/configured at the customizer, I loaded at the functions.php of the child theme (free version of Rock Star). Different colors could be changed via the childs CSS file.
October 15, 2018 at 7:48 am #156798In reply to: Header Media not working on mobile
hoiungParticipantskandha: for clarity, I’m referring to the Media Heading “randomise uploaded heads” and not the theme options “Featured Sliders”! Though having the option for both would be super useful 🙂
October 15, 2018 at 1:29 am #156771In reply to: Header Media not working on mobile
SkandhaParticipant@hoiung: Thank you for the suggestion. I will forward this to our development team. Yes, you can activate slider for mobiles and header video for desktops. Activate featured slider on your site and I will provide you the CSS Code to make this possible.
Kind Regards,
SkandhaOctober 15, 2018 at 12:55 am #156764SkandhaParticipant@sugran: To make slider text show up on other pages
Go to => Appearance => Customize => Additional CSS and add the following CSS Code.body:not(.home) .slider-content-wrapper .entry-container, .home .custom-header-content { position:fixed; top:140px; } body:not(.home) .section-content-wrap .entry-container-wrap .entry-summary { margin:0; font-size:18px; } body:not(.home) .section-content-wrap .entry-container-wrap .entry-title { font-size:28px; }
To change the order in which the slider images are displayed.
Go to => Appearance => Customize => Theme Options => Featured Slider => In Post #1 select the page you want to display as the first slide then in Post #2 the post you want to display after first slide and so on.Let me know if this helps you out!
Kind Regards,
SkandhaOctober 13, 2018 at 12:27 pm #156685In reply to: featured post slider
admitcardParticipantHello Greetings
I was Googling about this problem Luckily i found this URL and this Comment would help me to resolve my problem i want to add Featured slider Images to my WordPress blog i had a WordPress blog ur: Admit Card where i post about educational stuff i want to Make my blog Elegant
Please @Skandha Can you suggest any Custom code to add Homepage slider or Post page slider
I’m requesting catch themes Community to reply on this comment to help me out
Regards
Admit cardsOctober 11, 2018 at 2:37 am #156491SkandhaParticipant2) To disable the Featured Image link in Featured Content
Go to => Appearance => Customize => Additional CSS and add the following CSS Code..featured-content-thumbnail.post-thumbnail { pointer-events:none; }
3) You have enabled Logo Slider as post type but you have not selected any posts to show as logo slider. Please select some posts. Its better if you use Image Type as Logo Slider to show your logos.
4)For that
Go to => Appearance => Customize => Additional CSS and add the following CSS Code..entry-title { hyphens:none !important; }
5) To learn CSS Codings I recommend you W3Schools.
Let me know if this helps you out!
Kind Regards,
SkandhaOctober 8, 2018 at 10:04 am #156172In reply to: Replace Featured Slider?
localgeekParticipant@sapana Yes, that disables the built-in Featured Slider. I’m now able to add my own to my Home Page. However, it appears below the Featured content. Is there a way to place it at the top of the page, before all of the other content? Thanks.
October 8, 2018 at 3:28 am #156148In reply to: Featured Slider is NOT showing up
tikaramParticipant@richardmin : Please go through the theme instruction at https://catchthemes.com/themes/clean-fotografie-pro/#theme-instructions and locate featured slider. Follow the instructions and you will be able to get your desired sliders. Let me know if you have any more issues.
Regards,
TikaramOctober 8, 2018 at 1:16 am #156140In reply to: Replace Featured Slider?
sapanaParticipant@localgeek: You can disable the Featured slider. Go to Dashboard=> Appearance=> Customize=> Featured Slider=> Enable Slider On and select Disabled. And the you can you can use your desired Slider. The theme may or may not be compatible with the Slider you use. If you face the issue then customization may be required. If so, I recommend you to hire a customizer.
Kind Regards
Sapna -
AuthorSearch Results