Forum Replies Created

Viewing 20 posts - 3,421 through 3,440 (of 4,116 total)
  • Author
    Posts
  • in reply to: Fotografie – Change border color #124355
    tikaram
    Participant

    @deadsteve1982 : Can you please clarify in which part do you want the border color to be grey. Please post in your sit URL as well.

    Regards,
    Tikaram

    in reply to: catch evolution social widget does not work #124351
    tikaram
    Participant

    @mark1974 : Go to Appearance => Customize => Social Links => Social Links
    Under Facebook : Enter the facebook page url and save.

    Go to Appearance => Widgets and drag and drop CT: Social Widget where you would like to link your facebook page.

    Let me know if you need further assistance.

    Regards,
    Tikaram

    in reply to: Less white space around picture in header #124266
    tikaram
    Participant

    @basbeijes : What color would you like to use for the hamburger menu ?

    Add the following css to adjust the space around header image.

    @media only screen and (min-width: 990px) {
    #hgroup-wrap {
    	padding-bottom: 20px !important;
    	padding-left: 0;
    }
    }

    Let me know if you need further assistance.

    Regards,
    Tikaram

    in reply to: Featured Image Cache #124262
    tikaram
    Participant

    @ve3eby : Glad to know that the issue has been solved. Let me know if you have any more theme related issues.

    Regards,
    Tikaram

    in reply to: Featured Slider Images #124261
    tikaram
    Participant

    @ca2dm-rcsgmail-com : I have tried to provide you the best possible solution to the problem as you can see the demo of the site as well where the background image gets cropped. It is not possible to set the background to adjust exactly as window size. Either it will be cropped or it will be squeezed. since its used as a background image as I mentioned it earlier. Its up to you to decide which ever design you choose to use. Sorry for the inconvenience and thank you for using our theme. Alternatively, you may hire customizer to get your site customized as desired.

    Regards,
    Tikaram

    in reply to: mobile menu border #124245
    tikaram
    Participant

    @gtabk : Please post in your site URL.

    Regards,
    Tikaram

    in reply to: Essential Content Types Portfolio image links #124241
    tikaram
    Participant

    @kend : Please post in your site URL.

    Regards,
    Tikaram

    in reply to: Less white space around picture in header #124240
    tikaram
    Participant

    @basbeijes : Remove the following css from the previous css that I provided.
    #header-left{ height: 0 !important;}

    Add the following additional css.

    @media only screen and (min-width: 990px) {
    #header-left{ height: 0 !important;}
    }
    .menu-header-container .sb-selector {
    	display: none;
    }
    .sb-holder {
    	background-color: #ebaa46 !important;
    }

    Let me know if you have any further issues.

    Regards,
    Tikaram

    in reply to: Center Responsive Logo & Post Information #124237
    tikaram
    Participant

    @contentchampion : Create a child theme and add the following code in the functions.php file of the child theme.
    To change the time of the slider change the value of data-cycle-timeout="10000". Currently 10000 refers to 10 seconds. Let me know if you have any further issues.

    function clean_education_testimonial_display() {
    		//clean_education_flush_transients();
    		global $wp_query;
    
    		// get data value from options
    		$options        = clean_education_get_theme_options();
    		$enable_content = $options['testimonial_option'];
    		$content_select = $options['testimonial_type'];
    		$slider_select  = $options['testimonial_slider'];
    
    		// Front page displays in Reading Settings
    		$page_for_posts = get_option('page_for_posts');
    
    		// Get Page ID outside Loop
    		$page_id = $wp_query->get_queried_object_id();
    		if ( 'entire-site' == $enable_content || ( ( is_front_page() || ( is_home() && $page_for_posts != $page_id ) ) && 'homepage' == $enable_content ) ) {
    			if ( ( !$output = get_transient( 'clean_education_testimonial' ) ) ) {
    				$layouts 	 = $options['testimonial_layout'];
    				$headline 	 = $options['testimonial_headline'];
    				$subheadline = $options['testimonial_subheadline'];
    
    				echo '<!-- refreshing cache -->';
    
    				if ( !empty( $layouts ) ) {
    					$classes = $layouts ;
    				}
    
    				$classes .= ' ' . $content_select ;
    
    				if ( 'demo' == $content_select ) {
    					$headline    = esc_html__( 'Testimonials', 'clean-education-pro' );
    					$subheadline = esc_html__( 'Here you can showcase the x number of Testimonials.', 'clean-education-pro' );
    				}
    
    				if ( $options['testimonial_position'] ) {
    					$classes .= ' border-top' ;
    				}
    
    				$output ='
    					<div id="testimonial-section" class="sections ' . $classes . '">
    						<div class="wrapper">';
    							if ( !empty( $headline ) || !empty( $subheadline ) ) {
    								$output .='<div class="section-heading-wrap">';
    									if ( !empty( $headline ) ) {
    										if( class_exists( 'Polylang' ) ) {
    											$headline = pll__( $headline);
    										}
    										$output .='<h2 id="testimonial-heading" class="section-title">'.  $headline .'</h2>';
    									}
    									if ( !empty( $subheadline ) ) {
    										if( class_exists( 'Polylang' ) ) {
    											$subheadline = pll__( $subheadline);
    										}
    										$output .='<p>' . wp_kses_post( $subheadline ) . '</p>';
    									}
    								$output .='
    									<!-- prev/next links -->
    									<div id="content-controls">
    										<div class="content-prev"></div>
    										<div class="content-next"></div>
    									</div>
    								</div><!-- .featured-heading-wrap -->';
    							}
    							$output .='
    							<div class="section-content-wrap">';
    
    								if ( $slider_select ) {
    									$output .='
    									<div class="cycle-slideshow"
    									    data-cycle-log="false"
    									    data-cycle-pause-on-hover="true"
    									    data-cycle-swipe="true"
    									    data-cycle-auto-height=container
    										data-cycle-slides=".testimonial_slider_wrap"
    										data-cycle-fx="scrollHorz"
    										data-cycle-prev="#testimonial-section .content-prev"
    	        							data-cycle-next="#testimonial-section .content-next"
    	        							data-cycle-timeout="10000"
    										>';
    								}
    
    								// Select content
    								if ( 'demo' == $content_select ) {
    									$output .= clean_education_demo_testimonial( $options );
    								}
    								elseif ( 'post' == $content_select || 'jetpack-testimonial' == $content_select || 'page' == $content_select || 'category' == $content_select ) {
    									$output .= clean_education_post_page_category_testimonial( $options );
    								}
    								elseif ( 'image' == $content_select ) {
    									$output .= clean_education_image_testimonial( $options );
    								}
    
    								if ( $slider_select ) {
    									$output .='
    									</div><!-- .cycle-slideshow -->';
    								}
    
    				$output .='
    							</div><!-- .section-content-wrap -->
    						</div><!-- .wrapper -->
    					</div><!-- #testimonial-section -->';
    			set_transient( 'clean_education_testimonial', $output, 86940 );
    			}
    		echo $output;
    		}
    	}

    Note : You will need to make any change from the customizer to clear the transient. Otherwise you will not be able to see changes immediately due to transient issue.

    Regards,
    Tikaram

    in reply to: Featured Image Cache #124234
    tikaram
    Participant

    @ve3eby : I checked it on Facebook from my end and a thumbnail form the first YouTube video appeared. It looks like you have issues at your end due to caching.
    Screen shot : https://prnt.sc/gwt8te

    For the second part please try disabling all plugins and follow this link to know more about plugin conflict with our themes.

    Let me know if you have any further issues.

    Regards,
    Tikaram

    in reply to: Featured Slider Images – Title font issues #124227
    tikaram
    Participant

    @mykul0rr : Welcome and have a Good day.

    Regards,
    Tikaram

    in reply to: Changed font size in featured slider for mobile use #124226
    tikaram
    Participant

    @dsm: Glad to know that the issue has been resolved. Have a Good day.

    Regards,
    Tikaram

    in reply to: Mobile view – all posts expanded, menu expanded also #124225
    tikaram
    Participant

    @escapist : Glad to know that the issue has been solved. Have a Good day

    Regards,
    Tikaram

    in reply to: Portfolio's page template #124195
    tikaram
    Participant

    @infonet : Glad to know that the issue has been solved. Might be helpful for someone looking for similar kind of solution.

    Regards,
    Tikaram

    in reply to: Center Responsive Logo & Post Information #124194
    tikaram
    Participant

    @contentchampion : I suggest you not to use the width in pixels because you will loose the responsive design of the site.

    Add the following additional css for the mobile menu

    #menu-toggle-primary {
    	color: #fff;
    	margin-bottom: 10px;
    }

    The scroller timing cannot be change from the customizer. You will need to create a child theme and customize your site as required. Alternatively, You may hire customizer to get your site customized.
    Let me know if you need further assistance.

    Regards,
    Tikaram

    tikaram
    Participant

    @edmelendez : Go to Appearance => Customize => Additional css and add the following css.

    .edd-add-to-cart.button,
    .edd_go_to_checkout.button,
    .edd-submit.button {
    letter-spacing: unset;
       text-transform: unset;
    padding: 6px 12px;
    }

    Let me know if you need further assitance.

    Regards,
    Tikaram

    in reply to: the sub menus freezing #124190
    tikaram
    Participant

    @issadaibes : Please post in your site URl.

    Regards,
    Tikaram

    in reply to: update to new version #124189
    tikaram
    Participant

    @issadaibes : Are you using Catch Updater? If not, please follow the instruction below:
    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/theme-instructions/catch-everest-pro/#updating

    Regards,
    Tikaram

    in reply to: 3.9 Major Update | What is Enhanced HTML Structure? #124184
    tikaram
    Participant

    @jcsuomi : Previously we used multiple <h1>tags on pages and now that has been restructured and we are using multiple tags like (<h2>, <h3>, <h4>)instead of <h1> tag. Let me know if you have any more theme related issues.

    Regards,
    Tikaram

    in reply to: Mobile view – all posts expanded, menu expanded also #124180
    tikaram
    Participant

    The issue is due to mobile theme activated in Jetpack settings, You will need to disable it.
    Go to Jetpack => Settings => Writing tab and scroll down to the Theme Enhancements and the “Optimize your site for smartphones” option and turn that off.
    Let me know if you need further assistance.

    Regards,
    Tikaram

Viewing 20 posts - 3,421 through 3,440 (of 4,116 total)