Viewing 20 results - 501 through 520 (of 2,398 total)
  • Author
    Search Results
  • #114955

    In reply to: Setup Rock Star Pro

    Mahesh
    Participant

    @maddogcharly: Thank you for using Rock Star Pro theme. Well, its quite simple to make your site look like demo. Featured Slider is enabled by default so no problem on that. Then the Tours and Video section are from the widgets CT: Tours and CT: Video Embed widgets respectively. Go to Dashboard=> Appearance=> Widgets and place your desired widget in your desired widget area. After that is the Featured Content. Go to Dashboard=> Appearance=> Customize=> Featured Content, select Homepage/Frontpage or Entire Site in Enable Featured Content on option.
    Hope this helps. Let me know if any problem.

    Marius
    Participant

    No I mean generally (this will depend on my client, and for me just to be prepared), if I can change the actually defined order of the front page slider elements like for example: Logo Slider before Hero content or Featured content after header Highlight content (the actual order is Featured Slider then Hero Content etc.)… Best Regards Marius

    Mahesh
    Participant

    @mariustodor: Seem I understood something else, nevermind. So you mean to change the position of Featured Slider? Where do you want put it? Let me know further.

    Regards,
    Mahesh

    Marius
    Participant

    Hi Mahesh,

    please excuse my misleading question. My issue is not to change the order within, for example the featured slider.
    What I meant, is to change the order of the sliders themselves on the front page. For example to have the featured content or whatever before logo slider etc. Hope I could make it clearer now and thank you for your efforts.

    Best regards

    Marius

    Mahesh
    Participant

    @mariustodor: Reorder it manually means, suppose you are using Featured Page Slider and you have two slides.
    1. About
    2. My Sample Page
    Then select My Sample Page on first and then About on the second, this will reorder the Slider’s order.
    Hope you understand.

    Go to Dashboard=> Appearance=> Customize=> Theme Options=> Layout Options and select Disabled in Single Page/Post Image Layout option.

    Regards,
    Mahesh

    #114633
    Mahesh
    Participant

    novaglenn: Go to Dashbaord=> Appearance=> Customize=> Featured Slider and put the desired number of slider you want, then click Save & Publish. Then refresh the custoimzer page. Again go to Dashbaord=> Appearance=> Customize=> Featured Slider, now you’ll see more options. Then select the sliders as per required. Hope this helps. Let me know if any problem.

    Regards,
    Mahesh

    #114631
    Mahesh
    Participant

    @sumiko: Full Frame free version only has Featured Page Slider which allows you to set page as featured slider. In this option, you can select certain pages and the slider will link to that particular page (and cannot me modified). On Full Frame Pro you will have Custom Featured Slider option with which you can modify image, title, content and link of your choice. As per your requirement, Custom Featured Slider will help you have it. I recommend you to upgrade to Pro.
    And to remove excerpt, this can be done with Custom CSS. Go to Dashbaord=> Appearance=> Customize=> Additional CSS box and add the following CSS:

    #feature-slider .entry-content {
        display: none;
    }

    Regards,
    Mahesh

    Mahesh
    Participant

    @mariustodor: You can use different header image for different page\post. You must set featured image for those pages or posts and it will display the very image. In case of pages or posts with no featured images, uses the default header image.
    For that, go to Dashboard=> Appearance=> Customize=> Header Image and select Entire Site, Page/Post Featured Image in Enable Featured Header Image on option.

    No, there is not options to change the order of the slider, you have to set it manually in customizer setting.

    Regards,
    Mahesh

    #114613
    Mahesh
    Participant

    @ron66; I’ve checked your site. You have the images of almost similar dimension. The second one seem to be little small than the other three. And the design issue is more because of long title than the image itself. You have long title on first one and the short on the second, causing the change of the position of the text and image in the featured slider resulting in the design issue. Height for the featured content is not fixed, so it changes with the content text, causing the design issue. Its upto the content to be put the keep the design as it is. Hope you understand.

    Regards,
    Mahesh

    Mahesh
    Participant

    @webrightcaid: The entry container within the featured slider is already at the bottom please clarify. For changing opacity, go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:

    #feature-slider .entry-container {
        background: rgba(0, 0, 0, 0.4);
    }

    Note: Please adjust the opacity as required. Please change the last property in the above (range: 0.0 to 1.0)

    Regards,
    Mahesh

    #114322

    In reply to: Change font weight

    Mahesh
    Participant

    @jennifersimsdesign-com-au: Go to Dashbaord=> Appearance= Customize=> Additional CSS box and add the following CSS:

    #feature-slider .entry-title, 
    #primary .entry-content h3, .blog .entry-title, .archive .entry-title, 
    #secondary .widget-title, .widget_fabulous_fluid_page_widget .entry-title, .widget_fabulous_fluid_post_widget .entry-title, 
    #per-slide-template h2,
    #featured-content .featured-content-wrap .entry-title {
        font-weight: 300;
    }

    Regards,
    Mahesh

    #113984
    [email protected]
    Participant

    Hi Mahesh

    it’s not slider image i want full width it’s the featured images please.

    Both websites i mentioned are built in catch responsive free theme.

    Featured images on creativesigns.uk.com are full width but not full width on ashbeckcaravanservices.co.uk

    So how do i make the images full width on ashbeckcaravanservices.co.uk
    I’m obviously missing a setting that i set on the creativesigns.uk.com site

    Many thanks
    Karen

    #113897
    Mahesh
    Participant

    @wouwonline: For that, you’ll need to create child theme. You can find more details on creating child theme HERE. Then copy index.php from main theme to your child theme and add the following code just above </div><!-- #content --> after <?php endif; ?>

    <?php do_action( 'catchevolution_child_after_content' ); ?>

    Then add the following code in your child theme’s functions.php

    function catchevolution_slider_display() {
    	global $post, $wp_query, $catchevolution_options_settings;
    
    	// get data value from theme options
    	$options = $catchevolution_options_settings;
    	$enableslider = $options['enable_slider'];
    	$sliderselect = $options['select_slider_type'];
    	$sliderlayout = $options['select_slider_layout'];
    
    	// Front page displays in Reading Settings
    	$page_on_front = get_option('page_on_front') ;
    	$page_for_posts = get_option('page_for_posts');
    
    	// Get Page ID outside Loop
    	$page_id = $wp_query->get_queried_object_id();
    
    	if ( ( 'enable-slider-allpage' == $enableslider ) || ( ( is_front_page() || ( is_home() && $page_id != $page_for_posts ) ) && 'enable-slider-homepage' == $enableslider ) ) :
    
    		// Select Slider
    		if ( $sliderselect =='image-slider' && !empty( $options['featured_image_slider_image'] ) && $sliderlayout =='fullwidth' && function_exists( 'catchevolution_imagesliders' ) ) {
    			add_action( 'catchevolution_after_contentsidebarwrap', 'catchevolution_imagesliders', 10 );
    		}
    		elseif ( $sliderselect =='post-slider' && !empty( $options['featured_slider'] ) && $sliderlayout =='fullwidth' && function_exists( 'catchevolution_sliders' ) ) {
    			add_action( 'catchevolution_after_contentsidebarwrap', 'catchevolution_sliders', 10 );
    		}
    		elseif ( $sliderselect =='page-slider' && !empty( $options['featured_slider_page'] ) && $sliderlayout =='fullwidth' && function_exists( 'catchevolution_page_sliders' ) ) {
    			add_action( 'catchevolution_after_contentsidebarwrap', 'catchevolution_page_sliders', 10 );
    		}
    		elseif ( $sliderselect =='category-slider' && !empty( $options['slider_category'] ) && $sliderlayout =='fullwidth' && function_exists( 'catchevolution_category_sliders' ) ) {
    			add_action( 'catchevolution_after_contentsidebarwrap', 'catchevolution_category_sliders', 10 );
    		}
    		elseif ( $sliderselect =='image-slider' && !empty( $options['featured_image_slider_image'] ) && function_exists( 'catchevolution_imagesliders' ) ) {
    			add_action( 'catchevolution_child_after_content', 'catchevolution_imagesliders', 10 );
    		}
    		elseif ( 'post-slider' == $sliderselect && !empty( $options['featured_slider'] ) && function_exists( 'catchevolution_sliders' ) ) {
    			add_action( 'catchevolution_child_after_content', 'catchevolution_sliders', 10 );
    		}
    		elseif ( $sliderselect =='page-slider' && !empty( $options['featured_slider_page'] ) && function_exists( 'catchevolution_page_sliders' ) ) {
    			add_action( 'catchevolution_child_after_content', 'catchevolution_page_sliders', 10 );
    		}
    		elseif ( 'category-slider' == $sliderselect && function_exists( 'catchevolution_category_sliders' ) ) {
    			add_action( 'catchevolution_child_after_content', 'catchevolution_category_sliders', 10 );
    		}
    		else {
    			add_action( 'catchevolution_child_after_content', 'catchevolution_default_sliders', 10 );
    		}
    
    	endif;
    }

    Then go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:

    .content-sidebar-wrap {
        clear: both;
        content: " ";
        display: inline-block;
    }

    Regards,
    Mahesh

    #113577

    In reply to: Various questions

    Mahesh
    Participant

    @hellanathorst:
    Static image instead of slideshow*
    You can use Header Image for this. Go to Dashboard=> Appearance=> Customize=> Header Image and select your desired image then Homepage\Frontpage option in Enable Featured Header Image on. Then disable the slider.
    OR
    If you only want to remove the dot, go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:

    #feature-slider .cycle-pager {
        display: none;
    }

    Menu header covers banner image
    Add the following CSS:

    #feature-slider, #header-featured-image {
        margin-top: 0;
    }

    Menu header stops being transparent when you set a custom color
    Add the following CSS:

    #fixed-header .nav-primary {
        background-color: rgba(130, 122, 144, 0.7);
    }

    Search item icon
    Don’t understand what you mean. I only see the menu icon. And it for the header toggle that includes the search.

    Footer not at bottom of page
    Add the following CSS:

    html,
    body {
        height:100%;
    }
    
    .page {
        min-height:100%;
        position:relative;
    }
    
    #colophon {
        width:100%;
        position:absolute;
        bottom:0;
        left:0;
    }

    Blog page picture stays default
    Do you mean the image on the top? Except front page and blog page, setting Header image Enable Featured Header Image on to Entire Site, Page/Post Featured Image will display set the header image as you set the featured image, for both posts and pages. To change that for blog page, you’ll need to customize further.

    Div function and responsiveness
    You’ll need some CSS customization for that. See the section below the content (Hälsa, Hudvård, I hemmet).

    Regards,
    Mahesh

    #113572
    controluce
    Participant

    Hi Sakin, I have this problem with Catch Theme Base: I’ve set the featured image for my page and the slider works, but this is the problem: in the destination page (I don’t know how to better explain with my poor English) you can see two identical images and that’s a ridiculuos effect. You can check here:
    http://www.tommasogiorgetti.it

    There’s just one slider image. Click that image and you’ll see!

    Thanks a lot!

    #113553

    In reply to: Excerpt Options

    Mahesh
    Participant

    @jamesmillerlifeology: Showing excerpt in blog posts and not in Featured Slider is possible. Go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:

    #feature-slider .entry-content {
        display: none;
    }

    For displaying different text in different section, you’ll need to customize the theme further through child theme. You can find more details on creating child theme HERE. I recommend you to hire a customizer.

    Regards,
    Mahesh

    Anca
    Participant

    Hi Sakin and thank you for your answer.
    I created the child theme with the plugin you suggested, activated and added your code in the functions.php file. After saving I got HTTP ERROR 500.
    The content of the file is currently below (now the code you gave me is put as comment). Where did I got wrong?

    <?php
    //
    // Recommended way to include parent theme styles.
    // (Please see http://codex.wordpress.org/Child_Themes#How_to_Create_a_Child_Theme)
    //
    add_action( ‘wp_enqueue_scripts’, ‘theme_enqueue_styles’ );
    function theme_enqueue_styles() {
    wp_enqueue_style( ‘parent-style’, get_template_directory_uri() . ‘/style.css’ );
    wp_enqueue_style( ‘child-style’,
    get_stylesheet_directory_uri() . ‘/style.css’,
    array(‘parent-style’)
    );
    }
    //
    // Your code goes below
    //
    //if ( ! function_exists( 'adventurous_poly_invalidcache' ) )

    /**
    * Template for Clearing Polylang Invalid Cache
    */
    /*
    function adventurous_poly_invalidcache() {
    delete_transient( 'adventurous_post_sliders' );
    delete_transient( 'adventurous_page_sliders' );
    delete_transient( 'adventurous_category_sliders' );
    delete_transient( 'adventurous_image_sliders' );
    delete_transient( 'adventurous_homepage_headline' );
    delete_transient( 'adventurous_homepage_featured_content' );
    delete_transient( 'adventurous_footer_content' );
    delete_transient( 'adventurous_footercode' );
    delete_transient( 'adventurous_featured_image' );

    } // adventurous_wpml_invalidcache
    */
    #endif;

    #add_action( 'after_setup_theme', 'adventurous_poly_invalidcache' );

    #113506
    francesca78
    Participant

    Dear @Mahesh, please can you tell me the code also to highlight the text on featured post slider ?

    thanks

    #113493
    Mahesh
    Participant

    @infocommunitypartnersnh-org: Go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:

    #slider .featured-text {
        display: none;
    }

    Regards,
    Mahesh

    #113448
    Pratik
    Participant

    Hi @guyshahar,

    Please see the theme instructions: https://catchthemes.com/theme-instructions/full-frame/#featured-slider-content.

    Let me know how it goes.

    Regards,
    Pratik

Viewing 20 results - 501 through 520 (of 2,398 total)