Important notice: we will respond to all open ticket requests up until November the 1st. After this date, we will be unable to process the ticket requests here on Ticksy.

Okay
  Public Ticket #2137773
Changing default text
Closed

Comments

  • OVALADVERTISING started the conversation

    Greetings,

    I would like help in changing some of the following default text, as I see no related option.

    Read More button .(Elated product list)  

    Description

    Related Products

    I need to change only the 3 parts. Is there any CSS that could possibly change that?


    Kind regards,

    Mili.

  •  1,845
    Elated replied

    Hello Mili,

    Welcome to your support management and thank you for choosing our theme!

    The easiest way to change these labels would be if you translate those, and to do so you would have to use a 3rd party plugin, such as WPML or Loco Translate or Polylang.

    This way, you'd be able to translate string of any kind, including the Widget Area names and titles, as well as WooCommerce labels. These plugins are quite straight-forward and easy to use even for the least experienced users. Have in mind that only WPML is tested with our themes, so others might not work perfectly with every element of the theme, but from the feedback of our users, in most cases, there are no problems. 

    Additionally, if you want to manually translate some strings and go more into details, you can use some translation software like Poedit

    Note that when translating labels from plugins, you will generate files like domain-RU.mo and domain-RU.po. And you need to rename these to follow this expample: core-plugin-ru_RU.mo and core-plugin-ru_RU.po.

    Helpful reading:
    https://code.tutsplus.com/tutorials/translating-your-theme--wp-25014

    Those labels you mentioned should be found in following .pot files:

    wp-content\plugins\woocommerce\i18n\languages\woocommerce.pot

    wp-content\plugins\corretto-core\languages\corretto-core.pot

    Those could probably be changed with CSS, and if you decide to go that way, you should provide us URL's and screenshots of pages where the labels you want to change are located and we'll try to devise a CSS for you.

    Best regards!

    Joey


    The Elated Support Center has been moved to our centralized support platform. 

    Please note that any existing tickets prior to this change will be answered right here on Ticksy, and in due time. 

    If you wish to submit a new support request, for all new inquiries please head on to our Help Center.

    Elated Themes is part of Qode Interactive – the home of 300+ premium WordPress themes.

    Don’t forget to sign up for our newsletter and be the first to find out all the latest news.

  • OVALADVERTISING replied

    Hello again,

    I tried using Polylang (and some other plugins) but with little luck.

    Therefore, It would be great if you could help me add some css to the problematic pages...

    https://goddcoffee.gr/proproducts/ 

    This "read more" button when you hover over the products needs to change.

    Since the read more button appears in more than one product category, is it possible to change it globally with css?


    https://goddcoffee.gr/product/lantico-pure-arabica-coffee-1-000-gr/

    Here's an example of a product. We would like to change the word Description to it's Greek equivalent, across all products. The same applies to the "related products" part.


    Kind regards,

  •  1,845
    Elated replied

    Hi again,

    To change replace `Description` label you can add following code into Appearance -> Customize -> Additional CSS:

    #tab-title-description > a {
        font-size: 0;
    }
    #tab-title-description > a:after {
        content: 'your text';
        font-size: 12px;
        vertical-align: middle;
        line-height: 12px;
    }
    

    And for read more on product hover, you can use the following code:

    a.ajax_add_to_cart.button {
        font-size: 0px !important;
    }
    a.ajax_add_to_cart.button:after {
        font-size: 12px;
        content: 'YOUR TEXT';
        vertical-align: middle;
        line-height: 12px;
    }
    

    Let us know if this works for you.

    Best regards!

    Joey


    The Elated Support Center has been moved to our centralized support platform. 

    Please note that any existing tickets prior to this change will be answered right here on Ticksy, and in due time. 

    If you wish to submit a new support request, for all new inquiries please head on to our Help Center.

    Elated Themes is part of Qode Interactive – the home of 300+ premium WordPress themes.

    Don’t forget to sign up for our newsletter and be the first to find out all the latest news.