Hi Sultenhest:
Thank you for your response. The slideshow reloads after editing its code slightly, but only for Chrome, Firefox, not Safari. I will work on the child themes as suggested, but if you think of any other reasons why Safari may be the only main MAC browser having an issue, please let us know.
The following code is the Voltata header.php that we have for limaproduction. Is there somewhere online to access the original code for the header, index and main Voltata files? I saved most of the originals, but in the busy of creating the site and customizing, may have overlooked edits to some of it. Here is the header.php file for limaproduction.
<?php
/**
* The header for our theme.
*
* This is the template that displays all of the <head> section and everything up until <div id=”content”>
*
* @link https://developer.www.ads-software.com/themes/basics/template-files/#template-partials
*
* @package voltata
*/
?>
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset=”<?php bloginfo( ‘charset’ ); ?>”>
<meta http-equiv=”X-UA-Compatible” content=”IE=edge”>
<meta name=”viewport” content=”width=device-width, initial-scale=1″>
<link rel=”profile” href=”https://gmpg.org/xfn/11″>
<link rel=”pingback” href=”<?php bloginfo( ‘pingback_url’ ); ?>”>
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<div id=”page” class=”hfeed site container”>
<header id=”masthead” class=”site-header row” role=”banner”>
<div class=”site-branding col-md-12 wow animated fadeInDown”>
<?php
if ( get_theme_mod( ‘voltata_logo_image’ ) ) :
echo ‘‘;
echo ‘<img class=”logo-image img-responsive” src=”‘ . esc_url( get_theme_mod( ‘voltata_logo_image’ ) ) . ‘”>’;
echo ‘‘;
endif;
?>
<?php if( get_theme_mod( ‘voltata_display_title’ ) != ‘hide’ ) : ?>
<?php if ( is_front_page() && is_home() ) : ?>
<h1 class=”site-title”>” rel=”home”><?php bloginfo( ‘name’ ); ?></h1>
<?php else : ?>
<p class=”site-title”>” rel=”home”><?php bloginfo( ‘name’ ); ?></p>
<?php endif; ?>
<?php endif; ?>
<p class=”site-description”><?php bloginfo( ‘description’ ); ?></p>
</div><!– .site-branding –>
<nav id=”site-navigation” class=”main-navigation row” role=”navigation”>
<?php wp_nav_menu( array( ‘theme_location’ => ‘primary’, ‘menu_id’ => ‘primary-menu’, ‘container_class’ => ‘col-md-12’ ) ); ?>
</nav><!– #site-navigation –>
<!– Mobile nav –>
<div id=”mobile-site-navigation” class=”main-navigation row” role=”navigation”>
<?php wp_nav_menu( array( ‘theme_location’ => ‘primary’, ‘menu_id’ => ‘secondary-menu’) ); ?>
</div>
</div><!– #mobile-site-navigation –>
</header><!– #masthead –>
<div id=”content” class=”site-content row wow animated fadeIn” data-wow-delay=”1s”>
Sultenhest, thank you so much again.
Kindest regards
limaproduction