Files
Jacek Pyziak 6cc26c0ed2 Add Creative Elements templates and update index files
- Introduced new templates for catalog, checkout, contact, and error pages.
- Implemented caching headers and redirection in index.php files across various directories.
- Enhanced product and layout templates for better integration with Creative Elements.
- Added backoffice header styles and scripts for improved UI/UX in the admin panel.
2025-07-01 00:56:07 +02:00

38 lines
1.4 KiB
PHP

<?php
/**
* Creative Elements - live Theme & Page Builder
*
* @author WebshopWorks, Elementor
* @copyright 2019-2022 WebshopWorks.com & Elementor.com
* @license https://www.gnu.org/licenses/gpl-3.0.html
*/
namespace CE;
defined('_PS_VERSION_') or die;
?>
<script type="text/template" id="tmpl-elementor-repeater-row">
<div class="elementor-repeater-row-tools">
<# if ( itemActions.drag_n_drop ) { #>
<div class="elementor-repeater-row-handle-sortable">
<i class="fa fa-ellipsis-v" aria-hidden="true"></i>
<span class="elementor-screen-only"><?= __('Drag & Drop') ?></span>
</div>
<# } #>
<div class="elementor-repeater-row-item-title"></div>
<# if ( itemActions.duplicate ) { #>
<div class="elementor-repeater-row-tool elementor-repeater-tool-duplicate">
<i class="fa fa-copy" aria-hidden="true"></i>
<span class="elementor-screen-only"><?= __('Duplicate') ?></span>
</div>
<# }
if ( itemActions.remove ) { #>
<div class="elementor-repeater-row-tool elementor-repeater-tool-remove">
<i class="fa fa-remove" aria-hidden="true"></i>
<span class="elementor-screen-only"><?= __('Remove') ?></span>
</div>
<# } #>
</div>
<div class="elementor-repeater-row-controls"></div>
</script>