が付いたYoutubeサムネイルリストが必要embed
です。すでにTubepressを入手していて、PrestashopのSmartyテンプレートと統合しようとしていますが、何か問題があります。
初期化された正しい変数をtplに入れました:
{$searchvideo = $product->name|escape:'htmlall':'UTF-8'}
{searchvid}
$searchvideo
製品名の文字列です。Prestashopのプラグインディレクトリからですsearchvid
。 function.searchvid.php
function.searchvid.php
:
<?php
function smarty_function_searchvid($params, $template) {
$tubepress_base_url = "http://domain.com/folder/tubepress_pro_2_2_9";
include "/home/folder/www/tubepress_pro_2_2_9/sys/classes/TubePressPro.class.php";
$searchvideo = $template->getTemplateVars("searchvideo");
print TubePressPro::getHtmlForHead(true);
print TubePressPro::getHtmlForShortcode('mode="tag" tagValue="intitle:'. $searchvideo .'" thumbHeight="100" thumbWidth="100" embeddedHeight="325" embeddedWidth="534" embeddableOnly="true" resultsPerPage="5"');
}
?>
問題は、を呼び出してもページに何も読み込まれないこと{searchvid}
です。どんな助けでもいただければ幸いです。