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 #1914228
Filter Panel Labels
Closed

Comments

  • Base started the conversation

    In the right hand side filter panel I would like to change the label of "Rooms" to "Apartment Size (Bedrooms)"

    Is there a CSS snippet that can help me do this?

  •  1,845
    Elated replied

    Hello there,

    I apologize for the late reply, we have been getting a lot of messages daily and are trying our best to keep up with every request. I hope you can understand.

    Theme labels can be changed or translated to your language with poedit software which is native wordpress way - following guide may be helpful http://code.tutsplus.com/tutorials/translating-your-theme--wp-25014 (read from point 3) or any other plugin for translation such as Loco translate plugin https://wordpress.org/plugins/loco-translate/ and here is beginners guide https://localise.biz/wordpress/plugin/beginners

    Hope this helps and if there is anything else that we can assist you with please don't hesitate to ask.

    Kind regards,

    Sean


    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.

  • Base replied

    Thanks Sean,

    This seems to be a quite complex option and more relative to changing the language of a page, not changing a label. To be clear, I want to simply change the wording as indicated in the attached to different text. I have been able to change many other labels within this theme with CSS - is there not a way to do this?

  •  1,845
    Elated replied

    Hello,

    I apologize about the belated reply - we have been getting a lot of tickets lately and the weekend days are behind us, and our reply times have not been as fast as we would have liked.

    Please note that the easiest way to change some label is by using 3rd party plugin → Loco Translate plugin or with poedit software. But also, you can do that (for some labels) with custom css as well → For instance →

    .eltd-filter-room-count-holder label {
        font-size: 0px !important;
    }
    .eltd-filter-room-count-holder label:after {
            text-transform: uppercase;
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.22em;
        content: "Some Text ";
    }


    2890065881.png


    For any other issue you are facing please feel free to ask us and we will assist you as soon as possible. I will give my best to help you building your site.

    Thanks & Regards, 
    Vladimir


    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.

  • Base replied

    Thanks, the custom CSS has helped solve the issue, but I am wanting to put a line break inbetween my text 

     https://uzcz45w1.dreamwp.com/stay/

    IE: inbetween "Apartment Size" and "(number bedrooms) - How would I be able to achieve this line break within the custom text

    One final question, on my homepage (https://uzcz45w1.dreamwp.com/) the hotel room list shows some room detail with the text "/ NIGHT" automatically added (see attached). Is there a way I can remove this extra text?

  •  1,845
    Elated replied

    Hello,

    I apologize about the belated reply - we have been getting a lot of tickets lately and the weekend days are behind us, and our reply times have not been as fast as we would have liked.

    1. You can try to replace previously added custom css with this one below →

    .eltd-filter-room-count-holder label {
        font-size: 0px !important;
    }
    .eltd-filter-room-count-holder label:after {
        text-transform: uppercase;
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.22em;
        content: "Apartment Size";
        display: block;
        padding-bottom : 20px;
    }
    .eltd-filter-room-count-holder label:before {
            text-transform: uppercase;
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.22em;
        content: " (number bedrooms)";
    }
    4488567688.png

    2. You can try to add this css underneath in Appearance >> Customize >> Additional CSS field:

    .eltd-hrl-holder.eltd-hrl-gallery.eltd-hrl-gallery-hover-st .eltd-hrl-price .eltd-hrl-price-pn {
        display: none;
    }
    3302048907.png


    For any other issue you are facing please feel free to ask us and we will assist you as soon as possible. I will give my best to help you building your site.

    Thanks & Regards, 
    Vladimir


    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.