Home › Forums › Space themes support forum › problem with translations and site sections
problem with translations and site sections
- This topic has 10 replies, 3 voices, and was last updated 9 months, 1 week ago by Luke Nielsen.
-
AuthorPosts
-
February 6, 2024 at 7:04 pm #537381
clientiParticipanthi!
I have some questions for my site1) In this section the descriptions have disappeared. They are there because if I work with Elementor I see them in the box but not on the page (screen 1)
2)How can I translate these voices? I installed loco translate but I can’t find them anywhere to translate them (screen 2)
3)The “hot” item appeared above on a product. How can I remove it?
Thank you!
Attachments:
You must be logged in to view attached files.February 8, 2024 at 10:59 am #537916
clientiParticipanthi! Can someone help me?
February 8, 2024 at 6:05 pm #538119
Luke NielsenKeymasterHello,
Sorry for the delay.
1. The description is not shown due to your custom CSS here: https://take.ms/XMBkT
2. Please check our article on how to use Loco: https://xtemos.com/docs-topic/translate-woodmart-theme-with-loco-translate/
In Loco Translate -> Themes -> Hitek you need to synchronize all strings and search for keywords, then you will be able to translate those words.
3. It’s possible via Theme Settings -> Shop -> Product labels https://prnt.sc/tSKjL31Ek1wr
Kind Regards
February 8, 2024 at 6:27 pm #538137
clientiParticipantthank you!
I had inserted that string in the custom css to hide this sentence. How can I hide it without compromising the previous text?Attachments:
You must be logged in to view attached files.February 9, 2024 at 6:34 am #538241
feel7hes7eelParticipantGreetings , support .
Can you please check my request ?
https://xtemos.com/forums/topic/issue-with-integrations-with-payment-plugins-and-delivery-plugins-in-checkoutpag/February 9, 2024 at 11:50 am #538317
clientiParticipanthi! I wanted to let you know that I solved it myself!
I just have one more question. Is it possible to reverse these two tabs?
The first is a tab of those that are created via generic ones by theme settings
The second is the one that is created in the tab produced as an additional tabThank you!
Attachments:
You must be logged in to view attached files.February 9, 2024 at 4:50 pm #538494
Luke NielsenKeymasterHello,
Try to use the below code for help, paste it into the functions.php file in your child theme.
if ( ! function_exists( 'custom_tab_position' ) ) { /** * Custom tab position. * * @param array $tabs Tabs array. * @return array */ function custom_tab_position( $tabs ) { $custom_additional_tab_title = get_post_meta( get_the_ID(), '_xts_single_product_custom_additional_tab_title', true ); if ( $custom_additional_tab_title ) { $tabs['xts_custom_additional_tab']['priority'] = 25; } return $tabs; } add_filter( 'woocommerce_product_tabs', 'custom_tab_position', 20 ); }
The above code changes the position of the custom tab from the settings of the product: https://take.ms/uwFym
Depending on the number of tabs, change the priority ($tabs[‘xts_custom_additional_tab’][‘priority’] = 25;)
Kind Regards
February 13, 2024 at 11:15 am #539406
clientiParticipantThank you! I confirm that it works!
I noticed that the product sheet cards on mobile are displayed in this mode. Is there the possibility of changing the aesthetics of your furniture so that it doesn’t have to slide horizontally?
Maybe placing them one under the other instead of next to each other
Attachments:
You must be logged in to view attached files.February 13, 2024 at 3:42 pm #539541
Luke NielsenKeymasterHello,
Add the below code into the “Mobile CSS” area in Theme Settings -> Custom CSS.
.single-product .xts-nav-wrapper.xts-mb-action-swipe .xts-nav { flex-direction: column; } .single-product .xts-nav-wrapper.xts-mb-action-swipe { overflow-y: visible; }
It will help you disable slide.
Kind Regards
February 14, 2024 at 4:12 pm #540041
clientiParticipanthi!
I confirm that the code works but this change also applies to desktop. How can I apply it only on mobile?February 14, 2024 at 4:21 pm #540049
Luke NielsenKeymasterHello,
You have defined the code in the wrong area. https://take.ms/L9myP , https://take.ms/9oUGK
Please recheck the above message.
Kind Regards
-
AuthorPosts
- You must be logged in to create new topics. Login / Register