Fix speaker pictures

This commit is contained in:
Vencislav Atanasov 2024-10-10 20:07:40 +03:00
parent e6d606f832
commit bbd885d3ac
1 changed files with 2 additions and 2 deletions

View File

@ -407,11 +407,11 @@ function parseData($config, $data) {
$gspk .= '<div class="member col4">'; $gspk .= '<div class="member col4">';
$gspk .= '<a href="#' . $name . '">'; $gspk .= '<a href="#' . $name . '">';
$gspk .= '<img width="100" height="100" src="' . $config['cfp_url'] . $speaker['picture']['schedule']['url'] . '" class="attachment-100x100 wp-post-image" alt="' . $name . '" />'; $gspk .= '<img width="100" height="100" src="' . $speaker['picture'] . '" class="attachment-100x100 wp-post-image" alt="' . $name . '" />';
$gspk .= '</a> </div>'; $gspk .= '</a> </div>';
$fspk .= '<div class="speaker" id="' . $name . '">'; $fspk .= '<div class="speaker" id="' . $name . '">';
$fspk .= '<img width="100" height="100" src="' . $config['cfp_url'] . $speaker['picture']['schedule']['url'] . '" class="attachment-100x100 wp-post-image" alt="' . $name . '" />'; $fspk .= '<img width="100" height="100" src="' . $speaker['picture'] . '" class="attachment-100x100 wp-post-image" alt="' . $name . '" />';
$fspk .= '<h3>' . $name . '</h3>'; $fspk .= '<h3>' . $name . '</h3>';
$fspk .= '<div class="icons">'; $fspk .= '<div class="icons">';