PIMCore 轮播问题

PIMCore carousel issue

我是第一次使用 PIMCore 构建一个新网站,并且掌握得很好。然而,我遇到了一个让我难过的问题,在 google 上寻找答案已被证明是徒劳的。

我添加了一个块,然后在其中放置了图库轮播功能,效果很好。我可以向第一张幻灯片添加图像、标题和说明,但是,所有后续幻灯片都不会显示任何图像,也不会显示标题和说明的输入。您只会得到两条水平线,我认为这是输入框(见下文)。

即使我自己编写轮播功能代码,只留下图像、标题和描述作为输入字段,结果仍然是一样的。查看 PIMCore 4 上的演示套件,首页轮播按预期工作,但是,在 basic-examples 和画廊中,它出现如上,对我来说这意味着轮播代码中的一个主要问题。

如有任何帮助,我们将不胜感激。

在这种情况下,在编辑模式下禁用轮播插件并一个接一个地显示图像通常是有意义的。

例如:

<script>
$('.carousel').carouselPlugin({
  ////////////
});
</script>

<div class="<?= $this->editmode?"carousel-editmode":"carousel" ?>">
  <?php // In editmode just display images one after another, or just use a multi-href field instead ?>
</div>

否则很难让它正常工作。

我知道这已经关闭了,但我想出了以下解决方案,它在 pimcore 管理员中保持轮播完好无损:

在:website/views/areas/gallery-carousel/view.php

<script type="text/javascript">
$(document).ready(function() {
    $('.pimcore_editable .pimcore_tag_textarea').height(30);
    $('.pimcore_editable .pimcore_tag_input').height(30);
});
</script>