Glossary Category:

Bill Yvanovich

Guilherme António Yvanovich, also nicknamed Avichi #2682 Birth: 6 November 1924, Rosary Church, Hong Kong Marriage: Philippines, Teresa Ledesma Details are in the restricted website with ID #2682

Bill Yvanovich Read More »

Bobby Barnes

          Robert Joseph Barnes #9447 Birth: 30 July 1922, Hong Kong Marriage: Sílvia Maria dos Remédios Death: 11 January 2102 Details are in the restricted website with ID #9447

Bobby Barnes Read More »

Bobby Remedios

Roberto Arthur d’Almada Remédios #10149 Birth: 20 April 1928, Hong Kong Marriage: 11 September 1954, Rosary Church, Hong Kong, Catherina Leonora dos Remédios Details are in the restricted website with ID #10149

Bobby Remedios Read More »

1 function special_tooltip_shortcode($atts) { // Default attributes $atts = shortcode_atts(array( 'keyword' => 'Test Tooltip', 'id' => '123', 'items' => '', ), $atts); // Escape output $keyword = esc_html($atts['keyword']); $id = (int) $atts['id']; // Clean items: remove empty lines $lines = preg_split('/\r\n|\r|\n/', $atts['items']); $clean_lines = array_filter(array_map('trim', $lines)); // Trim each line, remove empty $items = ''; foreach ($clean_lines as $line) { $items .= esc_html($line) . '
'; } // Fixed base URL $url = "https://www.macaneselibrary.org/macfams/priv/english/"; // Build output $output = "
{$keyword} #{$id}
{$keyword} #{$id} {$items} Details are in the private website: Already logged in?
Register or login?
"; return $output; } add_shortcode('specialtooltip', 'special_tooltip_shortcode');