head.phtmlファイルのjavascriptを介してMagentoBaseUrlを取得し、それをjquery.hello-lightbox.minファイルで使用しようとしています。ここで、いくつかの画像を取得するにはbaseUrlが必要です。
これが私がhead.phtmlファイルに持っているものです:
<?php $baseUrl = $this->getBaseUrl() ; ?>
<script type="text/javascript">
var baseUrl = <?php echo $baseUrl ; ?>
function getBaseUrl(baseUrl)
</script>
次に、/ js/jquery.hello-lightbox.minに次のように表示されます。
(function($){
function getBaseUrl(baseurl)
{
var domain = baseurl
}
var urrl = 'http://'+domain+'/skin/frontend/default/customtheme/images/lightbox/';
$.fn.lightBox=function(settings)settings=jQuery.extend({overlayBgColor:'#000',overlayOpacity:0.8,fixedNavigation:false,imageLoading: urrl+'lightbox-ico-loading.gif',imageBtnPrev:urrl+'lightbox-btn-prev.gif', . . . . . . . . . .
しかし、これは機能しません。実際、head.phtmlのvarbaseUrlにphp変数$baseUrlを渡すことすらできないようです。
あなたはなにか考えはありますか?