Reply to: tickets(344628)

Hi Artem. We’ve had to revert back to a previous version of EventON due to this and other issues. It’s really affecting our client.

Reply to: tickets(344157)

Hello, I have the same problem but already updated to version 2.2.8. before that, we didn’t have the problem so the addon didn’t fix but caused it!

Reply to: tickets(347924)

The AU Upgrade looks great with the exception of some formatting.Check here and click on links that open to EO pop-ups.  https://dev.mount-shasta-events.com/events/tara-is-testing-4-4/

Reply to: tickets(348015)

Hi,

With this version, I have a lot of problem with the slider Adds On and the Full Call Adds On.

I have the bar with the shortcode of the event, the facebook link and the Instagram Link only on the first Event.

I have wrong title color for the event, red or black and it is not good particularly when the Background is black…

Reply to: tickets(342543)

We have the same issue again. Many of the events that started in MArch are still showing in April. Can you help? In order to avoid orders on them we put them SOLD OUT.

 

Event “MAMMA&MINI STERK 1 – BARSELTRENINGTORSDAGER KL. 11.15-12.15″ started in March, but still showing in April…

Reply to: tickets(347999)

Hello EventON,

I have found a temporary solution.
I have in the eventos-qr code/includes/class-check in.php
modified the funcoes “get_qr_code”.

public function get_qr_code($ticket_number, $repeat_interval='', $size=150, $post_id = ''){ 

    // if there is a post set to assign 
    $gen_qr = true;

    //echo $ticket_number.' '. $this->evo_crypt( $ticket_number );

          if(!empty($post_id)){
       $p_url = get_post_meta($post_id, '_qrimg_'.$ticket_number.'_'.$repeat_interval, true);

       if($p_url){
          $gen_qr = false;
          return '<img src="'.$p_url.'"/>';
       }
    }
    
    if($gen_qr){
       $checkURL = $this->checkin_page_url;

       $row_ticket_number = $ticket_number; // row tn
       $encryptTN = $this->encrypt_TN($ticket_number); // encrypt tn if encrypt enabled

       $siteurl = $checkURL.'?id='.$encryptTN. ( !empty($repeat_interval)? '&ri='.$repeat_interval: null);
       $chl = urlencode($siteurl);


              $imgUrl ='https://api.qrserver.com/v1/create-qr-code/?data='.$chl.'&size='.$size.'x'.$size.'';
              //$imgUrl = 'https://chart.googleapis.com/chart?chs='.$size.'x'.$size.'&cht=qr&chl='.$chl;
       
       $u_url = $this->get_uploaded_qr_code_image($imgUrl, $encryptTN, $post_id);

       if($u_url && !empty($post_id)){
          update_post_meta($post_id, '_qrimg_'.$row_ticket_number.'_'.$repeat_interval, $u_url);
          $imgUrl = $u_url;
       }
    }

    return '<img src="'.$imgUrl.'"/>';
}
and this worked immediately.
sometimes the img will load from google but often not.