PluginProbe
ShopBuilder – WooCommerce Builder For Elementor / 3.2.6
ShopBuilder – WooCommerce Builder For Elementor v3.2.6
3.4.2 3.4.1 3.4.0 2.0.1 2.0.2 2.0.3 2.1.0 2.1.1 2.1.10 2.1.11 2.1.12 2.1.13 2.1.14 2.1.15 2.1.2 2.1.3 2.1.4 2.1.5 2.1.6 2.1.7 2.1.8 2.1.9 2.2.0 2.2.1 2.2.2 All 63 releases
shopbuilder / templates / elementor / general / shopbuilder-button / layout1.php

layout1.php in ShopBuilder – WooCommerce Builder For Elementor 3.2.6, at templates/elementor/general/shopbuilder-button/layout1.php

42 lines 1.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Template: ShopBuilder Button
4 *
5 * @package RadiusTheme\SB
6 */
7
8 /**
9 * Template variables:
10 *
11 * @var $sb_button__content string
12 * @var $sb_button_link string
13 * @var $sb_button1_icon string
14 * @var $sb_button1_icon_position string
15 * @var $button1_attributes string
16 */
17
18 use RadiusTheme\SB\Elementor\Render\GeneralAddons;
19 use RadiusTheme\SB\Elementor\Widgets\General\ShopBuilderButton\Render;
20 use RadiusTheme\SB\Helpers\Fns;
21
22 // Do not allow directly accessing this file.
23 if ( ! defined( 'ABSPATH' ) ) {
24 exit( 'This script cannot be accessed directly.' );
25 }
26
27 ?>
28 <div class="rtsb-shopbuilder-button-wrap">
29 <div class="rtsb-shopbuilder-button">
30 <?php
31 GeneralAddons::render_buttom_html(
32 [
33 'button_attributes' => $button1_attributes,
34 'sb_button_icon' => $sb_button1_icon,
35 'sb_button_icon_position' => $sb_button1_icon_position,
36 'sb_button_content' => $sb_button__content,
37 ]
38 );
39 ?>
40 </div>
41 </div>
42