Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #586120

    We are using Enfold theme and the plugin WP Event Plus. When we do that, the alert box Avia layout builder is constantly showing on the pages above the modules you use when you edit the pages. There is no x to close the alert box and it doesn’t help to click outside of the alert box.
    We haven’t had this problem before, but WP Event Plus said it had to do with Enfold/Avia layout builder.

    #586866

    Hi Vikab,

    Please send us a temporary admin login so that we can have a closer look. You can post the details in the Private Content section of your reply.

    Regards,
    Rikard

    #587747

    Please log in and go to one of the pages and you’ll see what I mean.

    #589037

    Hey!

    I checked your homepage but can’t see any issue or alert. Can you provide us a precise link where we can see the issue?
    We recommend to use The Events Calendar plugin instead.

    Best regards,
    Andy

    #589623

    The alert box shows in the administration every time you want to edit a page, no matter if you choose to use the Enfold layoutuilder or WordPress own editor. Se picture here http://wpeventplus.vikab.com/wp-content/uploads/2016/01/alert-box-problem.png

    Unfortunately The Events Calendar is not an alternative for this client because he needs his clients to be able to book a class on the website. We didn’t get the The Events Calendar to do that. We saw there was some extra plugin for that but it does not fill the demands in counting available seats, emails when booking, possibility to get a list of attendants etc.
    Apart from the alert box it works with WP Events Plus and Enfold but the alert box is very annoying.

    #592556

    Hi!

    Please try this in the functions.php file:

    add_action( 'admin_head', 'admin_head_mod' );
    function admin_head_mod() { ?>
    	<script type="text/javascript">
    		(function($) {
    		    function a() {
    				$('.wp-pointer').each(function() {
    					if($(this).find('h3').text().indexOf('Avia Layout Builder') != -1); {
    						$(this).remove();
    					}
    				});
    		    }
    
    		    a();
    		})(jQuery);
    	</script>
    	<?php
    }
    

    UPDATE: We modified the code a bit.

    Regards,
    Ismael

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.