Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 16 additions & 13 deletions design/frontend/template/search.phtml
Original file line number Diff line number Diff line change
@@ -1,23 +1,26 @@
<?php
/** @var Clerk_Clerk_Block_Search $this */
?>
<div class="page-title">
<h1><?php echo $this->getTitleText(); ?></h1>
</div>
<span <?php echo $this->getSpanAttributes(); ?>></span>
<div id="clerk_search_block">

<div class="category-products">
<ul id="<?php echo $this->getTargetId(); ?>" class="products-grid"></ul>
</div>
<div class="page-title">
<h1><?php echo $this->getTitleText(); ?></h1>
</div>
<span <?php echo $this->getSpanAttributes(); ?>></span>

<div id="clerk-search-no-results" style="display: none;">
<p class="note-msg"><?php echo $this->getNoResultsText(); ?></p>
</div>
<div class="category-products">
<ul id="<?php echo $this->getTargetId(); ?>" class="products-grid"></ul>
</div>

<div id="clerk-search-load-more-button" style="text-align:center; display: none;">
<button class="button"><?php echo $this->getLoadMoreText(); ?></button>
</div>
<div id="clerk-search-no-results" style="display: none;">
<p class="note-msg"><?php echo $this->getNoResultsText(); ?></p>
</div>

<div id="clerk-search-load-more-button" style="text-align:center; display: none;">
<button class="button"><?php echo $this->getLoadMoreText(); ?></button>
</div>

</div>
<script type="text/javascript">
var total_loaded = 0;
function _clerk_after_load_event(data) {
Expand Down