Site is not online yet, because of the problems. But it is probably a javascript problem. This looks a structural issue with some Joomlart templates. I addressed my concers already to Arvind about this.
In line of your previous answer about the tooltip problem (http://www.joomlart.com/forums/topic/tooltip-doesnt-work-jhtmltooltip-in-ja-social-but-works-in-ja-rasite/), I entered some script in the header.php to test if this works (I’m not a really good programmer) and it looks likes it works because modal pops up. Please check this.
But I do not know how to solve the calendar popup. This is standard Joomla and works in the backend (admin). So in this specific type of template Joomlart does something differently with regard to Javascript, because it works in JA rasite, like the other issues.
This is what I added in header.php:
<script type=”text/javascript”>
window.addEvent(‘domready’, function(){
var JTooltips = new Tips($$(‘.hasTip’),
{ maxTitleChars: 50, fixed: false});
});
</script>
<script type=”text/javascript”>
window.addEvent(‘domready’, function() {
SqueezeBox.initialize(“.$options.”);
$$(‘”.$selector.”‘).each(function(el) {
el.addEvent(‘click’, function(e) {
new Event(e).stop();
SqueezeBox.fromElement(el);
});
});
});
</script>