Viewing 20 results - 641 through 660 (of 2,398 total)
  • Author
    Search Results
  • #98863
    Mahesh
    Participant

    @husker: For that, edit the file in inc/customizer-includes/catchresponsive-customizer-featured-slider.php then go to line 171 and change Max no of slides is 20 to your desired number, this is the description text. Change line 175 'max' => 20 to your desired number of slider. This is the actual number of slides.
    Let me know if any problem.

    Regards,
    Mahesh

    #98856

    In reply to: Featured image slider

    Mahesh
    Participant

    @vetroartefatto: Seems you have currently enabled the slider in Homepage only, there is another option Entire Site, which will display Featured Slider in all pages. If this is whot you mean, go to Dashboard=> Appearance=> Customize=> Featured Slider=> Slider Options and select Entire Site option in Enable Slider drop-down. The one currently displaying is the page’s featured image as Header Image.
    Let me know if any problem.

    Regards,
    Mahesh

    #98819

    In reply to: Request dummy file

    Mahesh
    Participant

    @bono1987: Our themes doesn’t have the dummy data, the theme is already provided with the Demo Data in all the features such as Featured Slider, Featured Content etc. For that either use Reset in Dashboard=> Customize=> Reset All Settings or choose demo data in relevant features.
    If you want Dummy pages or post data please refer to the link below:
    https://codex.wordpress.org/Theme_Unit_Test
    Note: While resetting the theme setting, you may see Invalid error, however, the functionality works fine. This error will be fixed in the next theme update.

    Regards,
    Mahesh

    #98816
    Mahesh
    Participant

    @husker: Aww, sorry about that. Okay, if you want to have more than 20 sliders, you’ll need to modify some code. The simplest way (not-recommended) to do is just edit the core theme file and increase the number. Since, while updating, you’ll lose the changes, you’ll need to make sure you do this change every-time you update the theme.
    Other way is really tricky one, you’ll need to remove the current control and add a new one. Please add the following codes in you child theme’s functions.php:

    function catchresponsive_child_customize_register( $wp_customize ) {
    	$wp_customize->remove_control( 'catchresponsive_theme_options[featured_slide_number]' );
    	$wp_customize->add_control( 'catchresponsive_theme_options[featured_slide_number]' , array(
    		'active_callback'	=> 'catchresponsive_is_demo_slider_inactive',
    		'description'		=> __( 'Save and refresh the page if No. of Slides is changed (Max no of slides is 25)', 'catch-responsive' ),
    		'input_attrs' 		=> array(
    						            'style' => 'width: 45px;',
    						            'min'   => 0,
    						            'max'   => 25,
    						            'step'  => 1,
    						        	),
    		'label'    			=> __( 'No of Slides', 'catch-responsive' ),
    		'priority'			=> '2.1.4',
    		'section'  			=> 'catchresponsive_featured_slider',
    		'settings' 			=> 'catchresponsive_theme_options[featured_slide_number]',
    		'type'	   			=> 'number',
    		)
    	);
    }
    
    function child_customzier() {
        add_action( 'customize_register', 'catchresponsive_child_customize_register' );
    }
    add_action('init', 'child_customzier');

    Note: This will make max-number of slides to 25, you can adjust it to your desired number in by changing the max value in the above code.

    Regards,
    Mahesh

    #98788
    trip2day
    Participant

    Fantastic @Mahesh, many many thanks for your support!

    The (I hope :D) last questions:

    Is it possible for you to give me a CSS code that changes the text in the box “Read more” in the featured slider (not in the posts preview) to “See more deals…” ??

    Would be very very appreciated šŸ™‚

    #98765
    Mahesh
    Participant

    @trip2day: Thank you for using and liking our theme. Fabulous Fluid Free version has limited options. Featured Slider is limited to Demo Slider and Featured Page Slider which only allows you to link to the page. For custom Featured Slider, I recommend you to upgrade to Fabulous Fluid Pro. Pro version has Featured Image Slider option with which you can put custom image, content, title and link in the slider.

    Regards,
    Mahesh

    #98751
    Mahesh
    Participant

    @phillycontemporary: Do you mean to display Featured Slider in single Posts page only and not in single pages or any other pages? Let me know further.

    Regards,
    Mahesh

    #98713
    Pratik
    Participant

    Hi @Raul,

    Please follow instructions here: https://catchthemes.com/theme-instructions/rock-star-pro/#featured-slider

    Let me know if you run into problems.

    Regards,
    Pratik

    #98653
    phillycontemporary
    Participant

    Just kidding! I did not solve it with get_option(ā€˜page_for_posts’)… let me know how I can specify the posts page as the only page for the featured slider.

    Thanks!

    #98486
    phillycontemporary
    Participant

    I’ve taken out the wrong code and put in the new CSS you provided, however when I activate the featured slider for the entire site, the slider is still visible on every page.

    I’m using the featured image slider in the featured slider options. Would that make a difference?

    Thank you,

    #98365
    phillycontemporary
    Participant

    Hi,

    Hmm, I put the code in and I don’t see a change..

    I activated the featured slider for the entire site and put your code into my child theme style sheet. I’m still getting the featured slider on all of my pages. Do I need to ‘disable’ the slider on individual pages in the page layout options?

    Mahesh
    Participant

    @phillycontemporary: I’ve replied to this in the other thread. Please refer to that.
    https://catchthemes.com/support-forum/topic/featured-image-slider-on-a-single-page/#post-98283
    You can continue reply on this thread.

    Regards,
    Mahesh

    #98228
    Mahesh
    Participant

    @karlcurrentsnj-com: I did set the code into the custom CSS and it said, ā€œCheating Huh?ā€ Your are not allowed to customize this site. I don’t understand how this came upon.
    And yes, now I get which slider you really meant, sorry.
    It seems that you have selected Featured Post Content, but for some reasons, no posts are being displayed. Have you put the Post id in the Customizer’s Featured Post # option.
    Please check and let me know further.

    Regards,
    Mahesh

    #98178
    Stephanie
    Participant

    Hi Mahesh, I did set the code into the custom CSS and it said, “Cheating Huh?” Your are not allowed to customize this site.

    Also, I’m pretty sure that we’re talking about separate things. I said featured slider, but the I’m really referring to the Featured “content” slider which is available on the site. I want to try to get the posts under the secondary menu and main slider to appear horizontally and scroll left or right. this is a feature that is used on the main Full Frame theme demo.

    Right now, the posts are running vertically up down the page.

    Please provide a little more help on both topics.

    #98147
    Mahesh
    Participant

    @imboliboli: I checked your site, seems you haven’t enabled the Feature Content that’s why nothing is showing. Go to Dashboard=> Appearance=> Customize=> Featured Content=> Featured Content Options and select Homepage/Frontpage option in Enable Featured Content on dropdown Below Content option in Featured Content Position drop-down.

    For smaller slider, go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following:

    #feature-slider, 
    #feature-slider .wrapper, 
    #feature-slider .cycle-slideshow {
        margin: 0 auto;
        width: 80%;
    }

    Hope this helps.

    Regards,
    Mahesh

    #98145
    Mahesh
    Participant

    @karlcurrentsnj-com: I checked your site and the Featured Slider seems to be working fine.
    To remove the date and comments on my posts, go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS:

    #main .entry-meta {
        display: none;
    }

    Let me know further.

    Regards,
    Mahesh

    #98143
    Mahesh
    Participant

    @phillycontemporary: The color options is built-in in Pro version. I recommend you to upgrade to Pro. But if you want it in Free version anyway, it can be done with Custom CSS. Go to Dashboard=> Apperance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    /* blue box behind the search bar icon on the top menu */
    .site-header .social-networks li .fa-search {
        background-color: #ffff00;
    }
    
    /* blue hover color on the ā€˜Read More’ button on the featured Image slider */
    #feature-slider .more:hover {
        background-color: #00a3e6;
        border-color: #00a3e6;
        color: #fff;
        text-decoration: none;
    }
    
    /* blue color of all hyperlinks in page/post text */
    a {
        color: #00a3e6;
    }
    
    /* color of the footer navigational menu item text */
    .footer-b .footer-nav a {
        color: #ff00ff;
    }

    Note: Please change the colors as desired.

    Regards,
    Mahesh

    #98089
    phillycontemporary
    Participant

    H! One more question about the featured slider–

    Is it possible to change the hover color overlay of the slider thumbnails?

    Thank you and let me know!

    #98079
    yonghao
    Participant

    and also if there is a way to make the featured slider smaller.

    #98004
    phillycontemporary
    Participant

    Hi Mahesh,

    I put in the CSS for the individual page and nothing changed..

    Is it possible to have two different sliders– One on the homepage, and one on a separate page–Both with different featured pages?

    Thank you for all your help! I know I have a lot of questions…

Viewing 20 results - 641 through 660 (of 2,398 total)