Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author Tijmen Smit

    (@tijmensmit)

    Is there an url where I can see this in action? Did you make your them eRTL of is that the default way your theme works? If so, can you zip it and email it to info at tijmensmit.com, then I play around with and look for the best way to fix this.

    Thread Starter EMVK

    (@emvk)

    Yes of course:
    https://www.4eversmooth.dreamhosters.com/?page_id=5941

    i’ve changed the theme to RTL, it has RTL support so it wasent complicated though

    if you want i can give you access to the code aswell

    Plugin Author Tijmen Smit

    (@tijmensmit)

    There is a span with a ‘selection-box’ class on it wrapped around the ‘wpsl-dropdown’ div. The ‘selection-box’ span shouldn’t be there, it isn’t part of the plugin and it is what makes it break. If you remove it, then it will look much better.

    One issue remains, and that is the placement of the text in the dropdown. You can move that away from the triangle by adding this line to the css in your theme.

    .wpsl-dropdown {
        text-align:left !important;
    }

    Or if you just want to hide the triangle in the dropwdown, you can add this to your css.

    .wpsl-dropdown .carat {
        display:none;
    }
    Thread Starter EMVK

    (@emvk)

    Thank you so much for your detailed explanation,
    but i cannot find the selection-box span anywhere, not inside the page nor in the plugin or other files… any where else i should look for?

    and as for the second issue, my initial problem was that the text is to the left of the boxes instead of the right,

    the radius label is above actually, and the search is to the left,
    they should both be to the right of the boxes… is that possible?

    Thanks in advance and sorry for the hassle

    Plugin Author Tijmen Smit

    (@tijmensmit)

    If I view the source and search for the selection-box span I don’t see it either, but if I view the html with a tool like Firebug then it’s definitely there. Which points to a js script adding it dynamically.

    You can try to disable plugins one by one, or switch themes for a second and see where the problem comes from.

    If you want to place the text after the input field / dropdowns, you will have to edit the template file in the /frontend/templates/store-listings-below.php and place the label text after the input / select tag.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘RTL Languages and radius/results tabs bug’ is closed to new replies.