Notice: These forums are now retired and closed. For active support, please Submit a Ticket or visit our official WordPress.org community pages.
Kadence Theme | Kadence Blocks | Starter Templates | WooCommerce Email Designer | Ascend | Virtue | Pinnacle
Search Results for 'language'
-
AuthorSearch Results
-
In forum: Pinnacle Theme
Topic: Tawk.to script
In forum: Virtue ThemeHi,
i would like to change texts in woocomerce emails but i am using polish language, not english.
In example below you can see that there is “Thank you for shopping with us” and this is translated into polish in received email.
i want to change this for “Thank you and feel free to visit us again”
How cna i change this in english draft and translate correctly?
Best,
LukeIn forum: Ascend ThemeIn reply to: Woo Commerce
January 16, 2019 at 3:08 pm #2135602. Please add this css for your shop page:
.product_item .button { z-index: 1; }Add this for the cart alignment.
.kt-header-extras ul.sf-menu .kt-extras-label i.kt-icon-bag { line-height: 10px; }You can change the label in the theme options > language settings.
If you are not able to do that send a login.You can override the icon with another, please specify which icon you want to use and we can help with the css.
Ben
In forum: Virtue ThemeIn reply to: images loading twince and switching side
January 16, 2019 at 9:46 am #213513Hey,
The theme does not control that Woocommerce slider or how it swipes but from what I can see it is swiping based on the RTL language direction.I do see that the thumbnails should switch sides so you can add this css:
html[dir="rtl"] .woocommerce-product-gallery.woocommerce-product-gallery--columns-5 .flex-control-thumbs li { float: right; }Perhaps thats what you are wanting.
Ben
In forum: Membership ForumsTopic: Kadence galleries and WPML
January 14, 2019 at 12:48 pm #213278Hi,
On one of my websites I have the Kadence galleries plugin installed and there I’m using the WPML translate plugin.
When I want to edit a page I keep getting a repeated message saying ‘You are about to change the language of PAGE NAME’.
If I disable the Kadence galleries plugin the message is gone.Can you solve this problem?
In forum: Ascend ThemeTopic: WPML & Shop Filter
Hi Ben,
i filter the shop page to hide a whole category because it’s displayed separatelly on the site:
// Hide Category from Shop page
add_filter( 'get_terms', 'get_subcategory_terms', 10, 3 );
function get_subcategory_terms( $terms, $taxonomies, $args ) {
$new_terms = array();
// if a product category and on the shop page
// to hide from shop page, replace is_page('YOUR_PAGE_SLUG') with is_shop()
if ( in_array( 'product_cat', $taxonomies ) && ! is_admin() && is_shop ) {
foreach ( $terms as $key => $term ) {
if ( ! in_array( $term->slug, array( 'praktische-kurse, practical-courses' ) ) ) {
$new_terms[] = $term;
}
}
$terms = $new_terms;
}
return $terms;}
/** * Exclude products from a particular category on the shop page
*/
function custom_pre_get_posts_query( $q ) {
if ( ! is_admin() && is_shop()){
$tax_query = (array) $q->get( 'tax_query' );
$tax_query[] = array(
'taxonomy' => 'product_cat',
'field' => 'slug',
'terms' => array( 'praktische-kurse, practical-courses' ), // Don't display products in this category on the shop page.
'operator' => 'NOT IN'
);
$q->set( 'tax_query', $tax_query );
}
}
add_action( 'woocommerce_product_query', 'custom_pre_get_posts_query' );
Works perfect in first language.
After installing WPML and translating Taxonomies i added the english slug of the same category to the code, but with no effect.
Can you please tell me what i’m missing?Thank you
In forum: Ascend ThemeIn reply to: Dropdown CSS
Hmm, try this css instead:
ul.sub-menu.sf-dropdown-menu.dropdown .wpml-ls-native, ul.sub-menu.sf-dropdown-menu.dropdown .wpml-ls-display{ font-size: 8px; } .wpml-ls-slot-20.wpml-ls-current-language .wpml-ls-slot-20 a { padding: 2px; }I’m seeing your second menu left aligned across multiple browsers. I don’t want a windows computer to check, but I will have the developer look into this for you.
Hannah
In forum: Ascend ThemeIn reply to: Dropdown CSS
Hey Anders,
Try adding this to your custom css box in Theme Options > Custom CSS:ul.sub-menu.sf-dropdown-menu.dropdown .wpml-ls-native { font-size: 8px; } .wpml-ls-slot-20.wpml-ls-current-language .wpml-ls-slot-20 a { padding: 5px; }Hope that helps!
Hannah
In forum: Ascend ThemeTopic: Dropdown CSS
Hi,
need just a bit of help finding the right selector.
The dropdown of the language switcher needs to be smaler in width and height.
I see ‘.sf-menu ul’ is set to minimum 12em width but i cant use it because this affects other items too.
Thanks
PS Link belowIn forum: Virtue ThemeTopic: Language
In forum: Ascend ThemeIn reply to: Woo Commerce
January 1, 2019 at 8:20 am #211909Hi Hannah,
thanks for the reply!@ 1.) It is the other way round. If I only have two other products it should show them for example in a 4 row setting as 2 filled and 2 empty colums but it show them in a too small coulum setting
@ 2.) I am using chrome but it does not work with “Edge” either…
@ 3 + 4.) It works but how can I set the hight to the same as in the single products? Also the css for the bread crum (color) does not work…
@ 5.) Css does not work
@ 6.) Tried to (Using “Cart Label” at the “Header Quick Language Settings”, but it does not work… still “Cart”. @ Icon: looks great, what CSS do I have to use to change it?
Cheers
HaraldIn forum: Ascend ThemeIn reply to: Woo Commerce
Hey,
1. I’m seeing three products when I view this product: https://hailecoffee.at/produkt/haile-zero It seems like you only have 4 products created? The carousel can’t show more than are existing.2. I’m not experiencing that. What browser are you using?
3&4. This css would remove the page header from your shop page:
.archive.woocommerce-page .page-header .page-header-inner { display: none; }This would change your breadcrumb background and text:
.archive.woocommerce-page .titleclass { background-color: rgba(0,0,0,.1); } #kadbreadcrumbs a { border-bottom: 2px solid #777; color: #777; } #kadbreadcrumbs { color: #777; }You can paste those into your custom css box in Theme Options > Custom CSS.
5. You can use css like this:
.quantity:before { content: "Quantity:"; }6. You can change the text from Theme Options > Language Settings. The icon can be changed with css. Do you know which icon you want to change it to? You can see a full list of icons here: http://themes.kadencethemes.com/ascend-premium/icons/
Hope that’s helpful!
Hannah
In forum: Virtue ThemeIn forum: Ascend ThemeTopic: Woo Commerce
December 29, 2018 at 2:45 am #211757Hi,
a couple of questions regarding Woo Commerce Settings all related to http://www.hailecoffe.at1.) In “Product Settings” I asigned 4 columns to related products. Does not work (the same happens if I use the Upselling feature). Only works with 2 columns. Any more and it is strange. There is also no way of customizing (colums of the “upselling” or “related”) of Elementor element?
2.) In the “Single product” the “Add to cart” Button is not active (you cannot click on it)
3.) I assigend “H2” to the Title in the Shop Template but still it only takes the size not the color (its blue?). In all the other settings I can use H1/H2/H3…
4.) When you click on the picture of an item to enlarge and you close it there will be a an additional (Whole Screen) grey window which you have to close?
5.) When I want to select a product I can choose the quantity, but it just the number. How can I customize that (ig Put “Quantity” in front of it)?
6.) In the Header I have the “Cart” Symbol + Text (which is not alligned with the other menu. How can I allign it and how can I change the text from “cart” to another language? BTW: any chance to change the symbol either?If you need access I will send you User and PW
Thanks and Cheers
HaraldIn forum: Pinnacle ThemeIn reply to: italian translation update 2.3.4
Hi Ben,
Here’s the Italian traslation of Kadence BlocksI put it in the plugin Language folder but I have a problem to see it in my local site, do I have to set a different name than it_IT.po and it_IT.mo?
I have the dashboard in Italian but when in the Settings I click Kadence Blocks or in the installed plugin page I click on Settings it suddenly revert the dashboard in English and your plugin too of course. It seems that something is preventing from translating it.
Regards,
AngeloIn forum: Virtue ThemeIn reply to: How to change related products for specific category
In forum: Virtue ThemeIn forum: Virtue ThemeIn reply to: Polylang error
It looks that I found problem – I had Polylang to translate WordPress and WooCommerce atributes, categories, default fields etc from English to local, however for site I’m using only Latvian language. By default all categories and products should get Latvian language, but somehow in settings I found that some products and categories haven’t default language (it looks that in random) and there was option to add to all of them default language after what there appear all lost products and categories. And firstly mentioned error lost when I deactivated “Woocommerce Polylang Integration” and left Your adviced “Hyyan WooCommerce Polylang Integration”.
It looks that now all works fine, thank You!December 18, 2018 at 9:05 am #211045Hi, if you take a look tho our first left footer column *Login to see link in the ENGLISH version you can see a top space added on the top of the widget, BUT, in reality it seems that the other translated widget for dutch is makeing “noise” to the other … infact if you change the language all is working good:
EN version *Login to see link
NL version *Login to see linkit is a problem of siteorigin translatable widget or of the theme?
thank you
AngeloIn forum: Virtue ThemeTopic: Mobile menu colour
Hi there,
I do have a problem with the menu of the website *Login to see link ..
On the tablet in homepage the English menu works fine (is it white and customers can press on it), on Italian language it does not show. I have to press on the black space to show it.
How can I fix this problem?
Thanks
Gabriele -
AuthorSearch Results


