Viewing 23 posts - 1 through 23 (of 23 total)
  • Author
    Posts
  • #699152

    Hi
    I’ve added my comment into that post but I am not sure if you are checking old comments in that reason I am starting with new topic.
    I followed your tips but when I try to edit child theme I cannot find that code tribe_etp_move_tickets_purchase_form('ava_after_main_title', 10);
    Should I modify child to to work with WooCommerce and Event Tickets Plus (Modern Tribe)?
    If yes, please help with manual, thank you a lot
    I need to use advance layout builder
    Thank you in advanced

    #699275

    Hey kkwasniewski!

    Thanks a lot for contacting us.
    We do not include any code like that into child theme, so you will have to modify it.
    Now, as I understand, you want to show the form, inside Advanced Layout Builder?

    Thanks a lot

    Regards,
    Basilis

    #699276

    Hi
    Yes, it is exactly what I need
    Please note that https://kriesi.at/support/profile/ismael/ in that reply wrote about changing this code.
    Maybe we can ask Ismael for details?
    Thank you in advanced
    Krzysztof

    #700135

    Hi
    Any news about that?
    Thank you in advanced

    #700140

    Hi!

    I am sorry buy you can not show the form inside ALB.
    You can try convert the function as shortcode, so you can use it after, but there is no other way to make it happen I am afraid.

    Thanks a lot for your understanding

    Regards,
    Basilis

    #700226

    Hi
    Are you shure about that?
    Why Ismael in that reply https://kriesi.at/support/topic/display-issue-with-enfold-theme-and-event-tickets-plus-by-modern-tribe/#post-661591 is explaining that possibility?
    It was a few mounts ago. It is very impoprtnant to me, if needs customisation I should pay, just let me know
    Thank you in advanced

    #701017

    Hi,

    We provided a possible solution here. https://kriesi.at/support/topic/display-issue-with-enfold-theme-and-event-tickets-plus-by-modern-tribe/#post-701016

    Let’s continue on this thread. Thank you.

    Best regards,
    Ismael

    #701078

    Hi
    Yes, I modified, please find screenshot here
    I have only problem with modification child theme because I don’t have code which you describe
    I have only that code in child theme:

    <?php
    
    /*
    * Add your own functions here. You can also copy some of the theme functions into this file. 
    * WordPress will use those functions instead of the original functions then.
    */
    add_filter('avf_builder_boxes','enable_boxes_on_posts');
    function enable_boxes_on_posts($boxes) {
    	$boxes[] = array( 'title' =>__('Avia Layout Builder','avia_framework' ), 'id'=>'avia_builder', 'page'=>array('page','post', 'tribe_events'), 'context'=>'normal', 'expandable'=>true );
    	$boxes[] = array( 'title' =>__('Layout','avia_framework' ), 'id'=>'layout', 'page'=>array('page','post', 'tribe_events'), 'context'=>'side', 'priority'=>'low');
    	$boxes[] = array( 'title' =>__('Additional Portfolio Settings','avia_framework' ), 'id'=>'preview', 'page'=>array('page','post','tribe_events'), 'context'=>'normal', 'priority'=>'high' );
    	
    	return $boxes;
    }

    Best regards
    Krzysztof

    #702303

    Hi Ismael
    There is any chance to reach tip from you? It could be service I can pay for that, it is not a problem. I don’t know to use customization service to protect changes after update theme.
    Thank you in advanced.
    Krzysztof

    #702679

    Hi,

    Please post the FTP details here so that we check the theme files. If you don’t have the code in the functions.php file, add it.

    tribe_etp_move_tickets_purchase_form('ava_after_content_ticket', 10);
    

    Best regards,
    Ismael

    #702821

    Thank you, please find ftp and wordpress admin area access
    When I added this code tribe_etp_move_tickets_purchase_form('ava_after_content_ticket', 10); into my function.php my site is break down (500 error)
    Krzysztof

    #703107

    Hey!

    Thank you for the info. We added the tribe_etp_move_tickets_purchase_form function plus the hook in the child theme’s functions.php file.

    Regards,
    Ismael

    #703192

    Hi Ismael
    Works great thank you!

    #704191

    Hi Ismael again
    I find that is problem with that solution when I add any content from Avia visual builder
    Please find screencast with descriptions here
    Can you check again?
    Thank you a lot
    Krzysztof

    #704640

    Hi,

    It is a styling or css issue. Please add this code in the Quick CSS field.

    .single-tribe_events .cart {
        clear: both;
    }

    We tested it here: http://vip.etechnologie.pl/crm/szkolenie/prince2-practitioner-2/#toggle-id-6

    Best regards,
    Ismael

    #705203

    Hi Ismael
    Works great thank a lot
    I am find another strange issue after that modification
    When I edit page I see additional portfolio settings
    here is screenshot
    Best regards
    Krzysztof

    #707470

    Hi,

    We modified the “avf_builder_boxes” filter. Please check it again.

    Best regards,
    Ismael

    #707644

    Hi
    Now is OK, thank you
    Krzysztof

    #708569

    Hi,

    Glad we could help :)

    Best regards,
    Nikko

    #833773

    Hi there – I have the same technical issues as the op. I have installed woocommerce, event tickets plus and cannot see the tickets when I view pages built with advanced builder.
    I have modified the template-builder.php file and tried to modify the enfold-child functions.php file but with no effect.

    I think my child functions.php code is wrong.

    I have my log in private attached. can you please have a look and let me know what is wrong? Thanks you in advance!

    #834140

    Hi,

    In the template-builder.php file, invoke the “ava_after_content_ticket” hook.

    do_action('ava_after_content_ticket');
    

    In the functions.php file, add the action hook.

    tribe_etp_move_tickets_purchase_form('ava_after_content_ticket', 10);
    

    Best regards,
    Ismael

    #1427148

    I know this is an old support topic, but I was having this issue too, and these workarounds didn’t work for me. Instead, I added the following to my child theme’s functions.php file. Hopefully, this helps someone else …

    function avia_builder_admin_css() {
      echo '<style>
        #avia_builder { display: block !important; }
      </style>';
    }
    add_action('admin_head', 'avia_builder_admin_css');
    #1427182

    Hi,
    Thank you for sharing, perhaps it will help someone in the future.

    Best regards,
    Mike

Viewing 23 posts - 1 through 23 (of 23 total)
  • The topic ‘Display issue with Enfold theme and Event Tickets Plus by Modern Tribe’ is closed to new replies.