This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** @var Mage_Core_Block_Template $this */ | |
/** @var Klevu_Search_Helper_Config $config */ | |
/** @var Klevu_Search_Helper_Data $helper */ | |
?> | |
<?php $config = Mage::helper('klevu_search/config'); ?> | |
<?php $helper = Mage::helper('klevu_search'); ?> | |
<?php if ($config->isExtensionConfigured()): ?> | |
<?php $urlRoute = 'catalogsearch/result/'; ?> | |
<?php if ($config->isLandingEnabled() === 2): ?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<layout version="0.1.0"> | |
<content_search_index> | |
<reference name="root"> | |
<action method="setTemplate"> | |
<template>page/2columns-left.phtml</template> | |
</action> | |
</reference> | |
<reference name="head"> | |
<!-- Remove Deprecated JSv1 Stylesheet to avoid conflict --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<layout version="0.1.0"> | |
<default> | |
<reference name="head"> | |
<block type="core/template" | |
name="klevu.search.v2.js.init" | |
template="klevu/search/v2/js-init.phtml"/> | |
</reference> | |
</default> | |
<catalog_product_view> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env php | |
<?php | |
use Klevu\Search\Api\KlevuSyncRepositoryInterface; | |
use Klevu\Search\Api\MagentoProductSyncRepositoryInterface; | |
use Klevu\Search\Model\Klevu\Klevu; | |
use Magento\Eav\Model\Entity; | |
use Magento\Framework\App\Bootstrap; | |
use Magento\Store\Api\Data\StoreInterface; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* From terminal, run as follows | |
* php magento-directUpdateRecordsToKlevu.php <store_id> | |
* store_id will be 1 by default, store_id is an optional parameter | |
* Direct script to update the product to Klevu indexer. | |
* Use this script wisely as this script will not check whether given product needs to add or update or delete etc. | |
* | |
* NOTE: Recommend to use only for troubleshooting. | |
*/ |
NewerOlder