Forum Replies Created

Viewing 20 posts - 8,961 through 8,980 (of 12,034 total)
  • Author
    Posts
  • Skandha
    Participant

    @dbatty: Hello Derek,
    I have already replied to you on your earlier post.

    Let me know if the issue is resolved.
    Kind Regards,
    Skandha

    in reply to: Give page an image border #166708
    Skandha
    Participant

    @catwingz: Hello there,
    I will look into the issue and get back to you soon.

    Kind Regards,
    Skandha

    in reply to: How display the section Team randomly on Homepage #166707
    Skandha
    Participant

    @centrescene: Hello there,
    Since you are using Custom type to display your team section on homepage it is not possible to randomize the team section posts on refresh as the homepage only takes the custom posts you have added on the customizer and not from the Les artistes page.

    To do that you have to create your teams section contents as posts and then categorize them into a single category. Then on the Team section on the customizer select Type as Category and select that particular category. Then you will need to create a child theme and do a little changes to make the posts randomize on refresh.

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

    Skandha
    Participant

    @dbatty: Hello Derek,
    You seem to be using a very old version of the theme. Can you please update the theme to the latest version and let me know if the issue persists?

    Kind Regards,
    Skandha

    in reply to: is this suitable for a ecommerce site? #166700
    Skandha
    Participant

    @logjammusic: Hello there,
    Yes, the theme is WooCommerce Ready so you can create a site that has a shop on there with your products as well.

    Let me know if you come across any issues.
    Kind Regards,
    Skandha

    in reply to: Corporate fotografie free- Featured page grid content #166652
    Skandha
    Participant

    @claire-pryet: The section you are referring to is the Portfolio Section. You will need to use Essential Content Types Plugin for that. Install and Activate the plugin.

    Go to => Dashboard => Portfolio => Add your portfolio posts here.

    Then
    Go to => Appearance => Customize => Essential Content Types Plugin Options => Portfolio => Enable on Homepage or entire site and select the number of posts you want to display.

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

    Skandha
    Participant

    @ovidiub13: This should be because you are using a very old version of WordPress as the get_theme_file_uri() function was introduced in WordPress 4.7.0 and you seem to be using 4.4.17. Please update WordPress to the latest version and let me know if the issue persists.

    Kind Regards,
    Skandha

    in reply to: How to add my images in the slider in the free version? #166647
    Skandha
    Participant

    @viv: Go to => Appearance => Featured Slider => Select Slider Type as Page => And select the pages you want to display on the featured slider.

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

    in reply to: Portfolio Content #166630
    Skandha
    Participant

    @schase: There seems to be an issue with the post order after updating to WordPress 5.1. The issue has been fixed and a theme update will be released very soon. I will let you know when the update is released.

    Kind Regards,
    Skandha

    in reply to: Can't remove sidebar on the hompage #166627
    Skandha
    Participant

    @lankyman26: I don’t think there was an option to remove sidebar only on Static Homepage. I am not able to access your site right now. You could do this using a Child Theme. That is what I would recommend. You can Generate Child Theme plugin to create a child theme. Activate and Install the theme. Then Go to => Dashboard => Generate Child Theme => => Select Parent Theme as Christmas Bell, 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.

    remove_filter( 'body_class', 'christmasbell_body_classes' );
    
    function christmasbell_child_body_classes( $classes ) {
    	// Adds a class of custom-background-image to sites with a custom background image.
    	if ( get_background_image() ) {
    		$classes[] = 'custom-background-image';
    	}
    
    	// Adds a class of group-blog to blogs with more than 1 published author.
    	if ( is_multi_author() ) {
    		$classes[] = 'group-blog';
    	}
    
    	// Adds a class of hfeed to non-singular pages.
    	if ( ! is_singular() ) {
    		$classes[] = 'hfeed';
    	}
    
    	// Always add a front-page class to the front page.
    	if ( is_front_page() && ! is_home() ) {
    		$classes[] = 'page-template-front-page';
    	}
    
    	// Adds a class of (full-width|box) to blogs.
    	if ( 'boxed' === get_theme_mod( 'christmasbell_layout_type' ) ) {
    		$classes[] = 'boxed-layout';
    	} else {
    		$classes[] = 'fluid-layout';
    	}
    
    	// Adds a class of no-sidebar to sites without active sidebar.
    	if ( ! is_active_sidebar( 'sidebar-1' ) ) {
    		$classes[] = 'no-sidebar';
    	}
    
    	// Adds a class with respect to layout selected.
    	$layout  = christmasbell_get_theme_layout();
    	$sidebar = christmasbell_get_sidebar_id();
    
    	if ( 'no-sidebar' === $layout || is_front_page() ) {
    		$classes[] = 'no-sidebar content-width-layout';
    	} elseif ( 'right-sidebar' === $layout ) {
    		if ( '' !== $sidebar ) {
    			$classes[] = 'two-columns-layout content-left';
    		}
    	}
    
    	$classes[] = get_theme_mod( 'christmasbell_content_layout', 'excerpt-image-top' );
    
    	$classes[] = 'primary-menu-left';
    
    	$footer_left_content = get_theme_mod( 'christmasbell_footer_content_left' );
    	$footer_right_content = get_theme_mod( 'christmasbell_footer_content_right' );
    
    	if ( !( '' == $footer_left_content && '' == $footer_right_content ) ) {
    		$classes[] = 'site-generator-two';
    	}
    
    	return $classes;
    }
    add_filter( 'body_class', 'christmasbell_child_body_classes' );

    This should remove the sidebar in static homepage.
    Let me know if this works out!
    Kind Regards,
    Skandha

    in reply to: EVOLUTION PRO #166625
    Skandha
    Participant

    @catchrmv: Hello there, I hope I was able to resolve your issue. If it’s not too much trouble, I have a quick request: could you please leave an honest review?
    https://wordpress.org/support/theme/catch-evolution/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: our team #166624
    Skandha
    Participant

    @valelotartaro: Hello Valeria,
    You don’t seem to have enabled Team section on the entire site. Can you do that so that I can provide you the necessary CSS Code.

    Kind Regards,
    Skandha

    in reply to: Missing images on individual post pages #166623
    Skandha
    Participant

    @a-rain-dog-too: Glad you were able to figure it out. Let me know if you have anymore issues.

    Kind Regards,
    Skandha

    in reply to: Mobile Navigation Menu does not expand #166622
    Skandha
    Participant

    @a-rain-dog-too: Hello there, I hope I was able to resolve your issue. If it’s not too much trouble, I have a quick request: could you please leave an honest review?
    https://wordpress.org/support/theme/fotografie/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: FoodMenu Frontpage Fullwidth #166619
    Skandha
    Participant

    @andre-g: Hello there,
    The above code should work for menus on all the single post/page even using the shortcodes.

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

    in reply to: Audioman Menu colour Menu Position and adding icons #166614
    Skandha
    Participant

    @carolinec: Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    a:focus, a:hover, #feature-slider-section .entry-title a:hover, #feature-slider-section .entry-title a:focus, .menu-toggle:hover, .menu-toggle:focus, .dropdown-toggle:hover, .dropdown-toggle:focus, .search-submit:hover, .search-submit:focus, .entry-meta a:hover, .entry-meta a:focus, .site-info a:hover, .site-info a:focus, #search-toggle, #share-toggle, .main-navigation ul :hover > a .main-navigation ul :hover > a, .main-navigation ul .focus > a, .main-navigation .current-menu-item > a, .main-navigation .current-menu-ancestor > a, .site-header-cart .cart-contents:hover, .site-header-cart .cart-contents:focus, .site-header-menu .social-navigation a:hover, .site-header-menu .social-navigation a:focus, .absolute-header .site-header-menu .social-navigation a:hover, .absolute-header .site-header-menu .social-navigation a:focus, .absolute-header .menu-toggle:hover, .absolute-header .menu-toggle:focus, .absolute-header .site-header-cart .cart-contents:hover, .absolute-header .site-header-cart .cart-contents:focus, .site-navigation .current-menu-item > a, .site-navigation .current-menu-ancestor > a, .navigation-classic.absolute-header .main-navigation ul ul :hover > a, .navigation-classic.absolute-header .main-navigation ul ul .focus > a, .post-navigation a:hover .nav-title, .post-navigation a:focus .nav-title, .section .section-title a:hover, .section .section-title a:focus, .section .entry-title a:hover, .section .entry-title a:focus, #testimonial-content-section .cycle-prev:hover, #testimonial-content-section .cycle-prev:focus, #testimonial-content-section .cycle-next:hover, #testimonial-content-section .cycle-next:focus, #events-section.has-background-image .entry-meta a:hover, #events-section.has-background-image .entry-meta a:hover, #events-section.has-background-image .entry-meta a:focus, #events-section.has-background-image .entry-meta a:focus, #events-section.has-foreground-image .entry-meta a:hover, #events-section.has-foreground-image .entry-meta a:hover, #events-section.has-foreground-image .entry-meta a:focus, #events-section.has-foreground-image .entry-meta a:focus, #events-section.has-background-image .entry-title a:hover, #events-section.has-background-image .entry-title a:hover, #events-section.has-background-image .entry-title a:focus, #events-section.has-background-image .entry-title a:focus, #events-section.has-foreground-image .entry-title a:hover, #events-section.has-foreground-image .entry-title a:hover, #events-section.has-foreground-image .entry-title a:focus, #events-section.has-foreground-image .entry-title a:focus, #portfolio-content-section .entry-title a:hover, #portfolio-content-section .entry-title a:focus, #portfolio-content-section .hentry-inner:hover .entry-title, #portfolio-content-section .hentry-inner:hover .entry-title a, .team-content-wrapper .hentry-inner:hover .entry-title a, .team-content-wrapper .hentry-inner:focus .entry-title a, .audioman-mejs-container.mejs-container button:hover, .audioman-mejs-container.mejs-container button:focus, #top-playlist-section .audioman-mejs-container.mejs-container .mejs-controls .mejs-playpause-button.mejs-button button:hover, #top-playlist-section .audioman-mejs-container.mejs-container .mejs-controls .mejs-playpause-button.mejs-button button:focus, table.shop_table_responsive tr td a:hover, table.shop_table_responsive tr td a:focus, .product-container a.added_to_cart:hover, .product-container a.added_to_cart:focus, .single-product .product_meta a:hover, .single-product .product_meta a:focus, .single-product div.product .woocommerce-product-rating .woocommerce-review-link:hover, .single-product div.product .woocommerce-product-rating .woocommerce-review-link:focus, .woocommerce-info a:hover, .woocommerce-info a:focus, .woocommerce-tabs ul.tabs li a:hover, .woocommerce-tabs ul.tabs li a:focus, .variations .reset_variations:hover, .variations .reset_variations:focus, .navigation-classic .main-navigation ul :hover > a, .navigation-classic .main-navigation ul .focus > a {
    	color:#1ff980 !important;
    }

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

    in reply to: Center and enlarge logo #166613
    Skandha
    Participant

    @catwingz: Hello there,
    You seem to have removed the logo from your site. Can you reinsert the logo so that I can help you out?

    Kind Regards,
    Skandha

    in reply to: Header image not shrinking on mobile #166612
    Skandha
    Participant

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

    .has-header-image .custom-header-media .wp-custom-header img {
    	position:unset !important;
    }

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

    in reply to: Header Right Widget #166610
    Skandha
    Participant

    @blackfrogprinting: Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    #wp-custom-header {
    	text-align:center;
    }
    .custom-header .wrapper {
    	background-color:#000;
    }

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

    in reply to: Migration Made Changes I can't undo #166608
    Skandha
    Participant

    @sandysandybalascak-com: I checked your site and the HTML structure of your site is all over the place. This maybe while migrating your site to new server. You seem to have two <div> tags with same class or ids in the wrong places. I suggest you to contact your web host and get it fixed.

    Kind Regards,
    Skandha

Viewing 20 posts - 8,961 through 8,980 (of 12,034 total)