Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #1066190

    Hello,
    on my website there is one page that has a very weird way of loading. I don’t know how to explain it properly. The page is called “Contatti”. The other pages are ok. The problem is only with this page.
    I don’t know if you can help me.
    Thank you anyway

    #1066196

    Hey Anj27,

    Have you tried disabling all active plugins to see if the issue resolves?

    Best regards,
    Jordan Shannon

    #1066482

    I tried but it’s not working. In this page I’m using a form form Ninja Form plugin.

    #1067065

    Hi Anj27,

    Could you please give us a link to your website, we need more context to be able to help you.

    Best regards,
    Victoria

    #1067247

    Hello,
    I decided to remove the ninja form and use the avia form. I didn’t realize there was a form in the layout builder.
    Now I would like to change something in this page, called DRAFT. I would like to change the botton color and the style of label inputs (nome, email, messaggio). If possible I would also like to remove the * near the label and change in something like this : nome (richiesto) / email (richiesto).
    You have my login credentials but please be careful because the page is not online. It is just a draft. When it will be ready, I will change the page which is actually online right now.

    Thank you

    #1068751

    Hi,

    Thanks for the update.

    You can use the following css code to adjust the color of the submit button:

    div .main_color .button, .main_color #submit, .main_color input[type='submit'] {
       background-color: red;
        color: blue;
        border-color: green;
    }

    And use this script in the functions.php file to change the required text.

    
    // change contact form required text 
    add_action('wp_footer', 'avf_required_text');
    function avf_required_text(){
    ?>
    <script type="text/javascript">
    (function() {
    	const r = document.querySelectorAll( '.required' );
    	if( r ) {
    		for ( var i = 0; i < r.length; i++ ) {
    			r[ i ].textContent = '(richiesto)';
    		} 
    	}
    })();
    </script>
    <?php
    }
    

    Best regards,
    Ismael

    #1070123

    Hello Ismael,
    thank you very much for helping. It all worked very well.
    Best regards
    Angela

    #1070224

    Hi,

    Great! Glad we could help!

    Please take a moment to review our theme and show your support https://themeforest.net/downloads
    Don’t forget to bookmark Enfold Documentation for future reference.

    Thank you for using Enfold :)

    Best regards,
    Ismael

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘Problems loading one page’ is closed to new replies.