Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用视图来显示内容,如何仅在视图的第一页中显示块并在视图中启用 ajax ..
我在 Block 可见性中尝试使用 PHP,但我不知道如何获取视图中的第一页... Portfolio = 视图名称
<?php $url = request_uri(); $pos = strpos($url, "page"); if ($pos === false && arg(0) =='portfolio') { return TRUE; } ?>
您的页面应该有不同的页面文件,例如“node--product_page.tpl.php”,您可以在页面中添加视图块,只要您想使用以下代码:
<?php echo views_embed_view('YourViewName[ex:product_list]', $display_id ='yourBlockViewName[ex:block_1]'); ?>