Jump to content

20. Как вывести содержимое информационной страницы на карточку товара


alexts

Recommended Posts

Спасибо автору,  взято   тут

В нужном месте шаблона вставляем вот такой php-код:

{php}
$shop_content_query = vamDBquery("SELECT
    content_title,
    content_heading,
    content_text,
    content_file
    FROM ".TABLE_CONTENT_MANAGER."
    WHERE content_group='5'
    ".$group_check."
    AND languages_id='".$_SESSION['languages_id']."'");
$shop_content_data = vam_db_fetch_array($shop_content_query,true);
echo $shop_content_data['content_text'];
{/php}

Тем самым мы выводим текст инфостраницы с ID 5. Меняя значение WHERE content_group='5' можно выводить текст из других страниц.

 

К примеру можно вставить во вкладку

<div class="tabbertab">
<h3>"Доставка"</h3>
{php}
$shop_content_query = vamDBquery("SELECT
                      content_title,
                      content_heading,
                      content_text,
                      content_file
                      FROM ".TABLE_CONTENT_MANAGER."
                      WHERE content_group='17'
                      ".$group_check."
                      AND languages_id='".$_SESSION['languages_id']."'");
$shop_content_data = vam_db_fetch_array($shop_content_query,true);
echo $shop_content_data['content_text'];
{/php}
</div>

Прикольно, что именем вкладки становиться не <h3>"Доставка"</h3>, а заголовок текста страницы :)

Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...