I posted the bulk of this message previously -- but unable to find it. So, this might be a near duplicate.
I installed JEvents Free on localhost using WampServer running PHP 5.5. The Hover (over an event on a calendar) is showing HTML Code rather than the appropriate Title, Start and End Times.
I then installed JEvents Free on a GoDaddy hosted test site running PHP 7.1 and it appears to be fully functional.
The URL is:
http://jlhpgms.com/calendartest1/events-calendar/monthcalendar/2018/6/-
I then installed JEvents Free on a live site at HostGator also running PHP 7.1. Once again it is showing only HTML Code -- the same as the WampServer. The HTML Code being shown is the <div>...</div> code that embeds the Title.
The URL is:
http://hendersonvillencvisitors.com/events-calendar/monthcalendar/2018/6/-
PHPInfo for both GoDaddy and HostGator are showing Ver. 7.1. I am at a lost to understand why the live site at HostGator is not functioning correctly -- like the test site at GoDaddy.
The calendartest1 site at GoDaddy is a copy of the Hendersonville site at HostGator -- created using an Akeeba Backup.jpa file.
I checked the popover() function in the libraries\cms\html\bootstrap.php file for both sites and they appear to be identical. The code of interest is:
$opt['animation'] = isset($params['animation']) ? $params['animation'] : null;
$opt['html'] = isset($params['html']) ? $params['html'] : true;
$opt['placement'] = isset($params['placement']) ? $params['placement'] : null;
$opt['selector'] = isset($params['selector']) ? $params['selector'] : null;
$opt['title'] = isset($params['title']) ? $params['title'] : null;
$opt['trigger'] = isset($params['trigger']) ? $params['trigger'] : 'hover focus';
$opt['content'] = isset($params['content']) ? $params['content'] : null;
$opt['delay'] = isset($params['delay']) ? $params['delay'] : null;
$opt['container'] = isset($params['container']) ? $params['container'] : 'body';
Can anyone help? If so, TIA.