Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #430684

    I’ve recently added a code block to a page and the avian drag and drop stopped working ever since on the homepage
    tried cloning the page and the problem persists

    enfold is updated
    wordpress is updated

    #431123

    Hey Haybazak!

    Could you try to disable all plugins to see if that helps? Never seen a RTL installation of WordPress before, it made my head spin :)

    Cheers!
    Rikard

    #431884

    sure all plugins are off atm

    #432026

    Shalom!

    Have you figured it out already? It does load fine on my end – http://i.imgur.com/CR5DmpG.png?1

    Cheers!
    Yigit

    #432037

    Shalom Yigit!

    It loads but I can’t drag and drop elements

    #432047

    Shalom!

    The problem is special characters in your iframe code are going to incorrect places because of RTL. If you do not mind changing direction to LTR only on the backend Textarea elements, please go to Enfold/config-templatebuilder/avia-templatebuilder/assets/css and open avia-modal.css file and find following selector around line 36th line

    .avia-style textarea{
    -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box;
    width:95%;
    padding:15px;
    height:150px;
    }

    and change it to following one

    .avia-style textarea{
    -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box;
    width:95%;
    padding:15px;
    height:150px;
    direction: ltr!important; 
    }

    and it should work. I am not sure if there is a way to add a code using RTL without breaking it :/

    Best regards,
    Yigit

    #432097

    I edited the file according to your instructions but I still can’t drag and drop elements on the homepage

    I also deleted some of the code blocks (some still remain but those are old and didn’t cause the problem as far as I know)

    #432135

    Hey!

    Can you please try replacing code blocks element with Google Maps element?

    Regards,
    Yigit

    #432194

    I deleted the code blocks on the cloned page and the problem remains

    #432213

    Hi!

    Please review your website now. You had a button shortcode added inside a Text Block element. The same RTL issue i mentioned above caused it not to work properly. I copied your shortcode into a Code Block element and now it is working fine.

    Regards,
    Yigit

    #432236

    Cheers that sorted it out!

    Appreciate all the help

    Peace

    #432244

    Hi!

    You are welcome, always glad to help!

    L’chaim!
    Yigit

Viewing 12 posts - 1 through 12 (of 12 total)
  • The topic ‘avia drag and drop now working’ is closed to new replies.