Forum Replies Created

Viewing 20 posts - 901 through 920 (of 1,154 total)
  • Author
    Posts
  • in reply to: News or pages? #158506
    sapana
    Participant

    @djordje:You can create the page to display the news and select that featured page to be display the recent news.Let me know if this helps you out!

    Kind Regards,
    Sapana

    in reply to: Social Icons and the CT Social Widget #158323
    sapana
    Participant

    @fireflywebs:Please post in your site Url and elaborate your issues so that I can look into those issues.

    Kind Regards,
    Sapana

    in reply to: Scroll over text on Feature Content #158322
    sapana
    Participant

    @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,
    Sapana

    in reply to: I use a catch base. #158320
    sapana
    Participant

    @ta0102:/*To make image size like as header image*/
    I suggest you to upgrade to Pro where you have need to change the layout of the page to no-sidebar full width which is only available in Pro version. I suggest you to upgrade to Pro.

    /*For the promotion headline*/
    Please remove all the previous added CSS code for the promotion headline and add following code
    Go to=> Appearance=> Customizer=> Additional CSS and add the following code

    #promotion-message h2 {
        text-align:center;
    }

    Let me know if this works out!

    Kind Regards,
    Sapana

    in reply to: remove hyperlink #158224
    sapana
    Participant

    @jitping: Please remove the previous added code and follow the steps.
    : Go to=> Appearance=> Customize=> Additional CSS and add the following CSS code
    /*To remove the hyperlink from welcome/Coming Soon text*/

    .home .entry-title {
    pointer-events: none;
    }

    Let me know if this helps you out!

    Kind Regards,
    Sapana

    in reply to: Adding second button on main page header #158217
    sapana
    Participant

    @abelgallardomac-com: You will need to create a child theme and do a bit of customization for this. Let me know if you are familiar with child theme customization otherwise I suggest you to hire a customizer.

    Kind Regards,
    Sapana

    in reply to: Scroll over text on Feature Content #158216
    sapana
    Participant

    @fireflywebs: To change the “permalink to:” = ” Go to” you need to create the child theme and do a little bit of customization let me know if you are familiar with the child theme. I will provide you the necessary code for that otherwise I suggest you to hire a customizer to get it done.Can you Please clarify me In which section you want to change the font size and color.

    Kind Regards,
    Sapana

    in reply to: not able to update to 1.2.2 #158203
    sapana
    Participant

    @maciejakubzawadzki: You cannot update pro theme like you update free theme .To update pro theme you’ll need to first download the theme from https://catchthemes.com/my-account/ page. Then install Catch Web Tools plugin and activate Catch Updater Module. https://wordpress.org/plugins/catch-web-tools/
    Please check the tutorial video in the link below:
    https://www.youtube.com/watch?v=W95SuabDZi8
    For more, check out theme instructions at https://catchthemes.com/themes/catch-fullscreen-pro/#updating

    Let me know if this helps you out!
    Kind Regards,
    Sapana

    in reply to: I use a catch base. #158147
    sapana
    Participant

    @ta0102: Go to=> Appearance=> Customize=> Additional CSS and add the following CSS code
    /* To remove the first title*/

    .home .section.left h2 {
    display: none;
    
    }

    let me know if this helps you out!
    Kind Regards,
    Sapana

    in reply to: Image size #158141
    sapana
    Participant

    @ta0102: You will need to change the layout of the page to no-sidebar full width which is only available in Pro version. I suggest you to upgrade to Pro.

    Kind Regards,
    Sapana

    in reply to: Internet Explorer Header Image #158114
    sapana
    Participant

    @jme-p: Please post in your site URl so that I can look into those issues.

    Note: We recently moved our site to a new web server. So, if you don’t receive our reply even after 1-2 days time please post a new issue in the support forum. Sorry for the inconvenience caused.

    Kind Regards,
    Sapana

    in reply to: Make a hard break in titles on homepage #158109
    sapana
    Participant

    @wouwonline:Go to=> Appearance=> Customize=> Additional CSS and add the following CSS code.
    /*For header section to inline the Rijschool Erik Snip in one line*/
    -Please remove the <br> you have added in the text field.

    .section .entry-content-wrapper .entry-header {
        max-width:none !important;
    }

    /* For promotion headline to inline the title in one line*/
    -Please remove the <br> you have added in the title of the page

    .entry-title.section-title {
    font-size:2.0625rem !important;
    }

    Let me know if this helps you out!

    Note: We recently moved our site to a new web server. So, if you don’t receive our reply even after 1-2 days time please post a new issue in the support forum. Sorry for the inconvenience caused.

    Kind Regards,
    Sapana

    sapana
    Participant

    @hanschairbridge-com: Glad to know that you figure it out. Have a good day!!

    Kind Regards,
    Sapana

    in reply to: remove hyperlink #157994
    sapana
    Participant

    @jitping:Go to=> Appearance=> Customize=> Additional CSS and add the following code.

    .home .entry-title a {
    display: none;
    }

    Let me know if this solve your issue!

    Kind Regards,
    Sapana

    in reply to: I use a catch base. #157969
    sapana
    Participant

    @ta0102:Hello, I hope I was able to resolve your issue. If it’s not too much trouble,I have a quick request: could you please leave an honest review?https://wordpress.org/support/theme/catch-base/reviews/#new-post Your review will help others know what to expect when they’re looking for the support I offer. Even a sentence or two would be hugely appreciated.Thanks, and if there’s anything else at all that I can do to help, don’t hesitate to let me know.

    Kind Regards,
    Sapana

    in reply to: I use a catch base. #157796
    sapana
    Participant

    @ta0102:Go to=> Appearance=> Customize=> Additional CSS and add the following CSS code
    /*To display current Five image horizontally/

    #text-7 .textwidget img {
        width:115px;
        padding-right:5px;
    }

    /* If you want to hide page in specific page*/

    #post-42 .entry-content h2 {
        display: none;
    }

    /*If you want to hide the page title in every page*/

     .entry-content h2 {
        display: none;
    }

    Let me know if this solves your issue!

    Kind Regards,
    Sapana

    in reply to: Hero Content – full width post #157700
    sapana
    Participant

    @vanwels: This seems to be plugin related issue. I suggest you to contact with respective plugin support forum.

    Kind Regards,
    Sapana

    sapana
    Participant

    @hanschairbridge-com: Please post in your site Url. Also enable the Hero Content in entire site and create the page called Our Services. I will provide you the additional CSS to enable hero content in that specific page.

    Kind Regards,
    Sapana

    in reply to: I use a catch base. #157557
    sapana
    Participant

    @ta0102:Go to=> Appearance=> Customize=> Additional CSS and add the following CSS code

    /* To eliminate the border line in top*/

     .nav-primary {
        border-top: none !important;
    }

    /* For Promotion headline*/
    Please remove all the CSS you have add for the promotion headline section and add the following CSS

    #promotion-message .left {
        max-width:100%;
    }

    Let me know if this solves your issue

    Kind Regards,
    Sapana

    in reply to: I use a catch base. #157527
    sapana
    Participant

    @ta0102: To change the position of featured content in individual page is quit difficult so I suggest you to hire customizer.
    Let me know if you have any other related issue.

    Kind Regards,
    Sapana

Viewing 20 posts - 901 through 920 (of 1,154 total)