Viewing 20 results - 641 through 660 (of 2,395 total)
  • Author
    Search Results
  • #98819

    In reply to: Request dummy file

    Mahesh
    Member

    @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
    Member

    @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
    Member

    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
    Member

    @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
    Member

    @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
    Member

    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

    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

    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

    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
    Member

    @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
    Member

    @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
    Member

    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
    Member

    @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
    Member

    @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
    Member

    @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

    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
    Member

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

    #98004

    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…

    #97940
    armando
    Member

    Hi Mahesh,
    I have an issue, I don´t want to show this text: <span class=¨readmore¨><ahref=¨http://revelacionesequinas.org/talleres/¨Leer Más…</span> on the featured slider, if you can help me remove it I’ll be more than happy. I would like just to show the image and just the box that say´s read more, in my case it’s says ¨leer más¨ because my site is in spanish.
    Thank you very much for your time

    #97930
    Mahesh
    Member

    @ddk: Sorry for the confusion but we recommend you to use the customizer instead of theme options as it is easy to use and you can also see the live preview. So for adding Slider, go to Dashboard=> Appearance=> Customize=> Featured Slider=> Slider Option and choose which ever slider type you were using before and follow along. (make sure it is enabled)
    Please do the same for Featured Content, go to Dashboard=> Appearance=> Customize=> Theme Options=> Homepage Featured Content and select Homepage/Front page or Entire site as per you desire in Enable Content drop-down option. Then select you desired Featured Content Type and add up the images.
    I would like to help you further if you need any. Let me know if any problem. Sorry for the trouble.

    Regards,
    Mahesh

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