Display large event graphic
-
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)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Display large event graphic’ is closed to new replies.