Forum Replies Created

Viewing 20 posts - 7,121 through 7,140 (of 12,027 total)
  • Author
    Posts
  • in reply to: Mobile #186676
    Skandha
    Participant

    @lifestyle-elements: Hello there,
    The desktop version seems to be displaying fine on the mobile. Can you let me know why have you create a separate mobile version?

    Kind Regards,
    Skandha

    Skandha
    Participant

    @mmcgibbony: Hello there,
    Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    /* To change color of slider subtitle */
    #slideshow .subtitle {
        color: #000;
    }
    
    /* To change text and border color of slider button */
    .roll-button.border.button-slider {
        color: #000;
        border-color: #000;
    }
    
    /* To change color of menu text */
    #mainnav ul li a {
        color: #000;
    }

    Let me know if this works out!
    Kind Regards,
    Skandha

    in reply to: Header Media Logo #186655
    Skandha
    Participant

    @thomathyentertainment: Hello there,
    Can you please insert a Header Media Logo on your site so that I can look into the issue.

    Kind Regards,
    Skandha

    in reply to: Social icons #186654
    Skandha
    Participant

    @svenmagnus: Hello Sven,
    Please follow the instruction in this link.

    Let me know if this helps you out!
    Kind Regards,
    Skandha

    in reply to: Comment Edit Fields resp. Color Management a. o. #186653
    Skandha
    Participant

    @zoemobil: Hello there,

    1.
    Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    textarea {
         color: #444 !important; 
    }

    2. There seems to be an issue with the label. The issue will be fixed and an update will be released soon. I will let you know when the update is released.

    3. For the caption color
    Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    #caption-attachment-3316 {
        color: #fff;
    }

    Let me know if this helps you out!
    Kind Regards,
    Skandha

    in reply to: different sidebars on pages #186652
    Skandha
    Participant

    @jettisoned: The option to have different sidebars in different pages is only available in pro version of the theme. I suggest you to upgrade to pro. You can check out the additional-features available in pro version of the theme.

    Kind Regards,
    Skandha

    in reply to: Header Image – Image rotation Catchbox pro #186613
    Skandha
    Participant

    @rdangel07: Hello Ralf,
    Firstly you will need to create a child theme. You can use our Generate Child Theme plugin to create a child theme. Install and Activate the plugin.
    Now,
    Go to => Dashboard => Generate Child Theme => Select Parent Theme as Catch Box Pro, fill the remaining fields and Click Generate. This will create and activate the child theme.

    Now Go to => Child Theme Folder => functions.php and add the following Code.

    function catchbox_slider_display() {
    	global $wp_query;
    
    	$options  = catchbox_get_options();
    
    	$enableslider = $options['enable_slider'];
    	$sliderselect = $options['select_slider_type'];
    	$sliderlayout = $options['select_slider_layout'];
    
    	// 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 ( ( 'enable-slider-allpage' == $enableslider ) || ( ( is_front_page() || ( is_home() && $page_id != $page_for_posts ) ) && 'enable-slider-homepage' == $enableslider ) ) :
    
    		// Select Slider
    		if ( $sliderselect =='image-slider' && $sliderlayout =='fullwidth' && function_exists( 'catchbox_imagesliders' ) ) {
    			add_action( 'catchbox_before_headercontent', 'catchbox_imagesliders', 10 );
    		}
    		elseif ( $sliderselect =='post-slider' && $sliderlayout =='fullwidth' && function_exists( 'catchbox_sliders' ) ) {
    			add_action( 'catchbox_before_headercontent', 'catchbox_sliders', 10 );
    		}
    		elseif ( $sliderselect =='page-slider' && $sliderlayout =='fullwidth' && function_exists( 'catchbox_page_sliders' ) ) {
    			add_action( 'catchbox_before_headercontent', 'catchbox_page_sliders', 10 );
    		}
    		elseif ( $sliderselect =='category-slider' && $sliderlayout =='fullwidth' && function_exists( 'catchbox_category_sliders' ) ) {
    			add_action( 'catchbox_before_headercontent', 'catchbox_category_sliders', 10 );
    		}
    		elseif ( $sliderselect =='image-slider' && function_exists( 'catchbox_imagesliders' ) ) {
    			add_action( 'catchbox_before_headercontent', 'catchbox_imagesliders', 10 );
    		}
    		elseif ( 'post-slider' == $sliderselect && function_exists( 'catchbox_sliders' ) ) {
    			add_action( 'catchbox_before_headercontent', 'catchbox_sliders', 10 );
    		}
    		elseif ( $sliderselect =='page-slider' && function_exists( 'catchbox_page_sliders' ) ) {
    			add_action( 'catchbox_before_headercontent', 'catchbox_page_sliders', 10 );
    		}
    		elseif ( 'category-slider' == $sliderselect && function_exists( 'catchbox_category_sliders' ) ) {
    			add_action( 'catchbox_before_headercontent', 'catchbox_category_sliders', 10 );
    		}
    
    	endif;
    
    }

    When you enable the slider now, it should show up where the Header Image shows up.
    Let me know if this works out!
    Kind Regards,
    Skandha

    in reply to: cannot install theme #186280
    Skandha
    Participant

    @kuangli0409: Hello there,
    Please follow this link to solve error 500 problem.

    Let me know if the issue still persists!
    Kind Regards,
    Skandha

    in reply to: featured content options have vanished #186278
    Skandha
    Participant

    @thetravelgal: Hello Cindy,
    Glad I was able to help you out. Have a good day! 🙂

    Kind Regards,
    Skandha

    in reply to: Header Media Video #186277
    Skandha
    Participant

    @lucas-kellen: Hello there,
    I have sent you an email asking for you WP Admin Credentials. I will look into this issue as well.

    Kind Regards,
    Skandha

    in reply to: Feature Image Slider #186276
    Skandha
    Participant

    @fireflywebs: Hello there,
    Go to => Child theme folder => functions.php and add the following Code.

    function overriding_parent_code() {
    	add_action( 'lucida_after_header', 'lucida_featured_slider', 10 );
    	remove_action( 'lucida_before_content', 'lucida_featured_slider', 10 );	
    }
    add_action('after_setup_theme', 'overriding_parent_code');

    Let me know if this works out!
    Kind Regards,
    Skandha

    in reply to: Color issues #186274
    Skandha
    Participant

    @lucas-kellen: Hello there,
    I will need to look into your site to debug the issue. For that I will need your WP Admin Credentials. I will contact you shortly by email.

    Kind Regards,
    Skandha

    in reply to: Food Menu #186271
    Skandha
    Participant

    @kevinpat: Hello Kevin,
    Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    .menu-content-wrapper .entry-container {
          margin: 0 auto;
    }

    Let me know if this works out!
    Kind Regards,
    Skandha

    in reply to: Sidebar #186270
    Skandha
    Participant

    @toolbox: Hello there,
    I tried changing WooCommerce Layout at my end and the sidebar seems to be showing up well.
    Can you make sure you have published your customizer changes?

    Kind Regards,
    Skandha

    in reply to: cannot install theme #186269
    Skandha
    Participant

    @kuangli0409: Hello there,
    Can you try deactivating all your plugins and let me know if this resolves the issue?

    Let me know if the issue persists!
    Kind Regards,
    Skandha

    in reply to: Demo Content #186261
    Skandha
    Participant

    @reservehifi: Hello there, I hope I was able to help you out. If it’s not too much trouble, I have a quick request: could you please leave an honest review?
    https://wordpress.org/support/theme/audioman/reviews/#new-post
    Your review will help others know what to expect when they’re looking for the support I offer. Even a sentence or two would be hugely appreciated. Thanks, and if there’s anything else at all that I can do to help, don’t hesitate to let me know. Have a good day! 🙂

    Kind Regards,
    Skandha

    in reply to: Frontpage Portfolio #186260
    Skandha
    Participant

    @melaniebund: Hello Melanie,
    Please post in your site URL so that I can look into the issue.

    Kind Regards,
    Skandha

    in reply to: Problems with PHP 7 theme adventurous #186259
    Skandha
    Participant

    @bbaccitiscali-it: Hello there,
    I am running on PHP version 7.3.2 and there doesn’t seem to be any problem with the homepage.
    Can you update your PHP version and let me know so that I can look into the issue?

    Kind Regards,
    Skandha

    in reply to: Demo Content #186236
    Skandha
    Participant

    @reservehifi: Hello there,
    I have emailed you the demo content files along with instructions on how to import them.

    To remove the author and date info in the single product page
    Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    .single-product .entry-meta {
        display: none;
    }

    Let me know if this works out!
    Kind Regards,
    Skandha

    in reply to: Mobile #186232
    Skandha
    Participant

    @lifestyle-elements: Hello there,
    Please post in your site URL so that I can look into the issue.

    Kind Regards,
    Skandha

Viewing 20 posts - 7,121 through 7,140 (of 12,027 total)