TigriWeb

Forum Replies Created

Viewing 15 posts - 16 through 30 (of 67 total)
  • Author
    Posts
  • in reply to: search icon and cart icon #250
    TigriWeb
    Keymaster

    Hi Gisele,

    The Kampina theme does not have such an option, but you can hide these buttons using the following CSS code, which you can add here: Appearance → Customize → Additional CSS.

    .site__header__button--search,
    .site__header__button--cart {
    	display: none !important;
    }
    
    @media (min-width:992px) {
      .site__header__button__list {
        display: none
      }
    }

    Best Regards,
    TigriWeb Team

    in reply to: Regarding the Kampina website theme #248
    TigriWeb
    Keymaster

    Hi Ken,

    You can fix this by adding the following CSS code under Appearance → Customize → Additional CSS:

    .site__header {
    	position: sticky !important;
    	top: var(--wp-admin--admin-bar--height, 0px);
    }
    .site__header__sticky-area {
    	background-color: var(--kampina--color--header-bg) !important;
    }
    
    .header-is-fixed .site__header__content::after {
    	content: none;
    }
    @media screen and (max-width:600px) {
    	#wpadminbar {
    		position: fixed;
    	}
    }

    This will make the header sticky on all pages as well.

    Best regards,
    TigriWeb Team

    in reply to: Regarding the Kampina website theme Archive Types>Category #246
    TigriWeb
    Keymaster

    Hi Ken,

    From your description, it sounds like the blue border lines are part of the post item styling used in the Category archive layout provided by the theme, not a specific Category setting.

    At the moment, there is no separate option in the Category settings to control post borders individually. These borders are defined via CSS.

    All custom style adjustments in WordPress can be added globally via:
    Appearance → Customize → Additional CSS

    For example, if the border comes from the post card component, it can typically be hidden with a CSS rule similar to:

    .query-post__wrap .query-post__thumbnail a::after {
    	border-color: rgba(0, 51, 255, 0.2);
    }
    .query-post__wrap .query-post__content::before {
    	background-color: rgba(0, 51, 255, 0.2);
    }
    .query-post__wrap .query-post__content::after {
    	background-color: rgba(0, 51, 255, 0.2);
    }

    I do not know the exact color value used on your site, so I used a random blue color as an example. If you want to completely hide these lines, you can simply replace the color value with transparent.

    Best regards,
    TigriWeb Team

    in reply to: Regarding the Kampina website theme footer #243
    TigriWeb
    Keymaster

    Hi Ken,

    Thank you for your question.

    In the current Kampina theme structure, the footer consists of these rows:

    • Footer Top
    • Footer Columns 1–4 (a row with four predefined widget areas)
    • Footer Bottom

    The theme provides four dedicated footer columns by default, and this number cannot be extended to six through the theme settings.

    However, you can still create a six-section footer layout:
    You may add six separate widgets in the Footer Top area, remove all content from Footer Columns 1–4, and apply a small amount of custom CSS to display those six widgets as six columns. This approach allows you to achieve the layout you described without modifying the theme’s core structure.

    Best regards,
    TigriWeb Team

    in reply to: Kampina theme homepage “Transparent Header” option #241
    TigriWeb
    Keymaster

    Hi Ken,

    You can fix this issue by adding the following CSS code under Appearance → Customize → Additional CSS:

    .home .site__header {
    	margin-bottom: 0;
    }

    If you need this change for the header on all pages, not just the homepage, then use this code instead:

    .site__header {
        margin-bottom: 0;
    }

    Best regards,
    TigriWeb Team

    TigriWeb
    Keymaster

    Hi Ken,

    Thank you for your message.
    You can fix this issue by adding the following CSS code under Appearance → Customize → Additional CSS:

    @media screen and (max-width: 991px) {
    	.site__header,
    	.site__header__sticky-area {
    		position: sticky;
    		top: calc(var(--wp-admin--admin-bar--height, 0px) - var(--kampina--announcement-bar--height, 0px) );
    	}
    }
    @media screen and (max-width: 600px) {
    	.site__header,
    	.site__header__sticky-area {
    		position: sticky;
    		top: calc(var(--kampina--announcement-bar--height, 0px) * -1);
    	}
    }

    This will make the header sticky on mobile devices as well.

    Best regards,
    TigriWeb Team

    TigriWeb
    Keymaster

    Hi Yvan,

    Creating a dedicated page for amenities and attractions managed as products, with excerpts on the home page and detailed views on category pages, sounds like a valuable improvement. I will definitely consider implementing this in the future updates.

    Thanks again for your feedback and support!

    Best regards,
    TigriWeb Team

    in reply to: Product category page with no link to product detail page #225
    TigriWeb
    Keymaster

    Hi Yvan,

    We also use these hooks in the Kampina theme, so try this code:

    function kampina_fix_template_loop_product_link_open() {
    	?><div class="woocommerce-LoopProduct-link woocommerce-loop-product__link"><?php
    }
    function kampina_fix_template_loop_product_link_close() {
    	?></div><?php
    }
    function kampina_fix_template_loop_product_title() {
    	?><h2 class="<?php echo esc_attr( apply_filters( 'woocommerce_product_loop_title_classes', 'woocommerce-loop-product__title' ) ); ?>"><?php
    		the_title();
    	?></h2><?php
    }
    function kampina_fix_loop_add_to_cart_link() {
    	echo '';
    }
    
    add_action( 'template_redirect', function() {
    	if ( is_product_category( 'produits-ferme' ) ) { // without is_product().
    		// remove thumbnail a.
    		remove_action( 'woocommerce_before_shop_loop_item', 'woocommerce_template_loop_product_link_open', 10 );
    		remove_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_template_loop_product_link_close', 10 );
    
    		// add thumbnail div.
    		add_action( 'woocommerce_before_shop_loop_item', 'kampina_fix_template_loop_product_link_open', 10 );
    		add_action( 'woocommerce_before_shop_loop_item_title', 'kampina_fix_template_loop_product_link_close', 10 );
    
    		// remove title a.
    		remove_action( 'woocommerce_shop_loop_item_title', 'woocommerce_template_loop_product_title', 10 );
    
    		// add title h2.
    		add_action( 'woocommerce_shop_loop_item_title', 'kampina_fix_template_loop_product_title', 10 );
    
    		// remove button.
    		add_filter( 'woocommerce_loop_add_to_cart_link', 'kampina_fix_loop_add_to_cart_link', 10, 3 );
    
    		// remove button aria-describedby span.
    		add_filter( 'woocommerce_loop_add_to_cart_args', '__return_false' );
    	}
    } );

    Best regards,
    TigriWeb Team

    TigriWeb
    Keymaster

    Hi Yvan,

    You can add to Appearance -> Customize -> Additional CSS custom CSS code:

    @media (max-width: 991px) {
    	.single-product .site__content__wrap.product {
    		  display: flex;
    		  flex-direction: column-reverse;
    	}
    }

    Best regards,
    TigriWeb Team

    in reply to: Floating Booking Button #218
    TigriWeb
    Keymaster

    Dear Imran,

    Since the product is a WooCommerce variable product, customers need to select an option before proceeding with the purchase. Because of this requirement, the “Buy Now” or “Book Now” button cannot be immediately actionable without first choosing a variation.

    To make this work, the entire selection form would have to be floating, which would take up a significant portion of the screen on mobile devices, potentially affecting usability rather than improving it.

    Best regards,
    Tigriweb Team

    in reply to: Issue with Quantity Selector Label Not Visible #216
    TigriWeb
    Keymaster

    Dear Imran,

    Since you are using the “WooCommerce Product Options” plugin, it’s best to edit all additional fields in one place.

    Go to “Products” → “Product Options” and find the example where I added the “Quantity Label” to “Atlantis” at the end.

    There you’ll find Custom HTML, where you can change the word “Quantity” to something else.

    You’ll need to do something similar with the other “Product Options” as well.

    Best regards,
    TigriWeb Team

    in reply to: Issue with Quantity Selector Label Not Visible #214
    TigriWeb
    Keymaster

    Hi Imran,

    I added some custom HTML “Quantity Label” to the “Atlantis” “Product Options” and now the label is shown 😉

    Best regards,
    TigriWeb Team

    in reply to: demo content error 404 #208
    TigriWeb
    Keymaster

    If I add the IP address to the host file, I can access it.

    It seems to me that the issue lies in the import process trying to fetch a file from a non-existent address. Even though we add the host’s IP address, this address does not exist during the import.

    Perhaps it’s better to create a subdomain and leave the existing site for staging and testing.

    Best regards,
    TigriWeb Team

    in reply to: demo content error 404 #206
    TigriWeb
    Keymaster

    Hi,

    Could you create a user “administrator” and send access to the admin panel to the email – tigriweb@gmail.com?

    Best regards,
    TigriWeb Team

    in reply to: Typography customization not working properly #203
    TigriWeb
    Keymaster

    How and where (in code) these cards added to that page?

    Best regards,
    TigriWeb Team

Viewing 15 posts - 16 through 30 (of 67 total)