TigriWeb | Support
Forum Replies Created
-
AuthorPosts
-
TigriWeb
KeymasterHi 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 TeamJune 26, 2025 at 5:40 pm in reply to: Product category page with no link to product detail page #225TigriWeb
KeymasterHi 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 TeamJune 24, 2025 at 1:45 pm in reply to: Location of “prices/booking” widget too much down in the page in mobile view #222TigriWeb
KeymasterHi Yvan,
You can add to
Appearance -> Customize -> Additional CSScustom CSS code:@media (max-width: 991px) { .single-product .site__content__wrap.product { display: flex; flex-direction: column-reverse; } }Best regards,
TigriWeb TeamTigriWeb
KeymasterDear 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 TeamTigriWeb
KeymasterDear 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 TeamTigriWeb
KeymasterHi Imran,
I added some custom HTML “Quantity Label” to the “Atlantis” “Product Options” and now the label is shown 😉
Best regards,
TigriWeb TeamTigriWeb
KeymasterIf 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 TeamTigriWeb
KeymasterHi,
Could you create a user “administrator” and send access to the admin panel to the email – tigriweb@gmail.com?
Best regards,
TigriWeb TeamTigriWeb
KeymasterHow and where (in code) these cards added to that page?
Best regards,
TigriWeb TeamTigriWeb
KeymasterHi Imran,
We use the styles of other fonts if they are smaller.
You can add to
Appearance -> Customize -> Additional CSScustom CSS code, example for loop product titles:.is-root-container ul.products li.product .woocommerce-loop-product__title, .is-root-container ul.products li.product .woocommerce-loop-category__title { font-weight: var(--kampina--font-weight--heading-h2); }Best regards,
TigriWeb TeamTigriWeb
KeymasterHi Gisele,
to edit the text in the sidebar go to your Dashboard, go to Appearance, then select Widgets.
For changing the text in the sidebar on:
– blog pages – select Area 1
– products – select Area 2TigriWeb
KeymasterHi Rohitgparmar,
Debug has
og:imagetag, but don’t load it.Can You create a post with an image that has a name in English letters only for test? Maybe problem in the “અમદાવાદમાં-એક-મહિનામાં-ડેન્ગ્યુના-325થી-વધુ-કેસ-નોંધાયા” name?
In any case, this is not a problem with the theme, only with the plugin that displays this
og:imagetag or Facebook.Best Regards,
TigriWeb TeamTigriWeb
KeymasterHi Gisele,
We have the
team sliderinside thecontainer blockwith a same background: https://prnt.sc/p7td541ul894.Best Regards,
TigriWeb TeamTigriWeb
KeymasterHi Gisele
Go to
Appearance -> Widgetsand follow these steps: https://prnt.sc/7MI2NSPHApV5.And there will be a Social Icons block.
Best Regards,
TigriWeb Team -
AuthorPosts