Forum Replies Created

Viewing 20 posts - 3,081 through 3,100 (of 4,888 total)
  • Author
    Posts
  • in reply to: Where are slider images/text edited? #96966
    Mahesh
    Member

    @uliu: No, the slider use the same images for the entire site, the difference is you can add custom images and content independent of Posts or Pages.

    Regards,
    Mahesh

    in reply to: Updating Catch Responsive Pro #96965
    Mahesh
    Member

    @petermilliken: Please use Catch Web Tools plugin’s Catch Updater module to update the theme. You can find the video tutorial for the plugin in the link below:
    https://www.youtube.com/watch?v=W95SuabDZi8

    Hope this helps.

    Regards,
    Mahesh

    in reply to: Problems adding links to other web pages #96964
    Mahesh
    Member

    @helpme: That works fine too. Its kinda strange that its not working. Have you tried switching the theme to default WordPress theme and do the same. Please try it and let me know further.

    Regards,
    Mahesh

    in reply to: New update #96963
    Mahesh
    Member

    @zerolizer0: Thank you for your appreciation. Have a nice day!

    Regards,
    Mahesh

    in reply to: Featured Image Slider #96962
    Mahesh
    Member

    @rheja:
    Hi Jap,

    Glad to know you’ve found the solution yourself. This might help others too who are having the same issue. Thank you for your appreciation. Have a nice day!

    Regards,
    Mahesh

    in reply to: Featured Image Slider #96886
    Mahesh
    Member

    @rheja:
    Hi Jap:

    I checked the child theme with Polylang and it seems to be working fine. If you have posts in that language and if that posts are showing in the language page, its displays fine.

    Regards,
    Mahesh

    in reply to: Size of header image #96884
    Mahesh
    Member

    @compyfox:
    Hi Winfried,

    Thank you for using Parallax Frame Pro. Yes the recommended image size for header image is 1680 x 720. And if you do upload the image of exact size, same image size will be used. But you have to make sure that while uploading image, you have to click Skip Cropping option not Crop.
    Hope this helps.

    Regards,
    Mahesh

    in reply to: Featured Image Slider #96881
    Mahesh
    Member

    @rheja: Sorry that was mistake while I copied, no you don’t need that. I’m glad that you found the issue and resolve is yourself.
    If you use child theme, yes you’ll need to configure the settings again. Or may be use some plugins to do so.
    Have a nice day!

    Regards,
    Mahesh

    in reply to: Where are slider images/text edited? #96860
    Mahesh
    Member

    @uliu: Clean Business theme has two types of slider,
    1. Demo Featured Slider : Content / Images cannot be edited
    2. Featured Page Slider : Displays Pages content and Featured Image as Slider. (The content you put in page will be displayed here).
    Clean Business Free version is limited to these two options. If you want to have custom Image, Content and Links, I recommend you to upgrade to Pro version. There is already Featured Image Slider option in Pro version.
    https://catchthemes.com/themes/clean-business-pro/

    Regards,
    Mahesh

    in reply to: Featured Image Slider #96859
    Mahesh
    Member

    @rheja:
    Hi Jap,

    For this, you’ll need to create a child theme. You can find more on creating child theme HERE. Then in you child theme’s functions.php add the following codes:

    function fullframe_featured_slider() {
    	global $post, $wp_query;
    	//fullframe_flush_transients();
    	// get data value from options
    	$options 		= fullframe_get_theme_options();
    	$enableslider 	= $options['featured_slider_option'];
    	$sliderselect 	= $options['featured_slider_type'];
    	$imageloader	= isset ( $options['featured_slider_image_loader'] ) ? $options['featured_slider_image_loader'] : 'true';
    
    	// Get Page ID outside Loop
    	$page_id = $wp_query->get_queried_object_id();
    
    	// Front page displays in Reading Settings
    	$page_on_front = get_option('page_on_front') ;
    	$page_for_posts = get_option('page_for_posts');
    
    	if ( $enableslider == 'entire-site' || ( ( is_front_page() || ( is_home() && $page_for_posts != $page_id ) ) && $enableslider == 'homepage' ) ) {
    		if( ( !$fullframe_featured_slider = get_transient( 'fullframe_featured_slider' ) ) ) {
    			echo '<!-- refreshing cache -->';
    
    			$fullframe_featured_slider = '
    				<section id="feature-slider">
    					<div class="wrapper">
    						<div class="cycle-slideshow"
    						    data-cycle-log="false"
    						    data-cycle-pause-on-hover="true"
    						    data-cycle-swipe="true"
    						    data-cycle-random="true"
    						    data-cycle-auto-height=container
    						     data-cycle-fx="'. esc_attr( $options['featured_slide_transition_effect'] ) .'"
    							data-cycle-speed="'. esc_attr( $options['featured_slide_transition_length'] ) * 1000 .'"
    							data-cycle-timeout="'. esc_attr( $options['featured_slide_transition_delay'] ) * 1000 .'"
    							data-cycle-loader="'. esc_attr( $imageloader ) .'"
    							data-cycle-slides="> article"
    							>
    
    						    <!-- prev/next links -->
    						    <div class="cycle-prev"></div>
    						    <div class="cycle-next"></div>
    
    						    <!-- empty element for pager links -->
    	    					<div class="cycle-pager"></div>';
    
    							// Select Slider
    							if ( $sliderselect == 'demo-featured-slider' && function_exists( 'fullframe_demo_slider' ) ) {
    								$fullframe_featured_slider .=  fullframe_demo_slider( $options );
    							}
    							else if ( $sliderselect == 'featured-post-slider' && function_exists( 'fullframe_post_slider' ) ) {
    								$fullframe_featured_slider .=  fullframe_post_slider( $options );
    							}
    							elseif ( $sliderselect == 'featured-page-slider' && function_exists( 'fullframe_page_slider' ) ) {
    								$fullframe_featured_slider .=  fullframe_page_slider( $options );
    							}
    							elseif ( $sliderselect == 'featured-category-slider' && function_exists( 'fullframe_category_slider' ) ) {
    								$fullframe_featured_slider .=  fullframe_category_slider( $options );
    							}
    							elseif ( $sliderselect == 'featured-image-slider' && function_exists( 'fullframe_image_slider' ) ) {
    								$fullframe_featured_slider .=  fullframe_image_slider( $options );
    							}
    
    			$fullframe_featured_slider .= '
    						</div><!-- .cycle-slideshow -->
    					</div><!-- .wrapper -->
    				</section><!-- #feature-slider -->';
    
    			set_transient( 'fullframe_featured_slider', $fullframe_featured_slider, 86940 );
    		}
    		echo $fullframe_featured_slider;
    	}
    }
    

    Regards,
    Mahesh

    in reply to: Remove sidebar from category posts page #96855
    Mahesh
    Member

    @janetwad: Please post in your site URL and please mention for which category of posts do you want this?

    Regards,
    Mahesh

    in reply to: New update #96854
    Mahesh
    Member

    @zerolizer0:
    Hi Casper:

    Please check this link:
    https://catchthemes.com/changelogs/adventurous-pro-theme/

    Regards,
    Mahesh

    in reply to: Problems adding links to other web pages #96849
    Mahesh
    Member

    @helpme: Did you put the link in the following format?
    <a href="some_link_to_QVC">QVC</a> should have worked fine as the link for Greenworks is working. Do you get any error or something? Try changing the theme to default WordPress theme and try to do the same and check if it works.

    Regards,
    Mahesh

    in reply to: Select Featured Content #96848
    Mahesh
    Member

    @rollik: Thank you for your appreciation. Have a nice day!

    Regards,
    Mahesh

    in reply to: Blog/ Posts Page Appearance #96847
    Mahesh
    Member

    @nicolegariepy: Thank you for your appreciation. Have a nice day!

    Regards,
    Mahesh

    in reply to: resize logo in header #96846
    Mahesh
    Member

    @luci1708: Thank you for your appreciation. Have a nice day!

    Regards,
    Mahesh

    in reply to: Sidebar on only one page #96800
    Mahesh
    Member

    @sarahf: You can use different layout for different pages. For that go to Add/Edit Page you want to change layout. Then scroll down to Catch Box Options and select your desired option (No Sidebar) in Sidebar Layout Options and then click Publish/Update.

    Note: Same can be done with Posts too.
    Let me know if any problem.

    Regards,
    Mahesh

    in reply to: Catch Box Theme: Remove Header Padding/Margins #96797
    Mahesh
    Member

    @sarahf: Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    #site-generator .powered {
        display: none;
    }

    Regards,
    Mahesh

    in reply to: Select Featured Content #96796
    Mahesh
    Member

    @rollik: You can do that with Custom CSS. Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    .home #content {
        display: none;
    }

    Let me know if any problem.

    Regards,
    Mahesh

    in reply to: Link in the footer #96795
    Mahesh
    Member

    @mayapour: The code is working fine. May be cache/transient problem. Please uncomment //catchresponsive_flush_transients(); line in the above code and check again. Please comment the line again.

    Regards,
    Mahesh

Viewing 20 posts - 3,081 through 3,100 (of 4,888 total)