「モーダル」にはナビゲーション矢印がないため、デフォルトのライトボックス「モーダル」を「スリムボックス」に置き換えようとしています。
これらのパスを使用して、スリムボックスの呼び出しを変更しています
[テンプレート名]/html/com_virtuemart/productdetails/default.php components/com_virtuemart/productdetails/default.php
Joomla v2.5 Virtuemart 2.0.6 Slimbox2
以下は私の試みです:
//Enable Slimbox2 plugin
$front = JURI::root(true).'/components/com_virtuemart/assets/';
$document = JFactory::getDocument();
$document->addStyleSheet($front.'js/slimbox/slimbox.css');
$document->addScript($front.'js/slimbox/slimbox2.js');
$js = 'jQuery(document).ready(function($) { $("a.lightbox").slimbox(); });';
$document->addScriptDeclaration($js);
//output thumbnail
echo $this->product->images[0]->displayMediaThumb('class="product-image"',true,'class="lightbox" rel="lightbox"'.$this->product->virtuemart_product_id.'"',true,true);
//unset first image not to be show amont additional ones
unset ($this->product->images[0]);
?>
しかし、まだ機能していません。何が問題なのだろうと思いました。
【参考】[3]