• Resolved cblaz

    (@cblaz)


    After upgrading Avada from 3.1.1 to 3.3.1, email addresses are now being displayed in reverse order.

    From what I can gather, WP Mailto Links CSS is being overridden by the theme CSS beecause they’ve defined a class with the same name and is taking higher precedence.

    Here’s the WP Mailto Links CSS class:

    .rtl {
    unicode-bidi: bidi-override;
    direction: rtl;
    }

    Here’s the Avada CSS class:

    .rtl {
    direction: rtl;
    unicode-bidi: embed;
    }

    I’m not 100% certain if this is the best method of fixing the issue, but I added “!important” after the plugin’s unicode-bidi property definition and the problem resolved:

    .rtl {
    unicode-bidi: bidi-override !important;
    direction: rtl;
    }

    https://wordpress.org/plugins/wp-mailto-links/

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thanks for this cblaz! I noticed the same issue although it was also happening on 3.2.1. It was working correctly on a footer widget, but it was reversed on the header. I suppose that providing a site isn’t rtl this should be okay. However, I wonder if it breaks the site for users that have their browsers configured for rtl?

    Cheers !

    Pi Zi

    (@freelancephp)

    Thanks cblaz, I will add a prefix to the class names in the next release.

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Incompatibility with Avada theme v3.3.1’ is closed to new replies.