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'

Home / Forums / Search / Search Results for 'language'

Viewing 20 results - 361 through 380 (of 1,794 total)
  • Author
    Search Results
  • In forum: Pinnacle Theme
    #214169

    Hi,

    I need to put 2 different tawk.to javascript widget code to different pages (different languages).
    So I can´t use header/footer -place in theme settings?

    Yours,
    Milla

    #213731

    Hi,

    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,
    Luke

    In forum: Ascend Theme

    In reply to: Woo Commerce

    #213560

    2. 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

    #213513

    Hey,
    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

    #213278

    Hi,

    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 Theme
    #213175

    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 Theme

    In reply to: Dropdown CSS

    #212756

    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 Theme

    In reply to: Dropdown CSS

    #212597

    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 Theme

    Topic: Dropdown CSS

    #212588

    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 below

    In forum: Virtue Theme

    Topic: Language

    #212111

    Hi I’m wondering if there’s a translation plugin I can use that supports Hebrew and a few other languages? Is there such a plugin that you would recommend with this particular theme? Hebrew and English is most important at this stage.

    In forum: Ascend Theme

    In reply to: Woo Commerce

    #211909

    Hi 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
    Harald

    In forum: Ascend Theme

    In reply to: Woo Commerce

    #211843

    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

    #211781

    Hey,
    There’s an option to change this from Theme Options > Language Settings.

    Hannah

    In forum: Ascend Theme

    Topic: Woo Commerce

    #211757

    Hi,
    a couple of questions regarding Woo Commerce Settings all related to http://www.hailecoffe.at

    1.) 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
    Harald

    #211594

    Hi Ben,
    Here’s the Italian traslation of Kadence Blocks

    I 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,
    Angelo

    #211444

    Hey Luke,
    You can change the “Related Products” text from Theme Options > Language Settings. This carousel will pull products that are in the same category as the product being viewed. Are you wanting something different?

    Hannah

    #211413

    Hi guys, I’m just learning about “Translation Ready” themes. How does Virtue integrate different languages? Specifically english/spanish. How do you recommend I get the site translated? Thanks for your time!

    In forum: Virtue Theme

    In reply to: Polylang error

    #211274

    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!

    #211045

    Hi, if you take a look tho our first left footer column 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
    NL version

    it is a problem of siteorigin translatable widget or of the theme?

    thank you
    Angelo

    In forum: Virtue Theme
    #210842

    Hi there,
    I do have a problem with the menu of the website ..
    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

Viewing 20 results - 361 through 380 (of 1,794 total)