• Resolved braddemers

    (@braddemers)


    In class-eventbrite-manager.php, the plugin pulls a low-resolution graphic for the logo_url variable. It’s possible to make the plugin pull the full-resolution image by changing this line:

    $event['logo_url'] = ( isset( $api_event->logo->url ) ) ? $api_event->logo->url : '';

    to this:

    $event['logo_url'] = ( isset( $api_event->logo->original->url ) ) ? $api_event->logo->original->url : '';

    Can this be added to the official build of the plugin? With large layouts the quality of the original graphic suffers a fair bit. I made this change myself in the code but I’d prefer to not have to keep making it whenever a new version is pushed live.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author fullworks

    (@fullworks)

    Hi,

    thanks for investigating this for me. I did try and find a solution which alluded me. Perhaps they extended the API since I looked ( or I just couldn’t find it )

    Can you contact me directly at support at fullworks.net so I can discuss implementation ideas that won’t impact all user ?

    Alan

    Thread Starter braddemers

    (@braddemers)

    Thanks! Contacted and good to go ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Display large event graphic’ is closed to new replies.