Forum Replies Created

Viewing 15 replies - 1 through 15 (of 25 total)
  • Hello, I can add another issue to the list. There is something wrong when the plugin format the email address related to an event.

    This is the activation stack:

    thrown in .../htdocs/wp-includes/formatting.php on line 1098
    [16-Jun-2022 09:48:23 UTC] PHP Fatal error:  Uncaught Error: Object of class stdClass could not be converted to string in .../htdocs/wp-includes/formatting.php:1098
    Stack trace:
    #0 .../htdocs/wp-includes/formatting.php(4578): wp_check_invalid_utf8()
    #1 .../htdocs/wp-content/plugins/wp-event-manager/templates/event-registration-email.php(6): esc_attr()
    #2 .../htdocs/wp-content/plugins/wp-event-manager/wp-event-manager-template.php(46): include('...')
    #3 .../htdocs/wp-content/plugins/wp-event-manager/core/wp-event-manager-post-types.php(1198): get_event_manager_template()
    #4 .../htdocs/wp-includes/class-wp-hook.php(307): WP_Event_Manager_Post_Types->registration_details_email()
    #5 .../htdocs/wp-includes/class-wp-hook.php(331): WP_Hook->apply_filters()
    #6 .../htdocs/wp-includes/plugin.php(476): WP_Hook->do_action()
    #7 .../htdocs/wp-content/plugins/wp-event-manager/templates/event-registration.php(16): do_action()
    #8 .../htdocs/wp-content/plugins/wp-event-manager/wp-event-manager-template.php(46): include('...')
    #9 .../htdocs/wp-content/plugins/wp-event-manager/templates/content-single-event_listing.php(424): get_event_manager_template()
    #10 .../htdocs/wp-includes/template.php(772): require('...')
    #11 .../htdocs/wp-content/plugins/wp-event-manager/wp-event-manager-template.php(122): load_template()
    #12 .../htdocs/wp-content/plugins/wp-event-manager/core/wp-event-manager-post-types.php(561): get_event_manager_template_part()
    #13 .../htdocs/wp-includes/class-wp-hook.php(307): WP_Event_Manager_Post_Types->event_content()
    #14 .../htdocs/wp-includes/plugin.php(191): WP_Hook->apply_filters()
    #15 .../htdocs/wp-includes/post-template.php(253): apply_filters()
    #16 .../htdocs/wp-content/themes/xxx/functions/builder/class-mfn-builder-front.php(107): the_content()
    #17 .../htdocs/wp-content/themes/xxx/functions/builder/class-mfn-builder-front.php(633): Mfn_Builder_Front->the_content()
    #18 .../htdocs/wp-content/themes/xxx/includes/content-single.php(243): Mfn_Builder_Front->show()
    #19 .../htdocs/wp-includes/template.php(772): require('...')
    #20 .../htdocs/wp-includes/template.php(716): load_template()
    #21 .../htdocs/wp-includes/general-template.php(204): locate_template()
    #22 .../htdocs/wp-content/themes/betheme/single.php(64): get_template_part()
    #23 .../htdocs/wp-includes/template-loader.php(106): include('...')
    #24 .../htdocs/wp-blog-header.php(19): require_once('...')
    #25 .../htdocs/index.php(17): require('...')

    If an event is still open, the email field manipulation let the site crash. I’ve tampered the event-registration-email.php template file removing the “esc_attr” from every mail variable calls, as reported following:

    <p><?php printf(__('To register for this event <strong>email your details to</strong> <a class="event_registration_email" href="mailto:%1$s%2$s">%1$s</a>', 'wp-event-manager'), $register->email, '?subject=' . rawurlencode($register->subject)); ?></p>
    
    <p>
    	<?php _e('Register using webmail: ', 'wp-event-manager'); ?>
    
    	<a href="https://mail.google.com/mail/?view=cm&fs=1&to=<?php echo $register->email; ?>&su=<?php echo urlencode($register->subject); ?>" target="_blank" class="event_registration_email"><?php _e('Gmail', 'wp-event-manager'); ?></a> /
    
    	<a href="https://webmail.aol.com/Mail/ComposeMessage.aspx?to=<?php echo $register->email; ?>&subject=<?php echo urlencode($register->subject); ?>" target="_blank" class="event_registration_email"><?php _e('AOL', 'wp-event-manager'); ?></a> /
    
    	<a href="https://compose.mail.yahoo.com/?to=<?php echo $register->email; ?>&subject=<?php echo urlencode($register->subject); ?>" target="_blank" class="event_registration_email"><?php _e('Yahoo', 'wp-event-manager'); ?></a> /
    
    	<a href="https://outlook.live.com/mail/0/deeplink/compose?to=<?php echo $register->email; ?>&subject=<?php echo urlencode($register->subject); ?>" target="_blank" class="event_registration_email"><?php _e('Outlook', 'wp-event-manager'); ?></a>
    
    </p>

    Last, but not least, the event created from the last update are listed as ORPHANED. This plugin is live on an about 1M yearly users…we’re in trouble with these malfunctioning. Best

    For those still looking for a support (no thanks to the support team and devs) here is a JS script to be embedded within the checkout page. Hope this can help to hide/show the button only if terms checkbox is flagged. See ya.

    <script>
    //Hide PayPal button on page load
    jQuery(document).ready(function($){
       var cart =document.getElementsByClassName('ppc-button-wrapper')[0];
       cart.classList.add('hide');
    });
    
    //Hide or show PayPal button only if terms are flagged
    jQuery(document).on( 'click', '.validate-required', function () { 
       var flagged_btn = document.getElementById('terms');
       //alert(flagged_btn.checked);
       var trm=document.getElementsByClassName('ppc-button-wrapper')[0];
    
       if (flagged_btn.checked == true){
          trm.classList.remove('hide');
       }else{
          trm.classList.add('hide');
       }
    });
    </script>
    
    <style>
    .hide{
    display: none;
    }
    </style>

    Same here. Have we to choose a different plugin or there is an ETA to overcome the issue? Best

    • This reply was modified 2 years, 7 months ago by ant0nell0.
    Thread Starter ant0nell0

    (@ant0nell0)

    Grazie. Come posso nascondere l’opzione nel dropdown menù aggiunta nella pagina di lockdown? Vorrei che fosse impostato sempre “ricevuta” senza che il cliente possa modificare questa opzione. Nascondere con CSS mi sembra la soluzione più semplice ma anche la meno sicura e “pulita”.

    Thread Starter ant0nell0

    (@ant0nell0)

    Please, can you delete my post?

    Thread Starter ant0nell0

    (@ant0nell0)

    Dear, I’ve collected more information about one of the reported issues. The error “mail not found” is triggered only if I create a segment within the “mail (campaign) creation process”. As soon as I select a list to filter on, everything seems to be ok but… as soon as I save, the error comes. If I try to open the segment tab again, the resulting filter number is still present but the List field (list to witch filter) is empty. I think this is the reason of the message “mail not found”.

    More over, within the list selector (segment creation) there are a lot of duplicated list where only a small number show the ID.

    Last, but not least. The campaigns sent to a segment created through a filter, never ends and remains stuck within the queue list with a “INF” time remaining label.

    I’m running the last WP release and I don’t cache DB or objects as well.

    Thread Starter ant0nell0

    (@ant0nell0)

    The issue happen when I clone only certain email (not the whole set). Moreover, the duplicated email, sometimes retrieve an error when saved. The error states “Email not found”.

    Thread Starter ant0nell0

    (@ant0nell0)

    I’ve the payment version of the plugin. Can I receive dedicated support?

    ant0nell0

    (@ant0nell0)

    SAME HERE: multi site on .com and .it istance. On the IT versione, the banner reload every visited page (seems that the cookie is not wrote). From the other hand, within the COM version, the cookie notice fully works. The sites are https://harmonium-pharma.com and https://harmonium-pharma.it

    I hope the developers will help us. Best.

    Thread Starter ant0nell0

    (@ant0nell0)

    Yep… this solved the issue for pages and articles (and PCT as well). Unfortunately I use Visual Composer even for SEP pages….and there the glitch is still present. I’m attaching a screenshot: https://ibb.co/g7C15xJ

    Thread Starter ant0nell0

    (@ant0nell0)

    Dear all, will last update solve the related issue?
    Thanks,
    Antonello

    Thread Starter ant0nell0

    (@ant0nell0)

    Here is the screenshot

    As you can see, as soon as an edit panel is opened, it shown the whole homepage instead the controls. It’s like the”inception” (the film) hehehe. The issue started since last major update (before everything worked smoothly) and happen when I try to edit a page, with or without a calendar.
    Unfortunately, no errors are shown within the PHP log file and the JavaScript Log, as well.

    Thanks,
    Antonello

    • This reply was modified 4 years, 7 months ago by ant0nell0.
    • This reply was modified 4 years, 7 months ago by ant0nell0.

    Dear, My log file is exploding because the error generate a new log entry every second. Please, can you provide an ETA for your update? In meantime I can’t disable the debugger for many reason. Thanks & regards, Antonello

    Thread Starter ant0nell0

    (@ant0nell0)

    I was able to solve deleting one by one the DB keys, saving the setting as well. Thanks for your support anyway. I agree with you… something related to my DB goes wrong.

    ant0nell0

    (@ant0nell0)

    This issue is still present and noticed since 1 YEAR and 7 MONTHs ago. I don’t know why the DEV doesn’t apply this 5 mins fix of the code. There remains only to flood the developer mailbox!

    PLEASE ADD THE LOGIN NOTICES STRINGs WITHIN THE NAME SPACE.PLEASE ADD THE LOGIN NOTICES STRINGs WITHIN THE NAME SPACE. PLEASE ADD THE LOGIN NOTICES STRINGs WITHIN THE NAME SPACE.

    Thanks.

Viewing 15 replies - 1 through 15 (of 25 total)