Forum Replies Created
-
AuthorPosts
-
Skandha
Member@ice8810: Glad you were able to figure it out. Let me know if you have anymore issues. Have a good day! 🙂
Kind Regards,
SkandhaFebruary 26, 2019 at 3:07 am in reply to: Corporate fotografie free- Featured page grid content #166722Skandha
Member@claire-pryet: Hello Claire, 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/corporate-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,
SkandhaFebruary 26, 2019 at 3:01 am in reply to: Fatal error when using Catch Box Theme Version 4.8.2 on WordPress 4.4.17 #166720Skandha
Member@ovidiub13: You need not close the thread as it will be helpful for other people having the same issue.
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-box/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,
SkandhaSkandha
Member@centrescene: I checked your site on an android phone and it seems to showing up fine. Can you let me know on which smartphone the header image was appearing very large?
Kind Regards,
SkandhaSkandha
Member@rayo: For this you will need to create a child theme and do a bit of customization. Let me know if you are familiar with child theme customizations otherwise I suggest you to hire a customizer.
Kind Regards,
SkandhaSkandha
Member@javadth: 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-box/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,
SkandhaSkandha
Member@sandysandybalascak-com: Hello Sandy,
I’m afraid I can’t help you on this as the issue is beyond our support scope. I suggest you to seek help from a professional.Let me know if you have any issues related to the theme.
Kind Regards,
SkandhaFebruary 26, 2019 at 1:24 am in reply to: Recent Posts on Home Page show more than selected category #166710Skandha
Member@twicklund: Hello there,
The feature has been added to theme and a theme update will be released very soon. I will let you know when the update is released.Kind Regards,
SkandhaFebruary 26, 2019 at 12:46 am in reply to: Page changes not taking affect. Formatting not changing either. Message no. 2 #166709Skandha
Member@dbatty: Hello Derek,
I have already replied to you on your earlier post.Let me know if the issue is resolved.
Kind Regards,
SkandhaSkandha
Member@catwingz: Hello there,
I will look into the issue and get back to you soon.Kind Regards,
SkandhaFebruary 25, 2019 at 11:38 pm in reply to: How display the section Team randomly on Homepage #166707Skandha
Member@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,
SkandhaFebruary 25, 2019 at 10:39 pm in reply to: Page changes not taking affect. Formatting not changing either. #166701Skandha
Member@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,
SkandhaSkandha
Member@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,
SkandhaFebruary 25, 2019 at 6:03 am in reply to: Corporate fotografie free- Featured page grid content #166652Skandha
Member@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,
SkandhaFebruary 25, 2019 at 5:48 am in reply to: Fatal error when using Catch Box Theme Version 4.8.2 on WordPress 4.4.17 #166649Skandha
Member@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,
SkandhaFebruary 25, 2019 at 5:43 am in reply to: How to add my images in the slider in the free version? #166647Skandha
Member@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,
SkandhaSkandha
Member@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,
SkandhaSkandha
Member@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,
SkandhaSkandha
Member@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,
SkandhaSkandha
Member@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 -
AuthorPosts
