晋太元中,武陵人捕鱼为业。缘溪行,忘路之远近。忽逢桃花林,夹岸数百步,中无杂树,芳草鲜美,落英缤纷。渔人甚异之,复前行,欲穷其林。 林尽水源,便得一山,山有小口,仿佛若有光。便舍船,从口入。初极狭,才通人。复行数十步,豁然开朗。土地平旷,屋舍俨然,有良田、美池、桑竹之属。阡陌交通,鸡犬相闻。其中往来种作,男女衣着,悉如外人。黄发垂髫,并怡然自乐。 见渔人,乃大惊,问所从来。具答之。便要还家,设酒杀鸡作食。村中闻有此人,咸来问讯。自云先世避秦时乱,率妻子邑人来此绝境,不复出焉,遂与外人间隔。问今是何世,乃不知有汉,无论魏晋。此人一一为具言所闻,皆叹惋。余人各复延至其家,皆出酒食。停数日,辞去。此中人语云:“不足为外人道也。”(间隔 一作:隔绝) 既出,得其船,便扶向路,处处志之。及郡下,诣太守,说如此。太守即遣人随其往,寻向所志,遂迷,不复得路。 南阳刘子骥,高尚士也,闻之,欣然规往。未果,寻病终。后遂无问津者。
|
Server : Apache System : Linux srv.rainic.com 4.18.0-553.47.1.el8_10.x86_64 #1 SMP Wed Apr 2 05:45:37 EDT 2025 x86_64 User : rainic ( 1014) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/rainic/www/oldTZh/wp-content/plugins/powerpack-elements/modules/posts/skins/ |
Upload File : |
<?php
// namespace PowerpackElements\Modules\Posts\Widgets;
namespace PowerpackElements\Modules\Posts\Skins;
use PowerpackElements\Base\Powerpack_Widget;
use PowerpackElements\Classes\PP_Helper;
use PowerpackElements\Classes\PP_Config;
use PowerpackElements\Modules\Posts\Module;
use PowerpackElements\Classes\PP_Posts_Helper;
use PowerpackElements\Group_Control_Transition;
// Elementor Classes
use Elementor\Controls_Manager;
use Elementor\Utils;
use Elementor\Icons_Manager;
use Elementor\Skin_Base as Elementor_Skin_Base;
use Elementor\Widget_Base;
use Elementor\Group_Control_Image_Size;
use Elementor\Group_Control_Background;
use Elementor\Group_Control_Border;
use Elementor\Group_Control_Box_Shadow;
use Elementor\Group_Control_Typography;
use Elementor\Group_Control_Css_Filter;
use Elementor\Core\Schemes\Typography as Scheme_Typography;
use Elementor\Core\Schemes\Color as Scheme_Color;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
/**
* Skin Base
*/
abstract class Skin_Base extends Elementor_Skin_Base {
protected function _register_controls_actions() { // phpcs:ignore PSR2.Methods.MethodDeclaration.Underscore
add_action( 'elementor/element/pp-posts/section_skin_field/before_section_end', array( $this, 'register_layout_controls' ) );
add_action( 'elementor/element/pp-posts/section_query/after_section_end', array( $this, 'register_controls' ) );
add_action( 'elementor/element/pp-posts/section_query/after_section_end', array( $this, 'register_style_sections' ) );
}
public function register_style_sections( Widget_Base $widget ) {
$this->parent = $widget;
$this->register_style_controls();
}
public function register_controls( Widget_Base $widget ) {
$this->parent = $widget;
$this->register_slider_controls();
$this->register_filter_section_controls();
$this->register_search_controls();
$this->register_terms_controls();
$this->register_image_controls();
$this->register_title_controls();
$this->register_excerpt_controls();
$this->register_meta_controls();
$this->register_button_controls();
$this->register_pagination_controls();
$this->register_content_order();
$this->register_content_help_docs();
}
public function register_style_controls() {
$this->register_style_layout_controls();
$this->register_style_box_controls();
$this->register_style_content_controls();
$this->register_style_filter_controls();
$this->register_style_search_controls();
$this->register_style_image_controls();
$this->register_style_terms_controls();
$this->register_style_title_controls();
$this->register_style_excerpt_controls();
$this->register_style_meta_controls();
$this->register_style_button_controls();
$this->register_style_pagination_controls();
$this->register_style_arrows_controls();
$this->register_style_dots_controls();
}
public function register_layout_controls( Widget_Base $widget ) {
$this->parent = $widget;
$this->register_layout_content_controls();
}
public function register_layout_content_controls() {
$this->add_control(
'layout',
array(
'label' => __( 'Layout', 'powerpack' ),
'type' => Controls_Manager::SELECT,
'options' => array(
'grid' => __( 'Grid', 'powerpack' ),
'masonry' => __( 'Masonry', 'powerpack' ),
'carousel' => __( 'Carousel', 'powerpack' ),
),
'default' => 'grid',
'condition' => array(
'_skin!' => 'checkerboard',
),
)
);
$this->add_responsive_control(
'columns',
array(
'label' => __( 'Columns', 'powerpack' ),
'type' => Controls_Manager::SELECT,
'default' => '3',
'tablet_default' => '2',
'mobile_default' => '1',
'options' => array(
'1' => '1',
'2' => '2',
'3' => '3',
'4' => '4',
'5' => '5',
'6' => '6',
'7' => '7',
'8' => '8',
),
'prefix_class' => 'elementor-grid%s-',
'render_type' => 'template',
)
);
$this->add_control(
'equal_height',
array(
'label' => __( 'Equal Height', 'powerpack' ),
'type' => Controls_Manager::SWITCHER,
'default' => '',
'label_on' => __( 'Yes', 'powerpack' ),
'label_off' => __( 'No', 'powerpack' ),
'return_value' => 'yes',
'prefix_class' => 'pp-equal-height-',
'render_type' => 'template',
'condition' => array(
$this->get_control_id( 'layout!' ) => 'masonry',
),
)
);
}
public function register_slider_controls() {
$this->start_controls_section(
'section_slider_options',
array(
'label' => __( 'Carousel Options', 'powerpack' ),
'tab' => Controls_Manager::TAB_CONTENT,
'condition' => array(
$this->get_control_id( 'layout' ) => 'carousel',
),
)
);
$slides_per_view = range( 1, 10 );
$slides_per_view = array_combine( $slides_per_view, $slides_per_view );
$this->add_responsive_control(
'slides_to_scroll',
array(
'type' => Controls_Manager::SELECT,
'label' => __( 'Slides to Scroll', 'powerpack' ),
'description' => __( 'Set how many slides are scrolled per swipe.', 'powerpack' ),
'options' => $slides_per_view,
'default' => '1',
'tablet_default' => '1',
'mobile_default' => '1',
'condition' => array(
$this->get_control_id( 'layout' ) => 'carousel',
$this->get_control_id( 'center_mode!' ) => 'yes',
),
)
);
$this->add_control(
'animation_speed',
array(
'label' => __( 'Animation Speed', 'powerpack' ),
'type' => Controls_Manager::NUMBER,
'default' => 600,
'condition' => array(
$this->get_control_id( 'layout' ) => 'carousel',
),
)
);
$this->add_control(
'arrows',
array(
'label' => __( 'Arrows', 'powerpack' ),
'type' => Controls_Manager::SWITCHER,
'default' => 'yes',
'label_on' => __( 'Yes', 'powerpack' ),
'label_off' => __( 'No', 'powerpack' ),
'return_value' => 'yes',
'condition' => array(
$this->get_control_id( 'layout' ) => 'carousel',
),
)
);
$this->add_control(
'dots',
array(
'label' => __( 'Dots', 'powerpack' ),
'type' => Controls_Manager::SWITCHER,
'default' => 'no',
'label_on' => __( 'Yes', 'powerpack' ),
'label_off' => __( 'No', 'powerpack' ),
'return_value' => 'yes',
'condition' => array(
$this->get_control_id( 'layout' ) => 'carousel',
),
)
);
$this->add_control(
'autoplay',
array(
'label' => __( 'Autoplay', 'powerpack' ),
'type' => Controls_Manager::SWITCHER,
'default' => 'yes',
'label_on' => __( 'Yes', 'powerpack' ),
'label_off' => __( 'No', 'powerpack' ),
'return_value' => 'yes',
'frontend_available' => true,
'condition' => array(
$this->get_control_id( 'layout' ) => 'carousel',
),
)
);
$this->add_control(
'autoplay_speed',
array(
'label' => __( 'Autoplay Speed', 'powerpack' ),
'type' => Controls_Manager::NUMBER,
'default' => 3000,
'frontend_available' => true,
'condition' => array(
$this->get_control_id( 'layout' ) => 'carousel',
$this->get_control_id( 'autoplay' ) => 'yes',
),
)
);
$this->add_control(
'pause_on_hover',
array(
'label' => __( 'Pause on Hover', 'powerpack' ),
'type' => Controls_Manager::SWITCHER,
'default' => 'yes',
'label_on' => __( 'Yes', 'powerpack' ),
'label_off' => __( 'No', 'powerpack' ),
'return_value' => 'yes',
'frontend_available' => true,
'condition' => array(
$this->get_control_id( 'layout' ) => 'carousel',
$this->get_control_id( 'autoplay' ) => 'yes',
),
)
);
$this->add_control(
'infinite_loop',
array(
'label' => __( 'Infinite Loop', 'powerpack' ),
'type' => Controls_Manager::SWITCHER,
'default' => 'yes',
'label_on' => __( 'Yes', 'powerpack' ),
'label_off' => __( 'No', 'powerpack' ),
'return_value' => 'yes',
'condition' => array(
$this->get_control_id( 'layout' ) => 'carousel',
),
)
);
$this->add_control(
'adaptive_height',
array(
'label' => __( 'Adaptive Height', 'powerpack' ),
'type' => Controls_Manager::SWITCHER,
'default' => 'yes',
'label_on' => __( 'Yes', 'powerpack' ),
'label_off' => __( 'No', 'powerpack' ),
'return_value' => 'yes',
'condition' => array(
$this->get_control_id( 'layout' ) => 'carousel',
),
)
);
$this->add_control(
'center_mode',
[
'label' => __( 'Center Mode', 'powerpack' ),
'type' => Controls_Manager::SWITCHER,
'default' => '',
'label_on' => __( 'Yes', 'powerpack' ),
'label_off' => __( 'No', 'powerpack' ),
'return_value' => 'yes',
'frontend_available' => true,
]
);
$this->add_control(
'direction',
array(
'label' => __( 'Direction', 'powerpack' ),
'type' => Controls_Manager::CHOOSE,
'label_block' => false,
'toggle' => false,
'options' => array(
'left' => array(
'title' => __( 'Left', 'powerpack' ),
'icon' => 'eicon-h-align-left',
),
'right' => array(
'title' => __( 'Right', 'powerpack' ),
'icon' => 'eicon-h-align-right',
),
),
'default' => 'left',
'condition' => array(
$this->get_control_id( 'layout' ) => 'carousel',
),
)
);
$this->end_controls_section();
}
public function register_filter_section_controls() {
$this->start_controls_section(
'section_filters',
array(
'label' => __( 'Filters', 'powerpack' ),
'tab' => Controls_Manager::TAB_CONTENT,
'conditions' => array(
'relation' => 'or',
'terms' => array(
array(
'relation' => 'and',
'terms' => array(
array(
'name' => '_skin',
'operator' => '==',
'value' => 'checkerboard',
),
array(
'name' => 'query_type',
'operator' => '==',
'value' => 'custom',
),
array(
'name' => 'post_type',
'operator' => '!=',
'value' => 'related',
),
),
),
array(
'relation' => 'and',
'terms' => array(
array(
'name' => 'query_type',
'operator' => '==',
'value' => 'custom',
),
array(
'name' => 'post_type',
'operator' => '!=',
'value' => 'related',
),
array(
'name' => $this->get_control_id( 'layout' ),
'operator' => '!=',
'value' => 'carousel',
),
),
),
),
),
)
);
$this->add_control(
'show_filters',
array(
'label' => __( 'Show Filters', 'powerpack' ),
'type' => Controls_Manager::SWITCHER,
'label_on' => __( 'Yes', 'powerpack' ),
'label_off' => __( 'No', 'powerpack' ),
'return_value' => 'yes',
'default' => 'no',
'conditions' => array(
'relation' => 'or',
'terms' => array(
array(
'relation' => 'and',
'terms' => array(
array(
'name' => '_skin',
'operator' => '==',
'value' => 'checkerboard',
),
array(
'name' => 'query_type',
'operator' => '==',
'value' => 'custom',
),
array(
'name' => 'post_type',
'operator' => '!=',
'value' => 'related',
),
),
),
array(
'relation' => 'and',
'terms' => array(
array(
'name' => 'post_type',
'operator' => '!=',
'value' => 'related',
),
array(
'name' => 'query_type',
'operator' => '==',
'value' => 'custom',
),
array(
'name' => $this->get_control_id( 'layout' ),
'operator' => '!=',
'value' => 'carousel',
),
),
),
),
),
)
);
$post_types = PP_Posts_Helper::get_post_types();
foreach ( $post_types as $post_type_slug => $post_type_label ) {
$taxonomy = PP_Posts_Helper::get_post_taxonomies( $post_type_slug );
if ( ! empty( $taxonomy ) ) {
$related_tax = array();
// Get all taxonomy values under the taxonomy.
foreach ( $taxonomy as $index => $tax ) {
$terms = get_terms( $index );
$related_tax[ $index ] = $tax->label;
}
// Add control for all taxonomies.
$this->add_control(
'tax_' . $post_type_slug . '_filter',
array(
'label' => __( 'Filter By', 'powerpack' ),
'type' => Controls_Manager::SELECT2,
'options' => $related_tax,
'multiple' => true,
'label_block' => true,
'default' => array_keys( $related_tax )[0],
'conditions' => array(
'relation' => 'or',
'terms' => array(
array(
'relation' => 'and',
'terms' => array(
array(
'name' => '_skin',
'operator' => '==',
'value' => 'checkerboard',
),
array(
'name' => $this->get_control_id( 'show_filters' ),
'operator' => '==',
'value' => 'yes',
),
array(
'name' => 'query_type',
'operator' => '==',
'value' => 'custom',
),
array(
'name' => 'post_type',
'operator' => '==',
'value' => $post_type_slug,
),
),
),
array(
'relation' => 'and',
'terms' => array(
array(
'name' => $this->get_control_id( 'show_filters' ),
'operator' => '==',
'value' => 'yes',
),
array(
'name' => 'query_type',
'operator' => '==',
'value' => 'custom',
),
array(
'name' => 'post_type',
'operator' => '==',
'value' => $post_type_slug,
),
array(
'name' => $this->get_control_id( 'layout' ),
'operator' => '!=',
'value' => 'carousel',
),
),
),
),
),
)
);
}
}
$this->add_control(
'filters_orderby',
array(
'label' => __( 'Order By', 'powerpack' ),
'type' => Controls_Manager::SELECT,
'default' => 'name',
'options' => array(
'name' => __( 'Name', 'powerpack' ),
'term_id' => __( 'Term ID', 'powerpack' ),
'count' => __( 'Post Count', 'powerpack' ),
'slug' => __( 'Slug', 'powerpack' ),
'description' => __( 'Description', 'powerpack' ),
'parent' => __( 'Term Parent', 'powerpack' ),
'menu_order' => __( 'Menu Order', 'powerpack' ),
),
'conditions' => array(
'relation' => 'or',
'terms' => array(
array(
'relation' => 'and',
'terms' => array(
array(
'name' => '_skin',
'operator' => '==',
'value' => 'checkerboard',
),
array(
'name' => 'query_type',
'operator' => '==',
'value' => 'custom',
),
array(
'name' => $this->get_control_id( 'show_filters' ),
'operator' => '==',
'value' => 'yes',
),
),
),
array(
'relation' => 'and',
'terms' => array(
array(
'name' => 'query_type',
'operator' => '==',
'value' => 'custom',
),
array(
'name' => $this->get_control_id( 'show_filters' ),
'operator' => '==',
'value' => 'yes',
),
array(
'name' => $this->get_control_id( 'layout' ),
'operator' => '!=',
'value' => 'carousel',
),
),
),
),
),
)
);
$this->add_control(
'filters_order',
array(
'label' => __( 'Order', 'powerpack' ),
'type' => Controls_Manager::SELECT,
'default' => 'ASC',
'options' => array(
'ASC' => __( 'Ascending', 'powerpack' ),
'DESC' => __( 'Descending', 'powerpack' ),
),
'conditions' => array(
'relation' => 'or',
'terms' => array(
array(
'relation' => 'and',
'terms' => array(
array(
'name' => '_skin',
'operator' => '==',
'value' => 'checkerboard',
),
array(
'name' => 'query_type',
'operator' => '==',
'value' => 'custom',
),
array(
'name' => $this->get_control_id( 'show_filters' ),
'operator' => '==',
'value' => 'yes',
),
),
),
array(
'relation' => 'and',
'terms' => array(
array(
'name' => 'query_type',
'operator' => '==',
'value' => 'custom',
),
array(
'name' => $this->get_control_id( 'show_filters' ),
'operator' => '==',
'value' => 'yes',
),
array(
'name' => $this->get_control_id( 'layout' ),
'operator' => '!=',
'value' => 'carousel',
),
),
),
),
),
)
);
$this->add_control(
'filter_all_label',
array(
'label' => __( '"All" Filter Label', 'powerpack' ),
'type' => Controls_Manager::TEXT,
'default' => __( 'All', 'powerpack' ),
'conditions' => array(
'relation' => 'or',
'terms' => array(
array(
'relation' => 'and',
'terms' => array(
array(
'name' => '_skin',
'operator' => '==',
'value' => 'checkerboard',
),
array(
'name' => 'query_type',
'operator' => '==',
'value' => 'custom',
),
array(
'name' => $this->get_control_id( 'show_filters' ),
'operator' => '==',
'value' => 'yes',
),
),
),
array(
'relation' => 'and',
'terms' => array(
array(
'name' => 'query_type',
'operator' => '==',
'value' => 'custom',
),
array(
'name' => $this->get_control_id( 'show_filters' ),
'operator' => '==',
'value' => 'yes',
),
array(
'name' => $this->get_control_id( 'layout' ),
'operator' => '!=',
'value' => 'carousel',
),
),
),
),
),
)
);
$this->add_control(
'enable_active_filter',
array(
'label' => __( 'Default Active Filter', 'powerpack' ),
'type' => Controls_Manager::SWITCHER,
'label_on' => __( 'Yes', 'powerpack' ),
'label_off' => __( 'No', 'powerpack' ),
'return_value' => 'yes',
'default' => 'no',
'conditions' => array(
'relation' => 'or',
'terms' => array(
array(
'relation' => 'and',
'terms' => array(
array(
'name' => '_skin',
'operator' => '==',
'value' => 'checkerboard',
),
array(
'name' => 'query_type',
'operator' => '==',
'value' => 'custom',
),
array(
'name' => $this->get_control_id( 'show_filters' ),
'operator' => '==',
'value' => 'yes',
),
),
),
array(
'relation' => 'and',
'terms' => array(
array(
'name' => 'query_type',
'operator' => '==',
'value' => 'custom',
),
array(
'name' => $this->get_control_id( 'show_filters' ),
'operator' => '==',
'value' => 'yes',
),
array(
'name' => $this->get_control_id( 'layout' ),
'operator' => '!=',
'value' => 'carousel',
),
),
),
),
),
)
);
// Active filter
$this->add_control(
'filter_active',
array(
'label' => __( 'Active Filter', 'powerpack' ),
'type' => 'pp-query',
'post_type' => '',
'options' => array(),
'label_block' => true,
'multiple' => false,
'query_type' => 'terms',
'object_type' => '',
'include_type' => true,
'conditions' => array(
'relation' => 'or',
'terms' => array(
array(
'relation' => 'and',
'terms' => array(
array(
'name' => '_skin',
'operator' => '==',
'value' => 'checkerboard',
),
array(
'name' => 'query_type',
'operator' => '==',
'value' => 'custom',
),
array(
'name' => $this->get_control_id( 'show_filters' ),
'operator' => '==',
'value' => 'yes',
),
array(
'name' => $this->get_control_id( 'enable_active_filter' ),
'operator' => '==',
'value' => 'yes',
),
),
),
array(
'relation' => 'and',
'terms' => array(
array(
'name' => 'query_type',
'operator' => '==',
'value' => 'custom',
),
array(
'name' => $this->get_control_id( 'show_filters' ),
'operator' => '==',
'value' => 'yes',
),
array(
'name' => $this->get_control_id( 'enable_active_filter' ),
'operator' => '==',
'value' => 'yes',
),
array(
'name' => $this->get_control_id( 'layout' ),
'operator' => '!=',
'value' => 'carousel',
),
),
),
),
),
)
);
$this->add_control(
'show_filters_count',
array(
'label' => __( 'Show Post Count', 'powerpack' ),
'type' => Controls_Manager::SWITCHER,
'label_on' => __( 'Yes', 'powerpack' ),
'label_off' => __( 'No', 'powerpack' ),
'return_value' => 'yes',
'default' => 'no',
'conditions' => array(
'relation' => 'or',
'terms' => array(
array(
'relation' => 'and',
'terms' => array(
array(
'name' => '_skin',
'operator' => '==',
'value' => 'checkerboard',
),
array(
'name' => 'query_type',
'operator' => '==',
'value' => 'custom',
),
array(
'name' => $this->get_control_id( 'show_filters' ),
'operator' => '==',
'value' => 'yes',
),
),
),
array(
'relation' => 'and',
'terms' => array(
array(
'name' => 'query_type',
'operator' => '==',
'value' => 'custom',
),
array(
'name' => $this->get_control_id( 'show_filters' ),
'operator' => '==',
'value' => 'yes',
),
array(
'name' => $this->get_control_id( 'layout' ),
'operator' => '!=',
'value' => 'carousel',
),
),
),
),
),
)
);
$this->add_control(
'responsive_support',
array(
'label' => __( 'Dropdown Filters', 'powerpack' ),
'type' => Controls_Manager::SELECT,
'default' => 'no',
'options' => array(
'no' => __( 'No', 'powerpack' ),
'desktop' => __( 'For All Devices', 'powerpack' ),
'tablet' => __( 'For Tablet & Mobile', 'powerpack' ),
'mobile' => __( 'For Mobile Only', 'powerpack' ),
),
'conditions' => array(
'relation' => 'or',
'terms' => array(
array(
'relation' => 'and',
'terms' => array(
array(
'name' => '_skin',
'operator' => '==',
'value' => 'checkerboard',
),
array(
'name' => 'query_type',
'operator' => '==',
'value' => 'custom',
),
array(
'name' => $this->get_control_id( 'show_filters' ),
'operator' => '==',
'value' => 'yes',
),
),
),
array(
'relation' => 'and',
'terms' => array(
array(
'name' => 'query_type',
'operator' => '==',
'value' => 'custom',
),
array(
'name' => $this->get_control_id( 'show_filters' ),
'operator' => '==',
'value' => 'yes',
),
array(
'name' => $this->get_control_id( 'layout' ),
'operator' => '!=',
'value' => 'carousel',
),
),
),
),
),
)
);
$this->add_responsive_control(
'filter_alignment',
array(
'label' => __( 'Alignment', 'powerpack' ),
'label_block' => false,
'type' => Controls_Manager::CHOOSE,
'default' => 'left',
'options' => array(
'left' => array(
'title' => __( 'Left', 'powerpack' ),
'icon' => 'eicon-h-align-left',
),
'center' => array(
'title' => __( 'Center', 'powerpack' ),
'icon' => 'eicon-h-align-center',
),
'right' => array(
'title' => __( 'Right', 'powerpack' ),
'icon' => 'eicon-h-align-right',
),
),
'prefix_class' => 'pp-post-filters%s-align-',
'selectors' => array(
'{{WRAPPER}} .pp-post-filters, {{WRAPPER}} .pp-post-filters-dropdown' => 'text-align: {{VALUE}};',
),
'conditions' => array(
'relation' => 'or',
'terms' => array(
array(
'relation' => 'and',
'terms' => array(
array(
'name' => '_skin',
'operator' => '==',
'value' => 'checkerboard',
),
array(
'name' => 'query_type',
'operator' => '==',
'value' => 'custom',
),
array(
'name' => $this->get_control_id( 'show_filters' ),
'operator' => '==',
'value' => 'yes',
),
),
),
array(
'relation' => 'and',
'terms' => array(
array(
'name' => 'query_type',
'operator' => '==',
'value' => 'custom',
),
array(
'name' => $this->get_control_id( 'show_filters' ),
'operator' => '==',
'value' => 'yes',
),
array(
'name' => $this->get_control_id( 'layout' ),
'operator' => '!=',
'value' => 'carousel',
),
),
),
),
),
)
);
$this->end_controls_section();
}
/**
* Content Tab: Search Form
*
* @since 1.4.11.0
* @access protected
*/
protected function register_search_controls() {
$this->start_controls_section(
'section_search_form',
array(
'label' => __( 'Search Form', 'powerpack' ),
'conditions' => array(
'relation' => 'or',
'terms' => array(
array(
'name' => '_skin',
'operator' => '==',
'value' => 'checkerboard',
),
array(
'name' => $this->get_control_id( 'layout' ),
'operator' => '!=',
'value' => 'carousel',
),
),
),
)
);
$this->add_control(
'show_ajax_search_form',
array(
'label' => __( 'Show Search Form', 'powerpack' ),
'type' => Controls_Manager::SWITCHER,
'default' => '',
'label_on' => __( 'Yes', 'powerpack' ),
'label_off' => __( 'No', 'powerpack' ),
'return_value' => 'yes',
'frontend_available' => true,
'conditions' => array(
'relation' => 'or',
'terms' => array(
array(
'name' => '_skin',
'operator' => '==',
'value' => 'checkerboard',
),
array(
'name' => $this->get_control_id( 'layout' ),
'operator' => '!=',
'value' => 'carousel',
),
),
),
)
);
$this->add_control(
'search_form_action',
array(
'label' => __( 'Search Action On', 'powerpack' ),
'type' => Controls_Manager::SELECT,
'default' => 'button-click',
'options' => array(
'instant' => __( 'Instant', 'powerpack' ),
'button-click' => __( 'Button Click', 'powerpack' ),
),
'conditions' => array(
'relation' => 'or',
'terms' => array(
array(
'relation' => 'and',
'terms' => array(
array(
'name' => '_skin',
'operator' => '==',
'value' => 'checkerboard',
),
array(
'name' => $this->get_control_id( 'show_ajax_search_form' ),
'operator' => '==',
'value' => 'yes',
),
),
),
array(
'relation' => 'and',
'terms' => array(
array(
'name' => $this->get_control_id( 'layout' ),
'operator' => '!=',
'value' => 'carousel',
),
array(
'name' => $this->get_control_id( 'show_ajax_search_form' ),
'operator' => '==',
'value' => 'yes',
),
),
),
),
),
)
);
$this->add_control(
'search_form_input_placeholder',
array(
'label' => __( 'Placeholder', 'powerpack' ),
'type' => Controls_Manager::TEXT,
'default' => __( 'Search', 'powerpack' ) . '...',
'conditions' => array(
'relation' => 'or',
'terms' => array(
array(
'relation' => 'and',
'terms' => array(
array(
'name' => '_skin',
'operator' => '==',
'value' => 'checkerboard',
),
array(
'name' => $this->get_control_id( 'show_ajax_search_form' ),
'operator' => '==',
'value' => 'yes',
),
),
),
array(
'relation' => 'and',
'terms' => array(
array(
'name' => $this->get_control_id( 'layout' ),
'operator' => '!=',
'value' => 'carousel',
),
array(
'name' => $this->get_control_id( 'show_ajax_search_form' ),
'operator' => '==',
'value' => 'yes',
),
),
),
),
),
)
);
$this->add_control(
'search_form_button_type',
array(
'label' => __( 'Button Type', 'powerpack' ),
'type' => Controls_Manager::SELECT,
'default' => 'icon',
'options' => array(
'icon' => __( 'Icon', 'powerpack' ),
'text' => __( 'Text', 'powerpack' ),
),
'prefix_class' => 'pp-search-form-',
'render_type' => 'template',
'conditions' => array(
'relation' => 'or',
'terms' => array(
array(
'relation' => 'and',
'terms' => array(
array(
'name' => '_skin',
'operator' => '==',
'value' => 'checkerboard',
),
array(
'name' => $this->get_control_id( 'show_ajax_search_form' ),
'operator' => '==',
'value' => 'yes',
),
),
),
array(
'relation' => 'and',
'terms' => array(
array(
'name' => $this->get_control_id( 'layout' ),
'operator' => '!=',
'value' => 'carousel',
),
array(
'name' => $this->get_control_id( 'show_ajax_search_form' ),
'operator' => '==',
'value' => 'yes',
),
),
),
),
),
)
);
$this->add_control(
'search_form_button_text',
array(
'label' => __( 'Text', 'powerpack' ),
'type' => Controls_Manager::TEXT,
'default' => __( 'Search', 'powerpack' ),
'conditions' => array(
'relation' => 'or',
'terms' => array(
array(
'relation' => 'and',
'terms' => array(
array(
'name' => '_skin',
'operator' => '==',
'value' => 'checkerboard',
),
array(
'name' => $this->get_control_id( 'show_ajax_search_form' ),
'operator' => '==',
'value' => 'yes',
),
array(
'name' => $this->get_control_id( 'search_form_button_type' ),
'operator' => '==',
'value' => 'text',
),
),
),
array(
'relation' => 'and',
'terms' => array(
array(
'name' => $this->get_control_id( 'layout' ),
'operator' => '!=',
'value' => 'carousel',
),
array(
'name' => $this->get_control_id( 'show_ajax_search_form' ),
'operator' => '==',
'value' => 'yes',
),
array(
'name' => $this->get_control_id( 'search_form_button_type' ),
'operator' => '==',
'value' => 'text',
),
),
),
),
),
)
);
$this->add_control(
'search_button_icon',
array(
'label' => __( 'Icon', 'powerpack' ),
'type' => Controls_Manager::CHOOSE,
'label_block' => false,
'default' => 'search',
'options' => array(
'search' => array(
'title' => __( 'Search', 'powerpack' ),
'icon' => 'eicon-search',
),
'arrow' => array(
'title' => __( 'Arrow', 'powerpack' ),
'icon' => 'eicon-arrow-right',
),
),
'conditions' => array(
'relation' => 'or',
'terms' => array(
array(
'relation' => 'and',
'terms' => array(
array(
'name' => '_skin',
'operator' => '==',
'value' => 'checkerboard',
),
array(
'name' => $this->get_control_id( 'show_ajax_search_form' ),
'operator' => '==',
'value' => 'yes',
),
array(
'name' => $this->get_control_id( 'search_form_button_type' ),
'operator' => '==',
'value' => 'text',
),
),
),
array(
'relation' => 'and',
'terms' => array(
array(
'name' => $this->get_control_id( 'layout' ),
'operator' => '!=',
'value' => 'carousel',
),
array(
'name' => $this->get_control_id( 'show_ajax_search_form' ),
'operator' => '==',
'value' => 'yes',
),
array(
'name' => $this->get_control_id( 'search_form_button_type' ),
'operator' => '==',
'value' => 'icon',
),
),
),
),
),
)
);
$this->end_controls_section();
}
protected function register_terms_controls() {
/**
* Content Tab: Post Terms
*/
$this->start_controls_section(
'section_terms',
array(
'label' => __( 'Post Terms', 'powerpack' ),
'condition' => array(
'_skin!' => 'custom',
),
)
);
$this->add_control(
'post_terms',
array(
'label' => __( 'Show Post Terms', 'powerpack' ),
'type' => Controls_Manager::SWITCHER,
'default' => 'yes',
'label_on' => __( 'Yes', 'powerpack' ),
'label_off' => __( 'No', 'powerpack' ),
'return_value' => 'yes',
)
);
$post_types = PP_Posts_Helper::get_post_types();
foreach ( $post_types as $post_type_slug => $post_type_label ) {
$taxonomy = PP_Posts_Helper::get_post_taxonomies( $post_type_slug );
if ( ! empty( $taxonomy ) ) {
$related_tax = array();
// Get all taxonomy values under the taxonomy.
foreach ( $taxonomy as $index => $tax ) {
$terms = get_terms( $index );
$related_tax[ $index ] = $tax->label;
}
// Add control for all taxonomies.
$this->add_control(
'tax_badge_' . $post_type_slug,
array(
'label' => __( 'Select Taxonomy', 'powerpack' ),
'type' => Controls_Manager::SELECT2,
'options' => $related_tax,
'multiple' => true,
'default' => array_keys( $related_tax )[0],
'condition' => array(
'post_type' => $post_type_slug,
$this->get_control_id( 'post_terms' ) => 'yes',
),
)
);
}
}
$this->add_control(
'max_terms',
array(
'label' => __( 'Max Terms to Show', 'powerpack' ),
'type' => Controls_Manager::NUMBER,
'default' => 1,
'condition' => array(
$this->get_control_id( 'post_terms' ) => 'yes',
),
'label_block' => false,
)
);
$this->add_control(
'post_taxonomy_link',
array(
'label' => __( 'Link to Taxonomy', 'powerpack' ),
'type' => Controls_Manager::SWITCHER,
'default' => 'yes',
'label_on' => __( 'Yes', 'powerpack' ),
'label_off' => __( 'No', 'powerpack' ),
'return_value' => 'yes',
'condition' => array(
$this->get_control_id( 'post_terms' ) => 'yes',
),
)
);
$this->add_control(
'post_terms_separator',
array(
'label' => __( 'Terms Separator', 'powerpack' ),
'type' => Controls_Manager::TEXT,
'default' => ',',
'selectors' => array(
'{{WRAPPER}} .pp-post-terms > .pp-post-term:not(:last-child):after' => 'content: "{{UNIT}}";',
),
'condition' => array(
$this->get_control_id( 'post_terms' ) => 'yes',
),
)
);
$this->end_controls_section();
}
/**
* Content Tab: Image
*/
protected function register_image_controls() {
$this->start_controls_section(
'section_image',
array(
'label' => __( 'Image', 'powerpack' ),
'condition' => array(
'_skin!' => 'custom',
),
)
);
$this->add_control(
'show_thumbnail',
array(
'label' => __( 'Show Image', 'powerpack' ),
'type' => Controls_Manager::SWITCHER,
'default' => 'yes',
'label_on' => __( 'Yes', 'powerpack' ),
'label_off' => __( 'No', 'powerpack' ),
'return_value' => 'yes',
)
);
$this->add_control(
'thumbnail_link',
array(
'label' => __( 'Link to Post', 'powerpack' ),
'type' => Controls_Manager::SWITCHER,
'default' => 'yes',
'label_on' => __( 'Yes', 'powerpack' ),
'label_off' => __( 'No', 'powerpack' ),
'return_value' => 'yes',
'condition' => array(
$this->get_control_id( 'show_thumbnail' ) => 'yes',
),
)
);
$this->add_control(
'thumbnail_link_target',
array(
'label' => __( 'Open in a New Tab', 'powerpack' ),
'type' => Controls_Manager::SWITCHER,
'condition' => array(
$this->get_control_id( 'show_thumbnail' ) => 'yes',
$this->get_control_id( 'thumbnail_link' ) => 'yes',
),
)
);
$this->add_control(
'thumbnail_custom_height',
array(
'label' => __( 'Custom Height', 'powerpack' ),
'type' => Controls_Manager::SWITCHER,
'default' => '',
'label_on' => __( 'Yes', 'powerpack' ),
'label_off' => __( 'No', 'powerpack' ),
'return_value' => 'ratio',
'prefix_class' => 'pp-posts-thumbnail-',
'condition' => array(
$this->get_control_id( 'show_thumbnail' ) => 'yes',
),
)
);
$this->add_responsive_control(
'thumbnail_ratio',
array(
'label' => __( 'Image Ratio', 'powerpack' ),
'type' => Controls_Manager::SLIDER,
'default' => array(
'size' => 1,
),
'tablet_default' => array(
'size' => '',
),
'mobile_default' => array(
'size' => 1,
),
'range' => array(
'px' => array(
'min' => 0.1,
'max' => 2,
'step' => 0.01,
),
),
'selectors' => array(
'{{WRAPPER}} .pp-posts-container .pp-post-thumbnail-wrap' => 'padding-bottom: calc( {{SIZE}} * 100% );',
),
'condition' => array(
$this->get_control_id( 'show_thumbnail' ) => 'yes',
$this->get_control_id( 'thumbnail_custom_height!' ) => '',
),
)
);
$this->add_group_control(
Group_Control_Image_Size::get_type(),
array(
'name' => 'thumbnail',
'label' => __( 'Image Size', 'powerpack' ),
'default' => 'large',
'exclude' => array( 'custom' ),
'condition' => array(
$this->get_control_id( 'show_thumbnail' ) => 'yes',
),
)
);
$this->add_control(
'thumbnail_location',
array(
'label' => __( 'Image Location', 'powerpack' ),
'type' => Controls_Manager::SELECT,
'options' => array(
'inside' => __( 'Inside Content Container', 'powerpack' ),
'outside' => __( 'Outside Content Container', 'powerpack' ),
),
'default' => 'outside',
'condition' => array(
$this->get_control_id( 'show_thumbnail' ) => 'yes',
),
)
);
$this->add_control(
'fallback_image',
array(
'label' => __( 'Fallback Image', 'powerpack' ),
'description' => __( 'If a featured image is not available in post, it will display the first image from the post or default image placeholder or a custom image. You can choose None to do not display the fallback image.', 'powerpack' ),
'type' => Controls_Manager::SELECT,
'options' => array(
'none' => __( 'None', 'powerpack' ),
'default' => __( 'Default', 'powerpack' ),
'custom' => __( 'Custom', 'powerpack' ),
),
'default' => 'default',
'condition' => array(
$this->get_control_id( 'show_thumbnail' ) => 'yes',
),
)
);
$this->add_control(
'fallback_image_custom',
array(
'label' => __( 'Fallback Image Custom', 'powerpack' ),
'type' => Controls_Manager::MEDIA,
'dynamic' => array(
'active' => true,
),
'condition' => array(
$this->get_control_id( 'show_thumbnail' ) => 'yes',
$this->get_control_id( 'fallback_image' ) => 'custom',
),
)
);
$this->end_controls_section();
}
/**
* Content Tab: Title
*/
protected function register_title_controls() {
$this->start_controls_section(
'section_post_title',
array(
'label' => __( 'Title', 'powerpack' ),
'condition' => array(
'_skin!' => 'custom',
),
)
);
$this->add_control(
'post_title',
array(
'label' => __( 'Post Title', 'powerpack' ),
'type' => Controls_Manager::SWITCHER,
'default' => 'yes',
'label_on' => __( 'Yes', 'powerpack' ),
'label_off' => __( 'No', 'powerpack' ),
'return_value' => 'yes',
)
);
$this->add_control(
'post_title_link',
array(
'label' => __( 'Link to Post', 'powerpack' ),
'type' => Controls_Manager::SWITCHER,
'default' => 'yes',
'label_on' => __( 'Yes', 'powerpack' ),
'label_off' => __( 'No', 'powerpack' ),
'return_value' => 'yes',
'condition' => array(
$this->get_control_id( 'post_title' ) => 'yes',
),
)
);
$this->add_control(
'post_title_link_target',
array(
'label' => __( 'Open in a New Tab', 'powerpack' ),
'type' => Controls_Manager::SWITCHER,
'condition' => array(
$this->get_control_id( 'post_title' ) => 'yes',
$this->get_control_id( 'post_title_link' ) => 'yes',
),
)
);
$this->add_control(
'title_html_tag',
array(
'label' => __( 'HTML Tag', 'powerpack' ),
'type' => Controls_Manager::SELECT,
'default' => 'h2',
'options' => array(
'h1' => __( 'H1', 'powerpack' ),
'h2' => __( 'H2', 'powerpack' ),
'h3' => __( 'H3', 'powerpack' ),
'h4' => __( 'H4', 'powerpack' ),
'h5' => __( 'H5', 'powerpack' ),
'h6' => __( 'H6', 'powerpack' ),
'div' => __( 'div', 'powerpack' ),
'span' => __( 'span', 'powerpack' ),
'p' => __( 'p', 'powerpack' ),
),
'condition' => array(
$this->get_control_id( 'post_title' ) => 'yes',
),
)
);
$this->add_control(
'post_title_separator',
array(
'label' => __( 'Title Separator', 'powerpack' ),
'type' => Controls_Manager::SWITCHER,
'default' => '',
'label_on' => __( 'Yes', 'powerpack' ),
'label_off' => __( 'No', 'powerpack' ),
'return_value' => 'yes',
'condition' => array(
$this->get_control_id( 'post_title' ) => 'yes',
),
)
);
$this->end_controls_section();
}
/**
* Content Tab: Excerpt
*/
protected function register_excerpt_controls() {
$this->start_controls_section(
'section_post_excerpt',
array(
'label' => __( 'Content', 'powerpack' ),
'condition' => array(
'_skin!' => 'custom',
),
)
);
$this->add_control(
'show_excerpt',
array(
'label' => __( 'Show Content', 'powerpack' ),
'type' => Controls_Manager::SWITCHER,
'default' => '',
'label_on' => __( 'Yes', 'powerpack' ),
'label_off' => __( 'No', 'powerpack' ),
'return_value' => 'yes',
)
);
$this->add_control(
'content_type',
array(
'label' => __( 'Content Type', 'powerpack' ),
'type' => Controls_Manager::SELECT,
'default' => 'excerpt',
'options' => array(
'excerpt' => __( 'Excerpt', 'powerpack' ),
'content' => __( 'Limited Content', 'powerpack' ),
'full' => __( 'Full Content', 'powerpack' ),
),
'condition' => array(
$this->get_control_id( 'show_excerpt' ) => 'yes',
),
)
);
$this->add_control(
'excerpt_length',
array(
'label' => __( 'Excerpt Length', 'powerpack' ),
'type' => Controls_Manager::NUMBER,
'default' => 20,
'min' => 0,
'step' => 1,
'condition' => array(
$this->get_control_id( 'show_excerpt' ) => 'yes',
$this->get_control_id( 'content_type' ) => 'excerpt',
),
)
);
$this->add_control(
'content_length',
array(
'label' => __( 'Content Length', 'powerpack' ),
'title' => __( 'Words', 'powerpack' ),
'description' => __( 'Number of words to be displayed from the post content', 'powerpack' ),
'type' => Controls_Manager::NUMBER,
'default' => 30,
'min' => 0,
'step' => 1,
'condition' => array(
$this->get_control_id( 'show_excerpt' ) => 'yes',
$this->get_control_id( 'content_type' ) => 'content',
),
)
);
$this->end_controls_section();
}
/**
* Content Tab: Meta
*/
protected function register_meta_controls() {
$this->start_controls_section(
'section_post_meta',
array(
'label' => __( 'Meta', 'powerpack' ),
'condition' => array(
'_skin!' => 'custom',
),
)
);
$this->add_control(
'post_meta',
array(
'label' => __( 'Post Meta', 'powerpack' ),
'type' => Controls_Manager::SWITCHER,
'default' => 'yes',
'label_on' => __( 'Yes', 'powerpack' ),
'label_off' => __( 'No', 'powerpack' ),
'return_value' => 'yes',
)
);
$this->add_control(
'post_meta_separator',
array(
'label' => __( 'Post Meta Separator', 'powerpack' ),
'type' => Controls_Manager::TEXT,
'default' => '-',
'selectors' => array(
'{{WRAPPER}} .pp-post-meta .pp-meta-separator:not(:last-child):after' => 'content: "{{UNIT}}";',
),
'condition' => array(
$this->get_control_id( 'post_meta' ) => 'yes',
),
)
);
$this->add_control(
'heading_post_author',
array(
'label' => __( 'Post Author', 'powerpack' ),
'type' => Controls_Manager::HEADING,
'separator' => 'before',
'condition' => array(
$this->get_control_id( 'post_meta' ) => 'yes',
),
)
);
$this->add_control(
'show_author',
array(
'label' => __( 'Show Post Author', 'powerpack' ),
'type' => Controls_Manager::SWITCHER,
'default' => '',
'label_on' => __( 'Yes', 'powerpack' ),
'label_off' => __( 'No', 'powerpack' ),
'return_value' => 'yes',
'condition' => array(
$this->get_control_id( 'post_meta' ) => 'yes',
),
)
);
$this->add_control(
'author_link',
array(
'label' => __( 'Link to Author', 'powerpack' ),
'type' => Controls_Manager::SWITCHER,
'default' => 'yes',
'label_on' => __( 'Yes', 'powerpack' ),
'label_off' => __( 'No', 'powerpack' ),
'return_value' => 'yes',
'condition' => array(
$this->get_control_id( 'post_meta' ) => 'yes',
$this->get_control_id( 'show_author' ) => 'yes',
),
)
);
$this->add_control(
'select_author_icon',
array(
'label' => __( 'Author Icon', 'powerpack' ),
'type' => Controls_Manager::ICONS,
'label_block' => false,
'fa4compatibility' => $this->get_control_id( 'author_icon' ),
'skin' => 'inline',
'recommended' => [
'fa-solid' => [
'user',
'user-circle',
'user-tie',
],
'fa-regular' => [
'user',
'user-circle',
],
],
'condition' => array(
$this->get_control_id( 'post_meta' ) => 'yes',
$this->get_control_id( 'show_author' ) => 'yes',
),
)
);
$this->add_control(
'author_prefix',
array(
'label' => __( 'Prefix', 'powerpack' ),
'type' => Controls_Manager::TEXT,
'default' => '',
'condition' => array(
$this->get_control_id( 'post_meta' ) => 'yes',
$this->get_control_id( 'show_author' ) => 'yes',
),
)
);
$this->add_control(
'heading_post_date',
array(
'label' => __( 'Post Date', 'powerpack' ),
'type' => Controls_Manager::HEADING,
'separator' => 'before',
'condition' => array(
$this->get_control_id( 'post_meta' ) => 'yes',
),
)
);
$this->add_control(
'show_date',
array(
'label' => __( 'Show Post Date', 'powerpack' ),
'type' => Controls_Manager::SWITCHER,
'default' => 'yes',
'label_on' => __( 'Yes', 'powerpack' ),
'label_off' => __( 'No', 'powerpack' ),
'return_value' => 'yes',
'condition' => array(
$this->get_control_id( 'post_meta' ) => 'yes',
),
)
);
$this->add_control(
'date_link',
array(
'label' => __( 'Link to Post', 'powerpack' ),
'type' => Controls_Manager::SWITCHER,
'default' => '',
'label_on' => __( 'Yes', 'powerpack' ),
'label_off' => __( 'No', 'powerpack' ),
'return_value' => 'yes',
'condition' => array(
$this->get_control_id( 'post_meta' ) => 'yes',
$this->get_control_id( 'show_date' ) => 'yes',
),
)
);
$this->add_control(
'date_format',
array(
'label' => __( 'Date Type', 'powerpack' ),
'type' => Controls_Manager::SELECT,
'options' => array(
'' => __( 'Published Date', 'powerpack' ),
'ago' => __( 'Time Ago', 'powerpack' ),
'modified' => __( 'Last Modified Date', 'powerpack' ),
'key' => __( 'Custom Meta Key', 'powerpack' ),
),
'default' => '',
'condition' => array(
$this->get_control_id( 'post_meta' ) => 'yes',
$this->get_control_id( 'show_date' ) => 'yes',
),
)
);
$this->add_control(
'date_format_select',
array(
'label' => __( 'Date Format', 'powerpack' ),
'type' => Controls_Manager::SELECT,
'options' => array(
'' => __( 'Default', 'powerpack' ),
'F j, Y' => gmdate( 'F j, Y' ),
'Y-m-d' => gmdate( 'Y-m-d' ),
'm/d/Y' => gmdate( 'm/d/Y' ),
'd/m/Y' => gmdate( 'd/m/Y' ),
'custom' => __( 'Custom', 'powerpack' ),
),
'default' => '',
'condition' => array(
$this->get_control_id( 'post_meta' ) => 'yes',
$this->get_control_id( 'show_date' ) => 'yes',
$this->get_control_id( 'date_format' ) => [ '', 'modified' ],
),
)
);
$this->add_control(
'date_custom_format',
array(
'label' => __( 'Custom Format', 'powerpack' ),
'description' => sprintf( __( 'Refer to PHP date formats <a href="%s">here</a>', 'powerpack' ), 'https://wordpress.org/support/article/formatting-date-and-time/' ),
'type' => Controls_Manager::TEXT,
'label_block' => false,
'default' => get_option( 'date_format' ),
'condition' => array(
$this->get_control_id( 'post_meta' ) => 'yes',
$this->get_control_id( 'show_date' ) => 'yes',
$this->get_control_id( 'date_format' ) => [ '', 'modified' ],
$this->get_control_id( 'date_format_select' ) => 'custom',
),
)
);
$this->add_control(
'date_meta_key',
array(
'label' => __( 'Custom Meta Key', 'powerpack' ),
'description' => __( 'Display the post date stored in custom meta key.', 'powerpack' ),
'type' => Controls_Manager::TEXT,
'label_block' => false,
'default' => '',
'condition' => array(
$this->get_control_id( 'post_meta' ) => 'yes',
$this->get_control_id( 'show_date' ) => 'yes',
$this->get_control_id( 'date_format' ) => 'key',
),
)
);
$this->add_control(
'select_date_icon',
array(
'label' => __( 'Date Icon', 'powerpack' ),
'type' => Controls_Manager::ICONS,
'label_block' => false,
'fa4compatibility' => $this->get_control_id( 'date_icon' ),
'skin' => 'inline',
'recommended' => [
'fa-solid' => [
'calendar',
'calendar-alt',
'calendar-check',
],
'fa-regular' => [
'calendar',
'calendar-alt',
'calendar-check',
],
],
'condition' => array(
$this->get_control_id( 'post_meta' ) => 'yes',
$this->get_control_id( 'show_date' ) => 'yes',
),
)
);
$this->add_control(
'date_prefix',
array(
'label' => __( 'Prefix', 'powerpack' ),
'type' => Controls_Manager::TEXT,
'default' => '',
'condition' => array(
$this->get_control_id( 'post_meta' ) => 'yes',
$this->get_control_id( 'show_date' ) => 'yes',
),
)
);
$this->add_control(
'heading_post_comments',
array(
'label' => __( 'Post Comments', 'powerpack' ),
'type' => Controls_Manager::HEADING,
'separator' => 'before',
'condition' => array(
$this->get_control_id( 'post_meta' ) => 'yes',
),
)
);
$this->add_control(
'show_comments',
array(
'label' => __( 'Show Post Comments', 'powerpack' ),
'type' => Controls_Manager::SWITCHER,
'default' => 'yes',
'label_on' => __( 'Yes', 'powerpack' ),
'label_off' => __( 'No', 'powerpack' ),
'return_value' => 'yes',
'condition' => array(
$this->get_control_id( 'post_meta' ) => 'yes',
),
)
);
$this->add_control(
'hide_empty_comments',
array(
'label' => __( 'Hide if Empty', 'powerpack' ),
'type' => Controls_Manager::SWITCHER,
'default' => '',
'label_on' => __( 'Yes', 'powerpack' ),
'label_off' => __( 'No', 'powerpack' ),
'return_value' => 'yes',
'condition' => array(
$this->get_control_id( 'post_meta' ) => 'yes',
$this->get_control_id( 'show_comments' ) => 'yes',
),
)
);
$this->add_control(
'select_comments_icon',
array(
'label' => __( 'Comments Icon', 'powerpack' ),
'type' => Controls_Manager::ICONS,
'label_block' => false,
'fa4compatibility' => $this->get_control_id( 'comments_icon' ),
'skin' => 'inline',
'recommended' => [
'fa-solid' => [
'comment',
'comment-alt',
'comments',
'comment-dots',
],
'fa-regular' => [
'comment',
'comment-alt',
'comments',
'comment-dots',
],
],
'condition' => array(
$this->get_control_id( 'post_meta' ) => 'yes',
$this->get_control_id( 'show_comments' ) => 'yes',
),
)
);
$this->end_controls_section();
}
protected function register_button_controls() {
$this->start_controls_section(
'section_button',
array(
'label' => __( 'Read More Button', 'powerpack' ),
)
);
$this->add_control(
'show_button',
array(
'label' => __( 'Show Button', 'powerpack' ),
'type' => Controls_Manager::SWITCHER,
'default' => '',
'label_on' => __( 'Yes', 'powerpack' ),
'label_off' => __( 'No', 'powerpack' ),
'return_value' => 'yes',
)
);
$this->add_control(
'button_text',
array(
'label' => __( 'Button Text', 'powerpack' ),
'type' => Controls_Manager::TEXT,
'dynamic' => array(
'active' => true,
),
'default' => __( 'Read More', 'powerpack' ),
'condition' => array(
$this->get_control_id( 'show_button' ) => 'yes',
),
)
);
$this->add_control(
'select_button_icon',
array(
'label' => __( 'Button Icon', 'powerpack' ),
'type' => Controls_Manager::ICONS,
'fa4compatibility' => $this->get_control_id( 'button_icon' ),
'condition' => array(
$this->get_control_id( 'show_button' ) => 'yes',
),
)
);
$this->add_control(
'button_icon_position',
array(
'label' => __( 'Icon Position', 'powerpack' ),
'type' => Controls_Manager::SELECT,
'default' => 'after',
'options' => array(
'after' => __( 'After', 'powerpack' ),
'before' => __( 'Before', 'powerpack' ),
),
'condition' => array(
$this->get_control_id( 'show_button' ) => 'yes',
$this->get_control_id( 'select_button_icon[value]!' ) => '',
),
)
);
$this->add_control(
'button_link_target',
array(
'label' => __( 'Open in a New Tab', 'powerpack' ),
'type' => Controls_Manager::SWITCHER,
'condition' => array(
$this->get_control_id( 'show_button' ) => 'yes',
),
)
);
$this->end_controls_section();
}
public function register_pagination_controls() {
$this->start_controls_section(
'section_pagination',
array(
'label' => __( 'Pagination', 'powerpack' ),
'condition' => array(
$this->get_control_id( 'layout!' ) => 'carousel',
),
)
);
$this->add_control(
'pagination_type',
array(
'label' => __( 'Pagination', 'powerpack' ),
'type' => Controls_Manager::SELECT,
'default' => 'none',
'options' => array(
'none' => __( 'None', 'powerpack' ),
'numbers' => __( 'Numbers', 'powerpack' ),
'numbers_and_prev_next' => __( 'Numbers', 'powerpack' ) . ' + ' . __( 'Previous/Next', 'powerpack' ),
'load_more' => __( 'Load More Button', 'powerpack' ),
'infinite' => __( 'Infinite', 'powerpack' ),
),
'condition' => array(
$this->get_control_id( 'layout!' ) => 'carousel',
),
)
);
$this->add_control(
'pagination_note',
array(
'label' => '',
'type' => \Elementor\Controls_Manager::RAW_HTML,
'raw' => __( 'Load more and Infinite pagination does not work with Main Query.', 'powerpack' ),
'content_classes' => 'pp-editor-info',
'condition' => array(
$this->get_control_id( 'layout!' ) => 'carousel',
$this->get_control_id( 'pagination_type' ) => [ 'load_more', 'infinite' ],
'query_type' => 'main',
),
)
);
$this->add_control(
'pagination_position',
array(
'label' => __( 'Pagination Position', 'powerpack' ),
'type' => Controls_Manager::SELECT,
'default' => 'bottom',
'options' => array(
'top' => __( 'Top', 'powerpack' ),
'bottom' => __( 'Bottom', 'powerpack' ),
'top-bottom' => __( 'Top', 'powerpack' ) . ' + ' . __( 'Bottom', 'powerpack' ),
),
'condition' => array(
$this->get_control_id( 'layout!' ) => 'carousel',
$this->get_control_id( 'pagination_type' ) => array(
'numbers',
'numbers_and_prev_next',
),
),
)
);
$this->add_control(
'pagination_ajax',
array(
'label' => __( 'Ajax Pagination', 'powerpack' ),
'type' => Controls_Manager::SWITCHER,
'default' => 'yes',
'condition' => array(
$this->get_control_id( 'layout!' ) => 'carousel',
$this->get_control_id( 'pagination_type' ) => array(
'numbers',
'numbers_and_prev_next',
),
$this->get_control_id( 'show_filters!' ) => 'yes',
$this->get_control_id( 'show_ajax_search_form!' ) => 'yes',
'query_type!' => 'main',
),
)
);
$this->add_control(
'pagination_page_limit',
array(
'label' => __( 'Page Limit', 'powerpack' ),
'type' => Controls_Manager::NUMBER,
'default' => 5,
'condition' => array(
$this->get_control_id( 'layout!' ) => 'carousel',
$this->get_control_id( 'pagination_type' ) => array(
'numbers',
'numbers_and_prev_next',
),
),
)
);
$this->add_control(
'pagination_numbers_shorten',
array(
'label' => __( 'Shorten', 'powerpack' ),
'type' => Controls_Manager::SWITCHER,
'default' => '',
'condition' => array(
$this->get_control_id( 'layout!' ) => 'carousel',
$this->get_control_id( 'pagination_type' ) => array(
'numbers',
'numbers_and_prev_next',
),
),
)
);
$this->add_control(
'pagination_load_more_label',
array(
'label' => __( 'Button Label', 'powerpack' ),
'default' => __( 'Load More', 'powerpack' ),
'condition' => array(
$this->get_control_id( 'layout!' ) => 'carousel',
$this->get_control_id( 'pagination_type' ) => 'load_more',
),
)
);
$this->add_control(
'pagination_load_more_button_icon',
array(
'label' => __( 'Button Icon', 'powerpack' ),
'type' => Controls_Manager::ICON,
'default' => '',
'condition' => array(
$this->get_control_id( 'layout!' ) => 'carousel',
$this->get_control_id( 'pagination_type' ) => 'load_more',
),
)
);
$this->add_control(
'pagination_load_more_button_icon_position',
array(
'label' => __( 'Icon Position', 'powerpack' ),
'type' => Controls_Manager::SELECT,
'default' => 'after',
'options' => array(
'after' => __( 'After', 'powerpack' ),
'before' => __( 'Before', 'powerpack' ),
),
'condition' => array(
$this->get_control_id( 'layout!' ) => 'carousel',
$this->get_control_id( 'pagination_type' ) => 'load_more',
$this->get_control_id( 'pagination_load_more_button_icon!' ) => '',
),
)
);
$this->add_control(
'pagination_prev_label',
array(
'label' => __( 'Previous Label', 'powerpack' ),
'default' => __( '« Previous', 'powerpack' ),
'condition' => array(
$this->get_control_id( 'layout!' ) => 'carousel',
$this->get_control_id( 'pagination_type' ) => 'numbers_and_prev_next',
),
)
);
$this->add_control(
'pagination_next_label',
array(
'label' => __( 'Next Label', 'powerpack' ),
'default' => __( 'Next »', 'powerpack' ),
'condition' => array(
$this->get_control_id( 'layout!' ) => 'carousel',
$this->get_control_id( 'pagination_type' ) => 'numbers_and_prev_next',
),
)
);
$this->add_control(
'pagination_align',
array(
'label' => __( 'Alignment', 'powerpack' ),
'type' => Controls_Manager::CHOOSE,
'options' => array(
'left' => array(
'title' => __( 'Left', 'powerpack' ),
'icon' => 'eicon-text-align-left',
),
'center' => array(
'title' => __( 'Center', 'powerpack' ),
'icon' => 'eicon-text-align-center',
),
'right' => array(
'title' => __( 'Right', 'powerpack' ),
'icon' => 'eicon-text-align-right',
),
),
'default' => 'center',
'selectors' => array(
'{{WRAPPER}} .pp-posts-pagination-wrap' => 'text-align: {{VALUE}};',
),
'condition' => array(
$this->get_control_id( 'layout!' ) => 'carousel',
$this->get_control_id( 'pagination_type!' ) => 'none',
),
)
);
$this->end_controls_section();
}
/**
* Content Tab: Order
*
* @since 1.4.11.0
* @access protected
*/
protected function register_content_order() {
$this->start_controls_section(
'section_order',
array(
'label' => __( 'Order', 'powerpack' ),
'condition' => array(
'_skin!' => 'custom',
),
)
);
$this->add_control(
'content_parts_order_heading',
array(
'label' => __( 'Content Parts', 'powerpack' ),
'type' => Controls_Manager::HEADING,
)
);
$this->add_control(
'thumbnail_order',
array(
'label' => __( 'Thumbnail', 'powerpack' ),
'type' => Controls_Manager::NUMBER,
'default' => 1,
'min' => 1,
'max' => 10,
'step' => 1,
'condition' => array(
$this->get_control_id( 'show_thumbnail' ) => 'yes',
$this->get_control_id( 'thumbnail_location' ) => 'inside',
),
)
);
$this->add_control(
'terms_order',
array(
'label' => __( 'Terms', 'powerpack' ),
'type' => Controls_Manager::NUMBER,
'default' => 1,
'min' => 1,
'max' => 10,
'step' => 1,
'condition' => array(
$this->get_control_id( 'post_terms' ) => 'yes',
),
)
);
$this->add_control(
'title_order',
array(
'label' => __( 'Title', 'powerpack' ),
'type' => Controls_Manager::NUMBER,
'default' => 1,
'min' => 1,
'max' => 10,
'step' => 1,
'condition' => array(
$this->get_control_id( 'post_title' ) => 'yes',
),
)
);
$this->add_control(
'meta_order',
array(
'label' => __( 'Meta', 'powerpack' ),
'type' => Controls_Manager::NUMBER,
'default' => 1,
'min' => 1,
'max' => 10,
'step' => 1,
'condition' => array(
$this->get_control_id( 'post_meta' ) => 'yes',
),
)
);
$this->add_control(
'excerpt_order',
array(
'label' => __( 'Excerpt', 'powerpack' ),
'type' => Controls_Manager::NUMBER,
'default' => 1,
'min' => 1,
'max' => 10,
'step' => 1,
'condition' => array(
$this->get_control_id( 'show_excerpt' ) => 'yes',
),
)
);
$this->add_control(
'button_order',
array(
'label' => __( 'Read More Button', 'powerpack' ),
'type' => Controls_Manager::NUMBER,
'default' => 1,
'min' => 1,
'max' => 10,
'step' => 1,
'condition' => array(
$this->get_control_id( 'show_button' ) => 'yes',
),
)
);
$this->add_control(
'meta_order_heading',
array(
'label' => __( 'Post Meta', 'powerpack' ),
'type' => Controls_Manager::HEADING,
'separator' => 'before',
'condition' => array(
$this->get_control_id( 'post_meta' ) => 'yes',
),
)
);
$this->add_control(
'author_order',
array(
'label' => __( 'Author', 'powerpack' ),
'type' => Controls_Manager::NUMBER,
'default' => 1,
'min' => 1,
'max' => 10,
'step' => 1,
'condition' => array(
$this->get_control_id( 'post_meta' ) => 'yes',
$this->get_control_id( 'show_author' ) => 'yes',
),
)
);
$this->add_control(
'date_order',
array(
'label' => __( 'Date', 'powerpack' ),
'type' => Controls_Manager::NUMBER,
'default' => 1,
'min' => 1,
'max' => 10,
'step' => 1,
'condition' => array(
$this->get_control_id( 'post_meta' ) => 'yes',
$this->get_control_id( 'show_date' ) => 'yes',
),
)
);
$this->add_control(
'comments_order',
array(
'label' => __( 'Comments', 'powerpack' ),
'type' => Controls_Manager::NUMBER,
'default' => 1,
'min' => 1,
'max' => 10,
'step' => 1,
'condition' => array(
$this->get_control_id( 'post_meta' ) => 'yes',
$this->get_control_id( 'show_comments' ) => 'yes',
),
)
);
$this->end_controls_section();
}
/**
* Content Tab: Help Docs
*
* @since 1.4.8
* @access protected
*/
protected function register_content_help_docs() {
$help_docs = PP_Config::get_widget_help_links( 'Posts' );
if ( ! empty( $help_docs ) ) {
/**
* Content Tab: Help Docs
*
* @since 1.4.8
* @access protected
*/
$this->start_controls_section(
'section_help_docs',
array(
'label' => __( 'Help Docs', 'powerpack' ),
)
);
$hd_counter = 1;
foreach ( $help_docs as $hd_title => $hd_link ) {
$this->add_control(
'help_doc_' . $hd_counter,
array(
'type' => Controls_Manager::RAW_HTML,
'raw' => sprintf( '%1$s ' . $hd_title . ' %2$s', '<a href="' . $hd_link . '" target="_blank" rel="noopener">', '</a>' ),
'content_classes' => 'pp-editor-doc-links',
)
);
$hd_counter++;
}
$this->end_controls_section();
}
}
/* -----------------------------------------------------------------------------------*/
/* STYLE TAB
/*-----------------------------------------------------------------------------------*/
/**
* Style Tab: Layout
*/
protected function register_style_layout_controls() {
$this->start_controls_section(
'section_layout_style',
array(
'label' => __( 'Layout', 'powerpack' ),
'tab' => Controls_Manager::TAB_STYLE,
)
);
$this->add_responsive_control(
'posts_horizontal_spacing',
array(
'label' => __( 'Column Spacing', 'powerpack' ),
'type' => Controls_Manager::SLIDER,
'range' => array(
'px' => array(
'min' => 0,
'max' => 100,
),
),
'default' => array(
'size' => 25,
),
'selectors' => array(
'{{WRAPPER}}' => '--grid-column-gap: {{SIZE}}{{UNIT}}',
'{{WRAPPER}} .pp-posts:not(.elementor-grid)' => 'margin-left: -{{SIZE}}{{UNIT}}',
'{{WRAPPER}} .pp-posts:not(.elementor-grid) .pp-post-wrap' => 'padding-left: {{SIZE}}{{UNIT}}',
),
)
);
$this->add_responsive_control(
'posts_vertical_spacing',
array(
'label' => __( 'Row Spacing', 'powerpack' ),
'type' => Controls_Manager::SLIDER,
'range' => array(
'px' => array(
'min' => 0,
'max' => 100,
),
),
'default' => array(
'size' => 25,
),
'selectors' => array(
'{{WRAPPER}}' => '--grid-row-gap: {{SIZE}}{{UNIT}}',
'{{WRAPPER}} .pp-elementor-grid .pp-grid-item-wrap' => 'margin-bottom: {{SIZE}}{{UNIT}}',
),
'condition' => array(
$this->get_control_id( 'layout!' ) => 'carousel',
),
)
);
$this->end_controls_section();
}
/**
* Style Tab: Box
*/
protected function register_style_box_controls() {
$this->start_controls_section(
'section_post_box_style',
array(
'label' => __( 'Box', 'powerpack' ),
'tab' => Controls_Manager::TAB_STYLE,
)
);
$this->start_controls_tabs( 'tabs_post_box_style' );
$this->start_controls_tab(
'tab_post_box_normal',
array(
'label' => __( 'Normal', 'powerpack' ),
)
);
$this->add_control(
'post_box_bg',
array(
'label' => __( 'Background Color', 'powerpack' ),
'type' => Controls_Manager::COLOR,
'default' => '',
'selectors' => array(
'{{WRAPPER}} .pp-post' => 'background-color: {{VALUE}};',
),
)
);
$this->add_group_control(
Group_Control_Border::get_type(),
array(
'name' => 'post_box_border',
'label' => __( 'Border', 'powerpack' ),
'placeholder' => '1px',
'default' => '1px',
'selector' => '{{WRAPPER}} .pp-post',
)
);
$this->add_responsive_control(
'post_box_border_radius',
array(
'label' => __( 'Border Radius', 'powerpack' ),
'type' => Controls_Manager::DIMENSIONS,
'size_units' => array( 'px', '%', 'em' ),
'selectors' => array(
'{{WRAPPER}} .pp-post' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
),
)
);
$this->add_responsive_control(
'post_box_padding',
array(
'label' => __( 'Padding', 'powerpack' ),
'type' => Controls_Manager::DIMENSIONS,
'size_units' => array( 'px', 'em', '%' ),
'selectors' => array(
'{{WRAPPER}} .pp-post' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
),
)
);
$this->add_group_control(
Group_Control_Box_Shadow::get_type(),
array(
'name' => 'post_box_shadow',
'selector' => '{{WRAPPER}} .pp-post',
)
);
$this->end_controls_tab();
$this->start_controls_tab(
'tab_post_box_hover',
array(
'label' => __( 'Hover', 'powerpack' ),
)
);
$this->add_control(
'post_box_bg_hover',
array(
'label' => __( 'Background Color', 'powerpack' ),
'type' => Controls_Manager::COLOR,
'default' => '',
'selectors' => array(
'{{WRAPPER}} .pp-post:hover' => 'background-color: {{VALUE}};',
),
)
);
$this->add_control(
'post_box_border_color_hover',
array(
'label' => __( 'Border Color', 'powerpack' ),
'type' => Controls_Manager::COLOR,
'default' => '',
'selectors' => array(
'{{WRAPPER}} .pp-post:hover' => 'border-color: {{VALUE}};',
),
)
);
$this->add_group_control(
Group_Control_Box_Shadow::get_type(),
array(
'name' => 'post_box_shadow_hover',
'selector' => '{{WRAPPER}} .pp-post:hover',
)
);
$this->end_controls_tab();
$this->end_controls_tabs();
$this->end_controls_section();
}
/**
* Style Tab: Content Container
*/
protected function register_style_content_controls() {
$this->start_controls_section(
'section_post_content_style',
array(
'label' => __( 'Content Container', 'powerpack' ),
'tab' => Controls_Manager::TAB_STYLE,
)
);
$this->add_control(
'post_content_align',
array(
'label' => __( 'Alignment', 'powerpack' ),
'type' => Controls_Manager::CHOOSE,
'label_block' => false,
'options' => array(
'left' => array(
'title' => __( 'Left', 'powerpack' ),
'icon' => 'eicon-text-align-left',
),
'center' => array(
'title' => __( 'Center', 'powerpack' ),
'icon' => 'eicon-text-align-center',
),
'right' => array(
'title' => __( 'Right', 'powerpack' ),
'icon' => 'eicon-text-align-right',
),
),
'default' => '',
'selectors' => array(
'{{WRAPPER}} .pp-post-content' => 'text-align: {{VALUE}};',
),
)
);
$this->add_control(
'post_content_bg',
array(
'label' => __( 'Background Color', 'powerpack' ),
'type' => Controls_Manager::COLOR,
'default' => '',
'selectors' => array(
'{{WRAPPER}} .pp-post-content' => 'background-color: {{VALUE}};',
),
)
);
$this->add_responsive_control(
'post_content_border_radius',
array(
'label' => __( 'Border Radius', 'powerpack' ),
'type' => Controls_Manager::DIMENSIONS,
'size_units' => array( 'px', '%', 'em' ),
'selectors' => array(
'{{WRAPPER}} .pp-post-content' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
),
)
);
$this->add_responsive_control(
'post_content_padding',
array(
'label' => __( 'Padding', 'powerpack' ),
'type' => Controls_Manager::DIMENSIONS,
'size_units' => array( 'px', 'em', '%' ),
'selectors' => array(
'{{WRAPPER}} .pp-post-content' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
),
)
);
$this->end_controls_section();
}
public function register_style_filter_controls() {
/**
* Style Tab: Filters
*/
$this->start_controls_section(
'section_filter_style',
array(
'label' => __( 'Filters', 'powerpack' ),
'tab' => Controls_Manager::TAB_STYLE,
'condition' => array(
'query_type' => 'custom',
$this->get_control_id( 'layout!' ) => 'carousel',
$this->get_control_id( 'show_filters' ) => 'yes',
),
)
);
$this->add_group_control(
Group_Control_Typography::get_type(),
array(
'name' => 'filter_typography',
'label' => __( 'Typography', 'powerpack' ),
'selector' => '{{WRAPPER}} .pp-post-filters',
'condition' => array(
'query_type' => 'custom',
$this->get_control_id( 'layout!' ) => 'carousel',
$this->get_control_id( 'show_filters' ) => 'yes',
),
)
);
$this->add_responsive_control(
'filters_gap',
array(
'label' => __( 'Horizontal Spacing', 'powerpack' ),
'type' => Controls_Manager::SLIDER,
'default' => array(
'size' => 5,
),
'range' => array(
'px' => array(
'min' => 0,
'max' => 100,
),
),
'selectors' => array(
'body:not(.rtl) {{WRAPPER}} .pp-post-filters .pp-post-filter' => 'margin-right: {{SIZE}}{{UNIT}};',
'body.rtl {{WRAPPER}} .pp-post-filters .pp-post-filter' => 'margin-left: {{SIZE}}{{UNIT}};',
),
'condition' => array(
'query_type' => 'custom',
$this->get_control_id( 'layout!' ) => 'carousel',
$this->get_control_id( 'show_filters' ) => 'yes',
),
)
);
$this->add_responsive_control(
'filters_gap_vertical',
array(
'label' => __( 'Vertical Spacing', 'powerpack' ),
'type' => Controls_Manager::SLIDER,
'default' => array(
'size' => 5,
),
'range' => array(
'px' => array(
'min' => 0,
'max' => 100,
),
),
'selectors' => array(
'{{WRAPPER}} .pp-post-filters .pp-post-filter' => 'margin-bottom: {{SIZE}}{{UNIT}};',
),
'condition' => array(
'query_type' => 'custom',
$this->get_control_id( 'layout!' ) => 'carousel',
$this->get_control_id( 'show_filters' ) => 'yes',
),
)
);
$this->add_responsive_control(
'filters_margin_bottom',
array(
'label' => __( 'Filters Bottom Spacing', 'powerpack' ),
'type' => Controls_Manager::SLIDER,
'range' => array(
'px' => array(
'min' => 0,
'max' => 80,
'step' => 1,
),
),
'size_units' => '',
'selectors' => array(
'{{WRAPPER}} .pp-post-filters, {{WRAPPER}} .pp-post-filters-dropdown' => 'margin-bottom: {{SIZE}}{{UNIT}};',
),
'condition' => array(
'query_type' => 'custom',
$this->get_control_id( 'layout!' ) => 'carousel',
$this->get_control_id( 'show_filters' ) => 'yes',
),
)
);
$this->start_controls_tabs( 'tabs_filter_style' );
$this->start_controls_tab(
'tab_filter_normal',
array(
'label' => __( 'Normal', 'powerpack' ),
'condition' => array(
'query_type' => 'custom',
$this->get_control_id( 'layout!' ) => 'carousel',
$this->get_control_id( 'show_filters' ) => 'yes',
),
)
);
$this->add_control(
'filter_color_normal',
array(
'label' => __( 'Color', 'powerpack' ),
'type' => Controls_Manager::COLOR,
'default' => '',
'selectors' => array(
'{{WRAPPER}} .pp-post-filter, {{WRAPPER}} .pp-post-filters-dropdown-button, {{WRAPPER}} .pp-post-filters-dropdown-item' => 'color: {{VALUE}};',
),
'condition' => array(
'query_type' => 'custom',
$this->get_control_id( 'layout!' ) => 'carousel',
$this->get_control_id( 'show_filters' ) => 'yes',
),
)
);
$this->add_control(
'filter_background_color_normal',
array(
'label' => __( 'Background Color', 'powerpack' ),
'type' => Controls_Manager::COLOR,
'default' => '',
'selectors' => array(
'{{WRAPPER}} .pp-post-filter, {{WRAPPER}} .pp-post-filters-dropdown-button, {{WRAPPER}} .pp-post-filters-dropdown-item' => 'background-color: {{VALUE}};',
),
'condition' => array(
'query_type' => 'custom',
$this->get_control_id( 'layout!' ) => 'carousel',
$this->get_control_id( 'show_filters' ) => 'yes',
),
)
);
$this->add_group_control(
Group_Control_Border::get_type(),
array(
'name' => 'filter_border_normal',
'label' => __( 'Border', 'powerpack' ),
'placeholder' => '1px',
'default' => '1px',
'selector' => '{{WRAPPER}} .pp-post-filter, {{WRAPPER}} .pp-post-filters-dropdown-button',
'condition' => array(
'query_type' => 'custom',
$this->get_control_id( 'layout!' ) => 'carousel',
$this->get_control_id( 'show_filters' ) => 'yes',
),
)
);
$this->add_responsive_control(
'filter_border_radius_normal',
array(
'label' => __( 'Border Radius', 'powerpack' ),
'type' => Controls_Manager::DIMENSIONS,
'size_units' => array( 'px', '%', 'em' ),
'selectors' => array(
'{{WRAPPER}} .pp-post-filter, {{WRAPPER}} .pp-post-filters-dropdown-button' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
),
'condition' => array(
'query_type' => 'custom',
$this->get_control_id( 'layout!' ) => 'carousel',
$this->get_control_id( 'show_filters' ) => 'yes',
),
)
);
$this->add_responsive_control(
'filter_padding',
array(
'label' => __( 'Padding', 'powerpack' ),
'type' => Controls_Manager::DIMENSIONS,
'size_units' => array( 'px', 'em', '%' ),
'placeholder' => array(
'top' => '',
'right' => '',
'bottom' => '',
'left' => '',
),
'selectors' => array(
'{{WRAPPER}} .pp-post-filter, {{WRAPPER}} .pp-post-filters-dropdown-button, {{WRAPPER}} .pp-post-filters-dropdown-item' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
),
'condition' => array(
'query_type' => 'custom',
$this->get_control_id( 'layout!' ) => 'carousel',
$this->get_control_id( 'show_filters' ) => 'yes',
),
)
);
$this->add_group_control(
Group_Control_Box_Shadow::get_type(),
array(
'name' => 'filter_box_shadow',
'selector' => '{{WRAPPER}} .pp-post-filter, {{WRAPPER}} .pp-post-filters-dropdown-button, {{WRAPPER}} .pp-post-filters-dropdown-item',
'condition' => array(
'query_type' => 'custom',
$this->get_control_id( 'layout!' ) => 'carousel',
$this->get_control_id( 'show_filters' ) => 'yes',
),
)
);
$this->end_controls_tab();
$this->start_controls_tab(
'tab_filter_active',
array(
'label' => __( 'Active', 'powerpack' ),
'condition' => array(
'query_type' => 'custom',
$this->get_control_id( 'layout!' ) => 'carousel',
$this->get_control_id( 'show_filters' ) => 'yes',
),
)
);
$this->add_control(
'filter_color_active',
array(
'label' => __( 'Color', 'powerpack' ),
'type' => Controls_Manager::COLOR,
'default' => '',
'selectors' => array(
'{{WRAPPER}} .pp-post-filter.pp-filter-current, {{WRAPPER}} .pp-post-filters-dropdown-item.pp-filter-current' => 'color: {{VALUE}};',
),
'condition' => array(
'query_type' => 'custom',
$this->get_control_id( 'layout!' ) => 'carousel',
$this->get_control_id( 'show_filters' ) => 'yes',
),
)
);
$this->add_control(
'filter_background_color_active',
array(
'label' => __( 'Background Color', 'powerpack' ),
'type' => Controls_Manager::COLOR,
'default' => '',
'selectors' => array(
'{{WRAPPER}} .pp-post-filter.pp-filter-current, {{WRAPPER}} .pp-post-filters-dropdown-item.pp-filter-current' => 'background-color: {{VALUE}};',
),
'condition' => array(
'query_type' => 'custom',
$this->get_control_id( 'layout!' ) => 'carousel',
$this->get_control_id( 'show_filters' ) => 'yes',
),
)
);
$this->add_control(
'filter_border_color_active',
array(
'label' => __( 'Border Color', 'powerpack' ),
'type' => Controls_Manager::COLOR,
'default' => '',
'selectors' => array(
'{{WRAPPER}} .pp-post-filter.pp-filter-current, {{WRAPPER}} .pp-post-filters-dropdown-item.pp-filter-current' => 'border-color: {{VALUE}};',
),
'condition' => array(
'query_type' => 'custom',
$this->get_control_id( 'layout!' ) => 'carousel',
$this->get_control_id( 'show_filters' ) => 'yes',
),
)
);
$this->add_group_control(
Group_Control_Box_Shadow::get_type(),
array(
'name' => 'filter_box_shadow_active',
'selector' => '{{WRAPPER}} .pp-post-filter.pp-filter-current, {{WRAPPER}} .pp-post-filters-dropdown-item.pp-filter-current',
'condition' => array(
'query_type' => 'custom',
$this->get_control_id( 'layout!' ) => 'carousel',
$this->get_control_id( 'show_filters' ) => 'yes',
),
)
);
$this->end_controls_tab();
$this->start_controls_tab(
'tab_filter_hover',
array(
'label' => __( 'Hover', 'powerpack' ),
'condition' => array(
'query_type' => 'custom',
$this->get_control_id( 'layout!' ) => 'carousel',
$this->get_control_id( 'show_filters' ) => 'yes',
),
)
);
$this->add_control(
'filter_color_hover',
array(
'label' => __( 'Color', 'powerpack' ),
'type' => Controls_Manager::COLOR,
'default' => '',
'selectors' => array(
'{{WRAPPER}} .pp-post-filter:hover, {{WRAPPER}} .pp-post-filters-dropdown-item:hover' => 'color: {{VALUE}};',
),
'condition' => array(
'query_type' => 'custom',
$this->get_control_id( 'layout!' ) => 'carousel',
$this->get_control_id( 'show_filters' ) => 'yes',
),
)
);
$this->add_control(
'filter_background_color_hover',
array(
'label' => __( 'Background Color', 'powerpack' ),
'type' => Controls_Manager::COLOR,
'default' => '',
'selectors' => array(
'{{WRAPPER}} .pp-post-filter:hover, {{WRAPPER}} .pp-post-filters-dropdown-item:hover' => 'background-color: {{VALUE}};',
),
'condition' => array(
'query_type' => 'custom',
$this->get_control_id( 'layout!' ) => 'carousel',
$this->get_control_id( 'show_filters' ) => 'yes',
),
)
);
$this->add_control(
'filter_border_color_hover',
array(
'label' => __( 'Border Color', 'powerpack' ),
'type' => Controls_Manager::COLOR,
'default' => '',
'selectors' => array(
'{{WRAPPER}} .pp-post-filter:hover, {{WRAPPER}} .pp-post-filters-dropdown-item:hover' => 'border-color: {{VALUE}};',
),
'condition' => array(
'query_type' => 'custom',
$this->get_control_id( 'layout!' ) => 'carousel',
$this->get_control_id( 'show_filters' ) => 'yes',
),
)
);
$this->add_group_control(
Group_Control_Box_Shadow::get_type(),
array(
'name' => 'filter_box_shadow_hover',
'selector' => '{{WRAPPER}} .pp-post-filter:hover, {{WRAPPER}} .pp-post-filters-dropdown-item:hover',
'condition' => array(
'query_type' => 'custom',
$this->get_control_id( 'layout!' ) => 'carousel',
$this->get_control_id( 'show_filters' ) => 'yes',
),
)
);
$this->end_controls_tab();
$this->end_controls_tabs();
$this->add_control(
'filters_count_style_heading',
array(
'label' => __( 'Post Count', 'powerpack' ),
'type' => Controls_Manager::HEADING,
'separator' => 'before',
'condition' => array(
'query_type' => 'custom',
$this->get_control_id( 'layout!' ) => 'carousel',
$this->get_control_id( 'show_filters' ) => 'yes',
$this->get_control_id( 'show_filters_count' ) => 'yes',
),
)
);
$this->add_group_control(
Group_Control_Typography::get_type(),
array(
'name' => 'filters_count_typography',
'selector' => '{{WRAPPER}} .pp-post-filter-count',
'condition' => array(
'query_type' => 'custom',
$this->get_control_id( 'layout!' ) => 'carousel',
$this->get_control_id( 'show_filters' ) => 'yes',
$this->get_control_id( 'show_filters_count' ) => 'yes',
),
)
);
$this->add_responsive_control(
'filters_count_spacing',
array(
'label' => __( 'Spacing', 'powerpack' ),
'type' => Controls_Manager::SLIDER,
'range' => array(
'px' => array(
'min' => 0,
'max' => 40,
),
),
'default' => array(
'size' => 5,
),
'selectors' => array(
'{{WRAPPER}} .pp-post-filter-count' => 'margin-left: {{SIZE}}{{UNIT}};',
),
'condition' => array(
'query_type' => 'custom',
$this->get_control_id( 'layout!' ) => 'carousel',
$this->get_control_id( 'show_filters' ) => 'yes',
$this->get_control_id( 'show_filters_count' ) => 'yes',
),
)
);
$this->add_responsive_control(
'filters_count_padding',
array(
'label' => __( 'Padding', 'powerpack' ),
'type' => Controls_Manager::DIMENSIONS,
'size_units' => array( 'px', 'em', '%' ),
'selectors' => array(
'{{WRAPPER}} .pp-post-filter-count' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
),
'condition' => array(
'query_type' => 'custom',
$this->get_control_id( 'layout!' ) => 'carousel',
$this->get_control_id( 'show_filters' ) => 'yes',
$this->get_control_id( 'show_filters_count' ) => 'yes',
),
)
);
$this->add_responsive_control(
'filters_count_border_radius',
array(
'label' => __( 'Border Radius', 'powerpack' ),
'type' => Controls_Manager::DIMENSIONS,
'size_units' => array( 'px', '%', 'em' ),
'selectors' => array(
'{{WRAPPER}} .pp-post-filter-count' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
),
'condition' => array(
'query_type' => 'custom',
$this->get_control_id( 'layout!' ) => 'carousel',
$this->get_control_id( 'show_filters' ) => 'yes',
$this->get_control_id( 'show_filters_count' ) => 'yes',
),
)
);
$this->start_controls_tabs( 'tabs_filter_count_style' );
$this->start_controls_tab(
'tab_filter_count_normal',
array(
'label' => __( 'Normal', 'powerpack' ),
'condition' => array(
'query_type' => 'custom',
$this->get_control_id( 'layout!' ) => 'carousel',
$this->get_control_id( 'show_filters' ) => 'yes',
$this->get_control_id( 'show_filters_count' ) => 'yes',
),
)
);
$this->add_control(
'filter_count_color',
array(
'label' => __( 'Color', 'powerpack' ),
'type' => Controls_Manager::COLOR,
'default' => '',
'selectors' => array(
'{{WRAPPER}} .pp-post-filter-count' => 'color: {{VALUE}};',
),
'condition' => array(
'query_type' => 'custom',
$this->get_control_id( 'layout!' ) => 'carousel',
$this->get_control_id( 'show_filters' ) => 'yes',
$this->get_control_id( 'show_filters_count' ) => 'yes',
),
)
);
$this->add_control(
'filter_count_background_color',
array(
'label' => __( 'Background Color', 'powerpack' ),
'type' => Controls_Manager::COLOR,
'default' => '',
'selectors' => array(
'{{WRAPPER}} .pp-post-filter-count' => 'background-color: {{VALUE}};',
),
'condition' => array(
'query_type' => 'custom',
$this->get_control_id( 'layout!' ) => 'carousel',
$this->get_control_id( 'show_filters' ) => 'yes',
$this->get_control_id( 'show_filters_count' ) => 'yes',
),
)
);
$this->end_controls_tab();
$this->start_controls_tab(
'tab_filter_count_active',
array(
'label' => __( 'Active', 'powerpack' ),
'condition' => array(
'query_type' => 'custom',
$this->get_control_id( 'layout!' ) => 'carousel',
$this->get_control_id( 'show_filters' ) => 'yes',
$this->get_control_id( 'show_filters_count' ) => 'yes',
),
)
);
$this->add_control(
'filter_count_color_active',
array(
'label' => __( 'Color', 'powerpack' ),
'type' => Controls_Manager::COLOR,
'default' => '',
'selectors' => array(
'{{WRAPPER}} .pp-post-filter.pp-filter-current .pp-post-filter-count' => 'color: {{VALUE}};',
),
'condition' => array(
'query_type' => 'custom',
$this->get_control_id( 'layout!' ) => 'carousel',
$this->get_control_id( 'show_filters' ) => 'yes',
$this->get_control_id( 'show_filters_count' ) => 'yes',
),
)
);
$this->add_control(
'filter_count_background_color_active',
array(
'label' => __( 'Background Color', 'powerpack' ),
'type' => Controls_Manager::COLOR,
'default' => '',
'selectors' => array(
'{{WRAPPER}} .pp-post-filter.pp-filter-current .pp-post-filter-count' => 'background-color: {{VALUE}};',
),
'condition' => array(
'query_type' => 'custom',
$this->get_control_id( 'layout!' ) => 'carousel',
$this->get_control_id( 'show_filters' ) => 'yes',
$this->get_control_id( 'show_filters_count' ) => 'yes',
),
)
);
$this->end_controls_tab();
$this->start_controls_tab(
'tab_filter_count_hover',
array(
'label' => __( 'Hover', 'powerpack' ),
'condition' => array(
'query_type' => 'custom',
$this->get_control_id( 'layout!' ) => 'carousel',
$this->get_control_id( 'show_filters' ) => 'yes',
$this->get_control_id( 'show_filters_count' ) => 'yes',
),
)
);
$this->add_control(
'filter_count_color_hover',
array(
'label' => __( 'Color', 'powerpack' ),
'type' => Controls_Manager::COLOR,
'default' => '',
'selectors' => array(
'{{WRAPPER}} .pp-post-filter:hover .pp-post-filter-count' => 'color: {{VALUE}};',
),
'condition' => array(
'query_type' => 'custom',
$this->get_control_id( 'layout!' ) => 'carousel',
$this->get_control_id( 'show_filters' ) => 'yes',
$this->get_control_id( 'show_filters_count' ) => 'yes',
),
)
);
$this->add_control(
'filter_count_background_color_hover',
array(
'label' => __( 'Background Color', 'powerpack' ),
'type' => Controls_Manager::COLOR,
'default' => '',
'selectors' => array(
'{{WRAPPER}} .pp-post-filter:hover .pp-post-filter-count' => 'background-color: {{VALUE}};',
),
'condition' => array(
'query_type' => 'custom',
$this->get_control_id( 'layout!' ) => 'carousel',
$this->get_control_id( 'show_filters' ) => 'yes',
$this->get_control_id( 'show_filters_count' ) => 'yes',
),
)
);
$this->end_controls_tab();
$this->end_controls_tabs();
$this->end_controls_section();
}
/**
* Style Tab: Search Form
*/
protected function register_style_search_controls() {
$this->start_controls_section(
'section_search_form_style',
array(
'label' => __( 'Search Form', 'powerpack' ),
'tab' => Controls_Manager::TAB_STYLE,
'condition' => array(
$this->get_control_id( 'show_ajax_search_form' ) => 'yes',
),
)
);
$this->add_responsive_control(
'search_form_alignment',
array(
'label' => __( 'Alignment', 'powerpack' ),
'label_block' => false,
'type' => Controls_Manager::CHOOSE,
'default' => 'left',
'options' => array(
'left' => array(
'title' => __( 'Left', 'powerpack' ),
'icon' => 'eicon-h-align-left',
),
'center' => array(
'title' => __( 'Center', 'powerpack' ),
'icon' => 'eicon-h-align-center',
),
'right' => array(
'title' => __( 'Right', 'powerpack' ),
'icon' => 'eicon-h-align-right',
),
),
'selectors_dictionary' => array(
'left' => 'flex-start',
'right' => 'flex-end',
'center' => 'center',
),
'selectors' => array(
'{{WRAPPER}} .pp-search-form-container' => 'justify-content: {{VALUE}};',
),
'condition' => array(
$this->get_control_id( 'show_ajax_search_form' ) => 'yes',
),
)
);
$this->add_responsive_control(
'search_form_spacing',
array(
'label' => __( 'Bottom Spacing', 'powerpack' ),
'type' => Controls_Manager::SLIDER,
'range' => array(
'px' => array(
'min' => 0,
'max' => 100,
),
),
'default' => array(
'size' => 25,
),
'selectors' => array(
'{{WRAPPER}} .pp-search-form-container' => 'margin-bottom: {{SIZE}}{{UNIT}};',
),
'condition' => array(
$this->get_control_id( 'show_ajax_search_form' ) => 'yes',
),
)
);
$this->add_responsive_control(
'search_form_width',
array(
'label' => __( 'Width', 'powerpack' ),
'type' => Controls_Manager::SLIDER,
'range' => array(
'px' => array(
'min' => 100,
'max' => 1500,
),
),
'default' => array(
'size' => 400,
),
'size_units' => array( 'px', '%' ),
'selectors' => array(
'{{WRAPPER}} .pp-search-form' => 'max-width: {{SIZE}}{{UNIT}};',
),
'condition' => array(
$this->get_control_id( 'show_ajax_search_form' ) => 'yes',
),
)
);
$this->add_control(
'search_form_input_style_heading',
array(
'label' => __( 'Input', 'powerpack' ),
'type' => Controls_Manager::HEADING,
'separator' => 'before',
'condition' => array(
$this->get_control_id( 'show_ajax_search_form' ) => 'yes',
),
)
);
$this->add_group_control(
Group_Control_Typography::get_type(),
array(
'name' => 'search_form_input_typography',
'selector' => '{{WRAPPER}} .pp-search-form input[type="search"].pp-search-form-input',
'condition' => array(
$this->get_control_id( 'show_ajax_search_form' ) => 'yes',
),
)
);
$this->start_controls_tabs( 'tabs_search_input_style' );
$this->start_controls_tab(
'tab_input_style_normal',
array(
'label' => __( 'Normal', 'powerpack' ),
'condition' => array(
$this->get_control_id( 'show_ajax_search_form' ) => 'yes',
),
)
);
$this->add_control(
'search_form_input_text_color',
array(
'label' => __( 'Text Color', 'powerpack' ),
'type' => Controls_Manager::COLOR,
'selectors' => array(
'{{WRAPPER}} .pp-search-form input[type="search"].pp-search-form-input' => 'color: {{VALUE}}',
),
'condition' => array(
$this->get_control_id( 'show_ajax_search_form' ) => 'yes',
),
)
);
$this->add_control(
'search_form_input_background_color',
array(
'label' => __( 'Background Color', 'powerpack' ),
'type' => Controls_Manager::COLOR,
'selectors' => array(
'{{WRAPPER}} .pp-search-form input[type="search"].pp-search-form-input' => 'background-color: {{VALUE}}',
),
'condition' => array(
$this->get_control_id( 'show_ajax_search_form' ) => 'yes',
),
)
);
$this->add_group_control(
Group_Control_Border::get_type(),
array(
'name' => 'search_form_input_border',
'label' => __( 'Border', 'powerpack' ),
'placeholder' => '1px',
'default' => '1px',
'selector' => '{{WRAPPER}} .pp-search-form',
'condition' => array(
$this->get_control_id( 'show_ajax_search_form' ) => 'yes',
),
)
);
$this->add_responsive_control(
'search_form_input_border_radius',
array(
'label' => __( 'Border Radius', 'powerpack' ),
'type' => Controls_Manager::DIMENSIONS,
'size_units' => array( 'px', '%', 'em' ),
'selectors' => array(
'{{WRAPPER}} .pp-search-form' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
),
'condition' => array(
$this->get_control_id( 'show_ajax_search_form' ) => 'yes',
),
)
);
$this->add_group_control(
Group_Control_Box_Shadow::get_type(),
array(
'name' => 'search_form_input_box_shadow',
'selector' => '{{WRAPPER}} .pp-search-form',
'fields_options' => array(
'box_shadow_type' => array(
'separator' => 'default',
),
),
'condition' => array(
$this->get_control_id( 'show_ajax_search_form' ) => 'yes',
),
)
);
$this->end_controls_tab();
$this->start_controls_tab(
'tab_search_form_input_focus',
array(
'label' => __( 'Focus', 'powerpack' ),
'condition' => array(
$this->get_control_id( 'show_ajax_search_form' ) => 'yes',
),
)
);
$this->add_control(
'search_form_input_text_color_focus',
array(
'label' => __( 'Text Color', 'powerpack' ),
'type' => Controls_Manager::COLOR,
'selectors' => array(
'{{WRAPPER}} .pp-search-form-focus input[type="search"].pp-search-form-input' => 'color: {{VALUE}}',
),
'condition' => array(
$this->get_control_id( 'show_ajax_search_form' ) => 'yes',
),
)
);
$this->add_control(
'search_form_input_background_color_focus',
array(
'label' => __( 'Background Color', 'powerpack' ),
'type' => Controls_Manager::COLOR,
'selectors' => array(
'{{WRAPPER}} .pp-search-form-focus input[type="search"].pp-search-form-input' => 'background-color: {{VALUE}}',
),
'condition' => array(
$this->get_control_id( 'show_ajax_search_form' ) => 'yes',
),
)
);
$this->add_control(
'search_form_input_border_color_focus',
array(
'label' => __( 'Border Color', 'powerpack' ),
'type' => Controls_Manager::COLOR,
'selectors' => array(
'{{WRAPPER}} .pp-search-form-focus.pp-search-form' => 'border-color: {{VALUE}}',
),
'condition' => array(
$this->get_control_id( 'show_ajax_search_form' ) => 'yes',
),
)
);
$this->add_group_control(
Group_Control_Box_Shadow::get_type(),
array(
'name' => 'search_form_input_box_shadow_focus',
'selector' => '{{WRAPPER}} .pp-search-form-focus.pp-search-form',
'fields_options' => array(
'box_shadow_type' => array(
'separator' => 'default',
),
),
'condition' => array(
$this->get_control_id( 'show_ajax_search_form' ) => 'yes',
),
)
);
$this->end_controls_tab();
$this->end_controls_tabs();
$this->add_control(
'search_form_button_style_heading',
array(
'label' => __( 'Button', 'powerpack' ),
'type' => Controls_Manager::HEADING,
'separator' => 'before',
'condition' => array(
$this->get_control_id( 'show_ajax_search_form' ) => 'yes',
),
)
);
$this->add_responsive_control(
'search_form_button_position',
array(
'label' => __( 'Position', 'powerpack' ),
'label_block' => false,
'type' => Controls_Manager::CHOOSE,
'default' => 'right',
'options' => array(
'left' => array(
'title' => __( 'Left', 'powerpack' ),
'icon' => 'eicon-h-align-left',
),
'right' => array(
'title' => __( 'Right', 'powerpack' ),
'icon' => 'eicon-h-align-right',
),
),
'selectors_dictionary' => array(
'left' => 'row-reverse',
'right' => 'row',
),
'selectors' => array(
'{{WRAPPER}} .pp-search-form' => 'flex-direction: {{VALUE}};',
),
'condition' => array(
$this->get_control_id( 'show_ajax_search_form' ) => 'yes',
),
)
);
$this->add_group_control(
Group_Control_Typography::get_type(),
array(
'name' => 'search_form_button_typography',
'selector' => '{{WRAPPER}} .pp-search-form .pp-search-form-submit',
'condition' => array(
$this->get_control_id( 'show_ajax_search_form' ) => 'yes',
$this->get_control_id( 'search_form_button_type' ) => 'text',
),
)
);
$this->start_controls_tabs( 'tabs_search_form_button_style' );
$this->start_controls_tab(
'tab_search_form_button_normal',
array(
'label' => __( 'Normal', 'powerpack' ),
'condition' => array(
$this->get_control_id( 'show_ajax_search_form' ) => 'yes',
),
)
);
$this->add_control(
'search_form_button_text_color',
array(
'label' => __( 'Text/Icon Color', 'powerpack' ),
'type' => Controls_Manager::COLOR,
'selectors' => array(
'{{WRAPPER}} .pp-search-form .pp-search-form-submit' => 'color: {{VALUE}}',
),
'condition' => array(
$this->get_control_id( 'show_ajax_search_form' ) => 'yes',
),
)
);
$this->add_control(
'search_form_button_background_color',
array(
'label' => __( 'Background Color', 'powerpack' ),
'type' => Controls_Manager::COLOR,
'selectors' => array(
'{{WRAPPER}} .pp-search-form .pp-search-form-submit' => 'background-color: {{VALUE}}',
),
'condition' => array(
$this->get_control_id( 'show_ajax_search_form' ) => 'yes',
),
)
);
$this->add_responsive_control(
'search_form_button_padding',
array(
'label' => __( 'Padding', 'powerpack' ),
'type' => Controls_Manager::DIMENSIONS,
'size_units' => array( 'px', 'em', '%' ),
'selectors' => array(
'{{WRAPPER}} .pp-search-form .pp-search-form-submit' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
),
'condition' => array(
$this->get_control_id( 'show_ajax_search_form' ) => 'yes',
),
)
);
$this->add_responsive_control(
'search_form_button_width',
array(
'label' => __( 'Width', 'powerpack' ),
'type' => Controls_Manager::SLIDER,
'range' => array(
'px' => array(
'min' => 10,
'max' => 200,
'step' => 1,
),
),
'selectors' => array(
'{{WRAPPER}} .pp-search-form .pp-search-form-submit' => 'min-width: {{SIZE}}{{UNIT}}',
),
'condition' => array(
$this->get_control_id( 'show_ajax_search_form' ) => 'yes',
),
)
);
$this->end_controls_tab();
$this->start_controls_tab(
'tab_search_form_button_hover',
array(
'label' => __( 'Hover', 'powerpack' ),
'condition' => array(
$this->get_control_id( 'show_ajax_search_form' ) => 'yes',
),
)
);
$this->add_control(
'search_form_button_text_color_hover',
array(
'label' => __( 'Text/Icon Color', 'powerpack' ),
'type' => Controls_Manager::COLOR,
'selectors' => array(
'{{WRAPPER}} .pp-search-form .pp-search-form-submit:hover' => 'color: {{VALUE}}',
),
'condition' => array(
$this->get_control_id( 'show_ajax_search_form' ) => 'yes',
),
)
);
$this->add_control(
'search_form_button_background_color_hover',
array(
'label' => __( 'Background Color', 'powerpack' ),
'type' => Controls_Manager::COLOR,
'selectors' => array(
'{{WRAPPER}} .pp-search-form .pp-search-form-submit:hover' => 'background-color: {{VALUE}}',
),
'condition' => array(
$this->get_control_id( 'show_ajax_search_form' ) => 'yes',
),
)
);
$this->end_controls_tab();
$this->end_controls_tabs();
$this->add_responsive_control(
'search_form_button_icon_size',
array(
'label' => __( 'Icon Size', 'powerpack' ),
'type' => Controls_Manager::SLIDER,
'range' => array(
'px' => array(
'min' => 0,
'max' => 100,
),
),
'selectors' => array(
'{{WRAPPER}} .pp-search-form .pp-search-form-submit' => 'font-size: {{SIZE}}{{UNIT}}',
),
'condition' => array(
$this->get_control_id( 'show_ajax_search_form' ) => 'yes',
$this->get_control_id( 'search_form_button_type' ) => 'icon',
),
'separator' => 'before',
)
);
$this->end_controls_section();
}
/**
* Style Tab: Image
*/
protected function register_style_image_controls() {
$this->start_controls_section(
'section_image_style',
array(
'label' => __( 'Image', 'powerpack' ),
'tab' => Controls_Manager::TAB_STYLE,
'condition' => array(
'_skin!' => 'custom',
$this->get_control_id( 'show_thumbnail' ) => 'yes',
),
)
);
$this->add_responsive_control(
'img_border_radius',
array(
'label' => __( 'Border Radius', 'powerpack' ),
'type' => Controls_Manager::DIMENSIONS,
'size_units' => array( 'px', '%', 'em' ),
'selectors' => array(
'{{WRAPPER}} .pp-post-thumbnail, {{WRAPPER}} .pp-post-thumbnail img' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
),
'condition' => array(
$this->get_control_id( 'show_thumbnail' ) => 'yes',
),
)
);
$this->add_responsive_control(
'image_spacing',
array(
'label' => __( 'Spacing', 'powerpack' ),
'type' => Controls_Manager::SLIDER,
'range' => array(
'px' => array(
'max' => 100,
),
),
'default' => array(
'size' => 20,
),
'selectors' => array(
'{{WRAPPER}} .pp-post-thumbnail' => 'margin-bottom: {{SIZE}}{{UNIT}}',
),
'condition' => array(
$this->get_control_id( 'show_thumbnail' ) => 'yes',
),
)
);
$this->start_controls_tabs( 'thumbnail_effects_tabs' );
$this->start_controls_tab(
'normal',
array(
'label' => __( 'Normal', 'powerpack' ),
'condition' => array(
$this->get_control_id( 'show_thumbnail' ) => 'yes',
),
)
);
$this->add_group_control(
Group_Control_Box_Shadow::get_type(),
array(
'name' => 'image_box_shadow',
'selector' => '{{WRAPPER}} .pp-post-thumbnail img',
'condition' => array(
$this->get_control_id( 'show_thumbnail' ) => 'yes',
),
)
);
$this->add_group_control(
Group_Control_Css_Filter::get_type(),
array(
'name' => 'thumbnail_filters',
'selector' => '{{WRAPPER}} .pp-post-thumbnail img',
'condition' => array(
$this->get_control_id( 'show_thumbnail' ) => 'yes',
),
)
);
$this->add_group_control(
Group_Control_Transition::get_type(),
array(
'name' => 'image_transition',
'selector' => '{{WRAPPER}} .pp-post-thumbnail img',
'separator' => '',
'condition' => array(
$this->get_control_id( 'show_thumbnail' ) => 'yes',
),
)
);
$this->end_controls_tab();
$this->start_controls_tab(
'hover',
array(
'label' => __( 'Hover', 'powerpack' ),
'condition' => array(
$this->get_control_id( 'show_thumbnail' ) => 'yes',
),
)
);
$this->add_group_control(
Group_Control_Box_Shadow::get_type(),
array(
'name' => 'image_box_shadow_hover',
'selector' => '{{WRAPPER}} .pp-post-thumbnail img',
'condition' => array(
$this->get_control_id( 'show_thumbnail' ) => 'yes',
),
)
);
$this->add_group_control(
Group_Control_Css_Filter::get_type(),
array(
'name' => 'thumbnail_hover_filters',
'selector' => '{{WRAPPER}} .pp-post:hover .pp-post-thumbnail img',
'condition' => array(
$this->get_control_id( 'show_thumbnail' ) => 'yes',
),
)
);
$this->end_controls_tab();
$this->end_controls_tabs();
$this->end_controls_section();
}
/**
* Style Tab: Title
*/
protected function register_style_title_controls() {
$this->start_controls_section(
'section_title_style',
array(
'label' => __( 'Title', 'powerpack' ),
'tab' => Controls_Manager::TAB_STYLE,
'condition' => array(
'_skin!' => 'custom',
$this->get_control_id( 'post_title' ) => 'yes',
),
)
);
$this->add_control(
'title_color',
array(
'label' => __( 'Color', 'powerpack' ),
'type' => Controls_Manager::COLOR,
'scheme' => array(
'type' => Scheme_Color::get_type(),
'value' => Scheme_Color::COLOR_2,
),
'selectors' => array(
'{{WRAPPER}} .pp-post-title, {{WRAPPER}} .pp-post-title a' => 'color: {{VALUE}}',
),
'condition' => array(
$this->get_control_id( 'post_title' ) => 'yes',
),
)
);
$this->add_control(
'title_color_hover',
array(
'label' => __( 'Hover Color', 'powerpack' ),
'type' => Controls_Manager::COLOR,
'scheme' => array(
'type' => Scheme_Color::get_type(),
'value' => Scheme_Color::COLOR_2,
),
'selectors' => array(
'{{WRAPPER}} .pp-post-title a:hover' => 'color: {{VALUE}}',
),
'condition' => array(
$this->get_control_id( 'post_title' ) => 'yes',
$this->get_control_id( 'post_title_link' ) => 'yes',
),
)
);
$this->add_group_control(
Group_Control_Typography::get_type(),
array(
'name' => 'title_typography',
'label' => __( 'Typography', 'powerpack' ),
'scheme' => Scheme_Typography::TYPOGRAPHY_1,
'selector' => '{{WRAPPER}} .pp-post-title',
'condition' => array(
$this->get_control_id( 'post_title' ) => 'yes',
),
)
);
$this->add_responsive_control(
'title_margin_bottom',
array(
'label' => __( 'Bottom Spacing', 'powerpack' ),
'type' => Controls_Manager::SLIDER,
'range' => array(
'px' => array(
'min' => 0,
'max' => 50,
'step' => 1,
),
),
'default' => array(
'size' => 10,
),
'size_units' => array( 'px' ),
'selectors' => array(
'{{WRAPPER}} .pp-post-title' => 'margin-bottom: {{SIZE}}{{UNIT}};',
),
'condition' => array(
$this->get_control_id( 'post_title' ) => 'yes',
),
)
);
$this->add_control(
'title_separator_heading',
array(
'label' => __( 'Separator', 'powerpack' ),
'type' => Controls_Manager::HEADING,
'separator' => 'before',
'condition' => array(
$this->get_control_id( 'post_title' ) => 'yes',
$this->get_control_id( 'post_title_separator' ) => 'yes',
),
)
);
$this->add_control(
'title_separator_align',
array(
'label' => __( 'Alignment', 'powerpack' ),
'type' => Controls_Manager::CHOOSE,
'label_block' => false,
'options' => array(
'flex-start' => array(
'title' => __( 'Left', 'powerpack' ),
'icon' => 'eicon-text-align-left',
),
'center' => array(
'title' => __( 'Center', 'powerpack' ),
'icon' => 'eicon-text-align-center',
),
'flex-end' => array(
'title' => __( 'Right', 'powerpack' ),
'icon' => 'eicon-text-align-right',
),
),
'default' => '',
'selectors' => array(
'{{WRAPPER}} .pp-post-separator-wrap' => 'justify-content: {{VALUE}};',
),
'condition' => array(
$this->get_control_id( 'post_title' ) => 'yes',
$this->get_control_id( 'post_title_separator' ) => 'yes',
),
)
);
$this->add_group_control(
Group_Control_Background::get_type(),
array(
'name' => 'title_separator_background',
'types' => array( 'classic', 'gradient' ),
'selector' => '{{WRAPPER}} .pp-post-separator',
'exclude' => array(
'image',
),
'condition' => array(
$this->get_control_id( 'post_title' ) => 'yes',
$this->get_control_id( 'post_title_separator' ) => 'yes',
),
)
);
$this->add_responsive_control(
'title_separator_height',
array(
'label' => __( 'Separator Height', 'powerpack' ),
'type' => Controls_Manager::SLIDER,
'default' => array(
'unit' => 'px',
'size' => 1,
),
'range' => array(
'px' => array(
'min' => 1,
'max' => 20,
'step' => 1,
),
),
'size_units' => array( 'px' ),
'selectors' => array(
'{{WRAPPER}} .pp-post-separator' => 'height: {{SIZE}}{{UNIT}};',
),
'condition' => array(
$this->get_control_id( 'post_title' ) => 'yes',
$this->get_control_id( 'post_title_separator' ) => 'yes',
),
)
);
$this->add_responsive_control(
'title_separator_width',
array(
'label' => __( 'Separator Width', 'powerpack' ),
'type' => Controls_Manager::SLIDER,
'default' => array(
'unit' => '%',
'size' => 100,
),
'range' => array(
'%' => array(
'min' => 1,
'max' => 100,
'step' => 1,
),
'px' => array(
'min' => 10,
'max' => 200,
'step' => 1,
),
),
'size_units' => array( '%', 'px' ),
'selectors' => array(
'{{WRAPPER}} .pp-post-separator' => 'width: {{SIZE}}{{UNIT}};',
),
'condition' => array(
$this->get_control_id( 'post_title' ) => 'yes',
$this->get_control_id( 'post_title_separator' ) => 'yes',
),
)
);
$this->add_responsive_control(
'title_separator_margin_bottom',
array(
'label' => __( 'Spacing', 'powerpack' ),
'type' => Controls_Manager::SLIDER,
'default' => array(
'size' => 15,
),
'range' => array(
'px' => array(
'min' => 0,
'max' => 50,
'step' => 1,
),
),
'size_units' => array( 'px' ),
'selectors' => array(
'{{WRAPPER}} .pp-post-separator-wrap' => 'margin-bottom: {{SIZE}}{{UNIT}};',
),
'condition' => array(
$this->get_control_id( 'post_title' ) => 'yes',
$this->get_control_id( 'post_title_separator' ) => 'yes',
),
)
);
$this->end_controls_section();
}
/**
* Style Tab: Post Terms
*/
protected function register_style_terms_controls() {
$this->start_controls_section(
'section_terms_style',
array(
'label' => __( 'Post Terms', 'powerpack' ),
'tab' => Controls_Manager::TAB_STYLE,
'condition' => array(
'_skin!' => 'custom',
$this->get_control_id( 'post_terms' ) => 'yes',
),
)
);
$this->add_group_control(
Group_Control_Typography::get_type(),
array(
'name' => 'terms_typography',
'label' => __( 'Typography', 'powerpack' ),
'scheme' => Scheme_Typography::TYPOGRAPHY_2,
'selector' => '{{WRAPPER}} .pp-post-terms',
'condition' => array(
$this->get_control_id( 'post_terms' ) => 'yes',
),
)
);
$this->add_responsive_control(
'terms_margin_bottom',
array(
'label' => __( 'Bottom Spacing', 'powerpack' ),
'type' => Controls_Manager::SLIDER,
'default' => array(
'size' => 10,
),
'range' => array(
'px' => array(
'min' => 0,
'max' => 50,
'step' => 1,
),
),
'size_units' => array( 'px' ),
'selectors' => array(
'{{WRAPPER}} .pp-post-terms-wrap' => 'margin-bottom: {{SIZE}}{{UNIT}};',
),
'condition' => array(
$this->get_control_id( 'post_terms' ) => 'yes',
),
)
);
$this->add_responsive_control(
'terms_gap',
array(
'label' => __( 'Terms Gap', 'powerpack' ),
'type' => Controls_Manager::SLIDER,
'default' => array(
'size' => 5,
),
'range' => array(
'px' => array(
'min' => 0,
'max' => 30,
'step' => 1,
),
),
'size_units' => array( 'px' ),
'selectors' => array(
'{{WRAPPER}} .pp-post-terms .pp-post-term:not(:last-child)' => 'margin-right: {{SIZE}}{{UNIT}};',
),
'condition' => array(
$this->get_control_id( 'post_terms' ) => 'yes',
),
)
);
$this->start_controls_tabs( 'terms_style_tabs' );
$this->start_controls_tab(
'terms_style_normal',
array(
'label' => __( 'Normal', 'powerpack' ),
)
);
$this->add_control(
'terms_bg_color',
array(
'label' => __( 'Background Color', 'powerpack' ),
'type' => Controls_Manager::COLOR,
'selectors' => array(
'{{WRAPPER}} .pp-post-terms' => 'background: {{VALUE}}',
),
'condition' => array(
$this->get_control_id( 'post_terms' ) => 'yes',
),
)
);
$this->add_control(
'terms_text_color',
array(
'label' => __( 'Text Color', 'powerpack' ),
'type' => Controls_Manager::COLOR,
'default' => '',
'selectors' => array(
'{{WRAPPER}} .pp-post-terms' => 'color: {{VALUE}}',
),
'condition' => array(
$this->get_control_id( 'post_terms' ) => 'yes',
),
)
);
$this->add_responsive_control(
'terms_border_radius',
array(
'label' => __( 'Border Radius', 'powerpack' ),
'type' => Controls_Manager::DIMENSIONS,
'size_units' => array( 'px', '%', 'em' ),
'selectors' => array(
'{{WRAPPER}} .pp-post-terms' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
),
'condition' => array(
$this->get_control_id( 'post_terms' ) => 'yes',
),
)
);
$this->add_responsive_control(
'terms_padding',
array(
'label' => __( 'Padding', 'powerpack' ),
'type' => Controls_Manager::DIMENSIONS,
'size_units' => array( 'px', 'em', '%' ),
'selectors' => array(
'{{WRAPPER}} .pp-post-terms' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
),
'condition' => array(
$this->get_control_id( 'post_terms' ) => 'yes',
),
)
);
$this->end_controls_tab();
$this->start_controls_tab(
'terms_style_hover',
array(
'label' => __( 'Hover', 'powerpack' ),
)
);
$this->add_control(
'terms_bg_color_hover',
array(
'label' => __( 'Background Color', 'powerpack' ),
'type' => Controls_Manager::COLOR,
'selectors' => array(
'{{WRAPPER}} .pp-post-terms:hover' => 'background: {{VALUE}}',
),
'condition' => array(
$this->get_control_id( 'post_terms' ) => 'yes',
),
)
);
$this->add_control(
'terms_text_color_hover',
array(
'label' => __( 'Text Color', 'powerpack' ),
'type' => Controls_Manager::COLOR,
'default' => '',
'selectors' => array(
'{{WRAPPER}} .pp-post-terms a:hover' => 'color: {{VALUE}}',
),
'condition' => array(
$this->get_control_id( 'post_terms' ) => 'yes',
),
)
);
$this->end_controls_tab();
$this->end_controls_tabs();
$this->end_controls_section();
}
/**
* Style Tab: Content
*/
protected function register_style_excerpt_controls() {
$this->start_controls_section(
'section_excerpt_style',
array(
'label' => __( 'Content', 'powerpack' ),
'tab' => Controls_Manager::TAB_STYLE,
'condition' => array(
'_skin!' => 'custom',
$this->get_control_id( 'show_excerpt' ) => 'yes',
),
)
);
$this->add_control(
'excerpt_color',
array(
'label' => __( 'Color', 'powerpack' ),
'type' => Controls_Manager::COLOR,
'scheme' => array(
'type' => Scheme_Color::get_type(),
'value' => Scheme_Color::COLOR_2,
),
'selectors' => array(
'{{WRAPPER}} .pp-post-excerpt' => 'color: {{VALUE}}',
),
'condition' => array(
$this->get_control_id( 'show_excerpt' ) => 'yes',
),
)
);
$this->add_group_control(
Group_Control_Typography::get_type(),
array(
'name' => 'excerpt_typography',
'label' => __( 'Typography', 'powerpack' ),
'scheme' => Scheme_Typography::TYPOGRAPHY_3,
'selector' => '{{WRAPPER}} .pp-post-excerpt',
'condition' => array(
$this->get_control_id( 'show_excerpt' ) => 'yes',
),
)
);
$this->add_responsive_control(
'excerpt_margin_bottom',
array(
'label' => __( 'Bottom Spacing', 'powerpack' ),
'type' => Controls_Manager::SLIDER,
'range' => array(
'px' => array(
'min' => 0,
'max' => 50,
'step' => 1,
),
),
'default' => array(
'size' => 20,
),
'size_units' => array( 'px' ),
'selectors' => array(
'{{WRAPPER}} .pp-post-excerpt' => 'margin-bottom: {{SIZE}}{{UNIT}};',
),
'condition' => array(
$this->get_control_id( 'show_excerpt' ) => 'yes',
),
)
);
$this->end_controls_section();
}
/**
* Style Tab: Meta
*/
protected function register_style_meta_controls() {
$this->start_controls_section(
'section_meta_style',
array(
'label' => __( 'Meta', 'powerpack' ),
'tab' => Controls_Manager::TAB_STYLE,
'condition' => array(
'_skin!' => 'custom',
$this->get_control_id( 'post_meta' ) => 'yes',
),
)
);
$this->add_control(
'meta_text_color',
array(
'label' => __( 'Text Color', 'powerpack' ),
'type' => Controls_Manager::COLOR,
'default' => '',
'selectors' => array(
'{{WRAPPER}} .pp-post-meta' => 'color: {{VALUE}}',
),
'condition' => array(
$this->get_control_id( 'post_meta' ) => 'yes',
),
)
);
$this->add_control(
'meta_links_color',
array(
'label' => __( 'Links Color', 'powerpack' ),
'type' => Controls_Manager::COLOR,
'default' => '',
'selectors' => array(
'{{WRAPPER}} .pp-post-meta a' => 'color: {{VALUE}}',
),
'condition' => array(
$this->get_control_id( 'post_meta' ) => 'yes',
),
)
);
$this->add_control(
'meta_links_color_hover',
array(
'label' => __( 'Links Hover Color', 'powerpack' ),
'type' => Controls_Manager::COLOR,
'default' => '',
'selectors' => array(
'{{WRAPPER}} .pp-post-meta a:hover' => 'color: {{VALUE}}',
),
'condition' => array(
$this->get_control_id( 'post_meta' ) => 'yes',
),
)
);
$this->add_group_control(
Group_Control_Typography::get_type(),
array(
'name' => 'meta_typography',
'label' => __( 'Typography', 'powerpack' ),
'scheme' => Scheme_Typography::TYPOGRAPHY_2,
'selector' => '{{WRAPPER}} .pp-post-meta, {{WRAPPER}} .pp-post-meta a',
'condition' => array(
$this->get_control_id( 'post_meta' ) => 'yes',
),
)
);
$this->add_responsive_control(
'meta_items_spacing',
array(
'label' => __( 'Meta Items Spacing', 'powerpack' ),
'type' => Controls_Manager::SLIDER,
'range' => array(
'px' => array(
'min' => 0,
'max' => 50,
'step' => 1,
),
),
'default' => array(
'size' => 5,
),
'size_units' => array( 'px' ),
'selectors' => array(
'{{WRAPPER}} .pp-post-meta .pp-meta-separator:not(:last-child)' => 'margin-left: calc({{SIZE}}{{UNIT}} / 2); margin-right: calc({{SIZE}}{{UNIT}} / 2);',
),
'condition' => array(
$this->get_control_id( 'post_meta' ) => 'yes',
),
)
);
$this->add_responsive_control(
'meta_margin_bottom',
array(
'label' => __( 'Bottom Spacing', 'powerpack' ),
'type' => Controls_Manager::SLIDER,
'range' => array(
'px' => array(
'min' => 0,
'max' => 50,
'step' => 1,
),
),
'default' => array(
'size' => 20,
),
'size_units' => array( 'px' ),
'selectors' => array(
'{{WRAPPER}} .pp-post-meta' => 'margin-bottom: {{SIZE}}{{UNIT}};',
),
'condition' => array(
$this->get_control_id( 'post_meta' ) => 'yes',
),
)
);
$this->end_controls_section();
}
/**
* Style Tab: Button
*/
protected function register_style_button_controls() {
$this->start_controls_section(
'section_button_style',
array(
'label' => __( 'Read More Button', 'powerpack' ),
'tab' => Controls_Manager::TAB_STYLE,
'condition' => array(
'_skin!' => 'custom',
$this->get_control_id( 'show_button' ) => 'yes',
),
)
);
$this->add_control(
'button_size',
array(
'label' => __( 'Size', 'powerpack' ),
'type' => Controls_Manager::SELECT,
'default' => 'sm',
'options' => array(
'xs' => __( 'Extra Small', 'powerpack' ),
'sm' => __( 'Small', 'powerpack' ),
'md' => __( 'Medium', 'powerpack' ),
'lg' => __( 'Large', 'powerpack' ),
'xl' => __( 'Extra Large', 'powerpack' ),
),
'condition' => array(
$this->get_control_id( 'show_button' ) => 'yes',
),
)
);
$this->add_group_control(
Group_Control_Typography::get_type(),
array(
'name' => 'button_typography',
'label' => __( 'Typography', 'powerpack' ),
'scheme' => Scheme_Typography::TYPOGRAPHY_4,
'selector' => '{{WRAPPER}} .pp-posts-button',
'condition' => array(
$this->get_control_id( 'show_button' ) => 'yes',
),
)
);
$this->start_controls_tabs( 'tabs_button_style' );
$this->start_controls_tab(
'tab_button_normal',
array(
'label' => __( 'Normal', 'powerpack' ),
'condition' => array(
$this->get_control_id( 'show_button' ) => 'yes',
),
)
);
$this->add_control(
'button_bg_color_normal',
array(
'label' => __( 'Background Color', 'powerpack' ),
'type' => Controls_Manager::COLOR,
'scheme' => array(
'type' => Scheme_Color::get_type(),
'value' => Scheme_Color::COLOR_4,
),
'default' => '',
'selectors' => array(
'{{WRAPPER}} .pp-posts-button' => 'background-color: {{VALUE}}',
),
'condition' => array(
$this->get_control_id( 'show_button' ) => 'yes',
),
)
);
$this->add_control(
'button_text_color_normal',
array(
'label' => __( 'Text Color', 'powerpack' ),
'type' => Controls_Manager::COLOR,
'default' => '',
'selectors' => array(
'{{WRAPPER}} .pp-posts-button' => 'color: {{VALUE}}',
),
'condition' => array(
$this->get_control_id( 'show_button' ) => 'yes',
),
)
);
$this->add_group_control(
Group_Control_Border::get_type(),
array(
'name' => 'button_border_normal',
'label' => __( 'Border', 'powerpack' ),
'placeholder' => '1px',
'default' => '1px',
'selector' => '{{WRAPPER}} .pp-posts-button',
'condition' => array(
$this->get_control_id( 'show_button' ) => 'yes',
),
)
);
$this->add_responsive_control(
'button_border_radius',
array(
'label' => __( 'Border Radius', 'powerpack' ),
'type' => Controls_Manager::DIMENSIONS,
'size_units' => array( 'px', '%', 'em' ),
'selectors' => array(
'{{WRAPPER}} .pp-posts-button' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
),
'condition' => array(
$this->get_control_id( 'show_button' ) => 'yes',
),
)
);
$this->add_responsive_control(
'button_margin',
array(
'label' => __( 'Margin', 'powerpack' ),
'type' => Controls_Manager::DIMENSIONS,
'size_units' => array( 'px', 'em', '%' ),
'selectors' => array(
'{{WRAPPER}} .pp-posts-button' => 'margin: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
),
'condition' => array(
$this->get_control_id( 'show_button' ) => 'yes',
),
)
);
$this->add_responsive_control(
'button_padding',
array(
'label' => __( 'Padding', 'powerpack' ),
'type' => Controls_Manager::DIMENSIONS,
'size_units' => array( 'px', 'em', '%' ),
'selectors' => array(
'{{WRAPPER}} .pp-posts-button' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
),
'condition' => array(
$this->get_control_id( 'show_button' ) => 'yes',
),
)
);
$this->add_group_control(
Group_Control_Box_Shadow::get_type(),
array(
'name' => 'button_box_shadow',
'selector' => '{{WRAPPER}} .pp-posts-button',
'condition' => array(
$this->get_control_id( 'show_button' ) => 'yes',
),
)
);
$this->add_control(
'read_more_button_icon_style_heading',
array(
'label' => __( 'Button Icon', 'powerpack' ),
'type' => Controls_Manager::HEADING,
'separator' => 'before',
'condition' => array(
$this->get_control_id( 'show_button' ) => 'yes',
$this->get_control_id( 'select_button_icon[value]!' ) => '',
),
)
);
$this->add_control(
'button_icon_spacing',
array(
'label' => __( 'Icon Spacing', 'powerpack' ),
'type' => Controls_Manager::SLIDER,
'range' => array(
'px' => array(
'max' => 50,
),
),
'selectors' => array(
'{{WRAPPER}} .elementor-align-icon-right' => 'margin-left: {{SIZE}}{{UNIT}};',
'{{WRAPPER}} .elementor-align-icon-left' => 'margin-right: {{SIZE}}{{UNIT}};',
),
'condition' => array(
$this->get_control_id( 'show_button' ) => 'yes',
$this->get_control_id( 'select_button_icon[value]!' ) => '',
),
)
);
$this->end_controls_tab();
$this->start_controls_tab(
'tab_button_hover',
array(
'label' => __( 'Hover', 'powerpack' ),
'condition' => array(
$this->get_control_id( 'show_button' ) => 'yes',
),
)
);
$this->add_control(
'button_bg_color_hover',
array(
'label' => __( 'Background Color', 'powerpack' ),
'type' => Controls_Manager::COLOR,
'default' => '',
'selectors' => array(
'{{WRAPPER}} .pp-posts-button:hover' => 'background-color: {{VALUE}}',
),
'condition' => array(
$this->get_control_id( 'show_button' ) => 'yes',
),
)
);
$this->add_control(
'button_text_color_hover',
array(
'label' => __( 'Text Color', 'powerpack' ),
'type' => Controls_Manager::COLOR,
'default' => '',
'selectors' => array(
'{{WRAPPER}} .pp-posts-button:hover' => 'color: {{VALUE}}',
),
'condition' => array(
$this->get_control_id( 'show_button' ) => 'yes',
),
)
);
$this->add_control(
'button_border_color_hover',
array(
'label' => __( 'Border Color', 'powerpack' ),
'type' => Controls_Manager::COLOR,
'default' => '',
'selectors' => array(
'{{WRAPPER}} .pp-posts-button:hover' => 'border-color: {{VALUE}}',
),
'condition' => array(
$this->get_control_id( 'show_button' ) => 'yes',
),
)
);
$this->add_control(
'button_animation',
array(
'label' => __( 'Animation', 'powerpack' ),
'type' => Controls_Manager::HOVER_ANIMATION,
'condition' => array(
$this->get_control_id( 'show_button' ) => 'yes',
),
)
);
$this->add_group_control(
Group_Control_Box_Shadow::get_type(),
array(
'name' => 'button_box_shadow_hover',
'selector' => '{{WRAPPER}} .pp-posts-button:hover',
'condition' => array(
$this->get_control_id( 'show_button' ) => 'yes',
),
)
);
$this->end_controls_tab();
$this->end_controls_tabs();
$this->end_controls_section();
}
public function register_style_arrows_controls() {
$this->start_controls_section(
'section_arrows_style',
array(
'label' => __( 'Arrows', 'powerpack' ),
'tab' => Controls_Manager::TAB_STYLE,
'condition' => array(
$this->get_control_id( 'layout' ) => 'carousel',
$this->get_control_id( 'arrows' ) => 'yes',
),
)
);
$this->add_control(
'select_arrow',
array(
'label' => __( 'Choose Arrow', 'powerpack' ),
'type' => Controls_Manager::ICONS,
'fa4compatibility' => 'arrow',
'label_block' => false,
'default' => array(
'value' => 'fas fa-angle-right',
'library' => 'fa-solid',
),
'skin' => 'inline',
'exclude_inline_options' => 'svg',
'recommended' => array(
'fa-regular' => array(
'arrow-alt-circle-right',
'caret-square-right',
'hand-point-right',
),
'fa-solid' => array(
'angle-right',
'angle-double-right',
'chevron-right',
'chevron-circle-right',
'arrow-right',
'long-arrow-alt-right',
'caret-right',
'caret-square-right',
'arrow-circle-right',
'arrow-alt-circle-right',
'toggle-right',
'hand-point-right',
),
),
'condition' => array(
$this->get_control_id( 'layout' ) => 'carousel',
$this->get_control_id( 'arrows' ) => 'yes',
),
)
);
$this->add_responsive_control(
'arrows_size',
array(
'label' => __( 'Arrows Size', 'powerpack' ),
'type' => Controls_Manager::SLIDER,
'default' => array( 'size' => '22' ),
'range' => array(
'px' => array(
'min' => 15,
'max' => 100,
'step' => 1,
),
),
'size_units' => array( 'px' ),
'selectors' => array(
'{{WRAPPER}} .pp-slider-arrow' => 'font-size: {{SIZE}}{{UNIT}}; line-height: {{SIZE}}{{UNIT}};',
),
'condition' => array(
$this->get_control_id( 'layout' ) => 'carousel',
$this->get_control_id( 'arrows' ) => 'yes',
),
)
);
$this->add_responsive_control(
'arrows_position',
array(
'label' => __( 'Align Arrows', 'powerpack' ),
'type' => Controls_Manager::SLIDER,
'range' => array(
'px' => array(
'min' => -100,
'max' => 50,
'step' => 1,
),
),
'size_units' => array( 'px' ),
'selectors' => array(
'{{WRAPPER}} .pp-arrow-next' => 'right: {{SIZE}}{{UNIT}};',
'{{WRAPPER}} .pp-arrow-prev' => 'left: {{SIZE}}{{UNIT}};',
),
'condition' => array(
$this->get_control_id( 'layout' ) => 'carousel',
$this->get_control_id( 'arrows' ) => 'yes',
),
)
);
$this->start_controls_tabs( 'tabs_arrows_style' );
$this->start_controls_tab(
'tab_arrows_normal',
array(
'label' => __( 'Normal', 'powerpack' ),
'condition' => array(
$this->get_control_id( 'layout' ) => 'carousel',
$this->get_control_id( 'arrows' ) => 'yes',
),
)
);
$this->add_control(
'arrows_bg_color_normal',
array(
'label' => __( 'Background Color', 'powerpack' ),
'type' => Controls_Manager::COLOR,
'default' => '',
'selectors' => array(
'{{WRAPPER}} .pp-slider-arrow' => 'background-color: {{VALUE}};',
),
'condition' => array(
$this->get_control_id( 'layout' ) => 'carousel',
$this->get_control_id( 'arrows' ) => 'yes',
),
)
);
$this->add_control(
'arrows_color_normal',
array(
'label' => __( 'Color', 'powerpack' ),
'type' => Controls_Manager::COLOR,
'default' => '',
'selectors' => array(
'{{WRAPPER}} .pp-slider-arrow' => 'color: {{VALUE}};',
),
'condition' => array(
$this->get_control_id( 'layout' ) => 'carousel',
$this->get_control_id( 'arrows' ) => 'yes',
),
)
);
$this->add_group_control(
Group_Control_Border::get_type(),
array(
'name' => 'arrows_border_normal',
'label' => __( 'Border', 'powerpack' ),
'placeholder' => '1px',
'default' => '1px',
'selector' => '{{WRAPPER}} .pp-slider-arrow',
'condition' => array(
$this->get_control_id( 'layout' ) => 'carousel',
$this->get_control_id( 'arrows' ) => 'yes',
),
)
);
$this->add_responsive_control(
'arrows_border_radius_normal',
array(
'label' => __( 'Border Radius', 'powerpack' ),
'type' => Controls_Manager::DIMENSIONS,
'size_units' => array( 'px', '%', 'em' ),
'selectors' => array(
'{{WRAPPER}} .pp-slider-arrow' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
),
'condition' => array(
$this->get_control_id( 'layout' ) => 'carousel',
$this->get_control_id( 'arrows' ) => 'yes',
),
)
);
$this->end_controls_tab();
$this->start_controls_tab(
'tab_arrows_hover',
array(
'label' => __( 'Hover', 'powerpack' ),
'condition' => array(
$this->get_control_id( 'layout' ) => 'carousel',
$this->get_control_id( 'arrows' ) => 'yes',
),
)
);
$this->add_control(
'arrows_bg_color_hover',
array(
'label' => __( 'Background Color', 'powerpack' ),
'type' => Controls_Manager::COLOR,
'default' => '',
'selectors' => array(
'{{WRAPPER}} .pp-slider-arrow:hover' => 'background-color: {{VALUE}};',
),
'condition' => array(
$this->get_control_id( 'layout' ) => 'carousel',
$this->get_control_id( 'arrows' ) => 'yes',
),
)
);
$this->add_control(
'arrows_color_hover',
array(
'label' => __( 'Color', 'powerpack' ),
'type' => Controls_Manager::COLOR,
'default' => '',
'selectors' => array(
'{{WRAPPER}} .pp-slider-arrow:hover' => 'color: {{VALUE}};',
),
'condition' => array(
$this->get_control_id( 'layout' ) => 'carousel',
$this->get_control_id( 'arrows' ) => 'yes',
),
)
);
$this->add_control(
'arrows_border_color_hover',
array(
'label' => __( 'Border Color', 'powerpack' ),
'type' => Controls_Manager::COLOR,
'default' => '',
'selectors' => array(
'{{WRAPPER}} .pp-slider-arrow:hover' => 'border-color: {{VALUE}};',
),
'condition' => array(
$this->get_control_id( 'layout' ) => 'carousel',
$this->get_control_id( 'arrows' ) => 'yes',
),
)
);
$this->end_controls_tab();
$this->end_controls_tabs();
$this->add_responsive_control(
'arrows_padding',
array(
'label' => __( 'Padding', 'powerpack' ),
'type' => Controls_Manager::DIMENSIONS,
'size_units' => array( 'px', '%' ),
'selectors' => array(
'{{WRAPPER}} .pp-slider-arrow' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
),
'separator' => 'before',
'condition' => array(
$this->get_control_id( 'layout' ) => 'carousel',
$this->get_control_id( 'arrows' ) => 'yes',
),
)
);
$this->end_controls_section();
}
public function register_style_dots_controls() {
$this->start_controls_section(
'section_dots_style',
array(
'label' => __( 'Dots', 'powerpack' ),
'tab' => Controls_Manager::TAB_STYLE,
'condition' => array(
$this->get_control_id( 'layout' ) => 'carousel',
$this->get_control_id( 'dots' ) => 'yes',
),
)
);
$this->add_control(
'dots_position',
[
'label' => __( 'Position', 'powerpack' ),
'type' => Controls_Manager::SELECT,
'options' => [
'inside' => __( 'Inside', 'powerpack' ),
'outside' => __( 'Outside', 'powerpack' ),
],
'default' => 'outside',
'condition' => array(
$this->get_control_id( 'layout' ) => 'carousel',
$this->get_control_id( 'dots' ) => 'yes',
),
]
);
$this->add_responsive_control(
'dots_size',
array(
'label' => __( 'Size', 'powerpack' ),
'type' => Controls_Manager::SLIDER,
'range' => array(
'px' => array(
'min' => 2,
'max' => 40,
'step' => 1,
),
),
'size_units' => '',
'selectors' => array(
'{{WRAPPER}} .swiper-container-wrap .swiper-pagination-bullet' => 'width: {{SIZE}}{{UNIT}}; height: {{SIZE}}{{UNIT}};',
),
'condition' => array(
$this->get_control_id( 'layout' ) => 'carousel',
$this->get_control_id( 'dots' ) => 'yes',
),
)
);
$this->add_responsive_control(
'dots_spacing',
array(
'label' => __( 'Spacing', 'powerpack' ),
'type' => Controls_Manager::SLIDER,
'range' => array(
'px' => array(
'min' => 1,
'max' => 30,
'step' => 1,
),
),
'size_units' => '',
'selectors' => array(
'{{WRAPPER}} .swiper-container-wrap .swiper-pagination-bullet' => 'margin-left: {{SIZE}}{{UNIT}}; margin-right: {{SIZE}}{{UNIT}}',
),
'condition' => array(
$this->get_control_id( 'layout' ) => 'carousel',
$this->get_control_id( 'dots' ) => 'yes',
),
)
);
$this->start_controls_tabs( 'tabs_dots_style' );
$this->start_controls_tab(
'tab_dots_normal',
array(
'label' => __( 'Normal', 'powerpack' ),
'condition' => array(
$this->get_control_id( 'layout' ) => 'carousel',
$this->get_control_id( 'dots' ) => 'yes',
),
)
);
$this->add_control(
'dots_color_normal',
array(
'label' => __( 'Color', 'powerpack' ),
'type' => Controls_Manager::COLOR,
'default' => '',
'selectors' => array(
'{{WRAPPER}} .swiper-container-wrap .swiper-pagination-bullet' => 'background: {{VALUE}};',
),
'condition' => array(
$this->get_control_id( 'layout' ) => 'carousel',
$this->get_control_id( 'dots' ) => 'yes',
),
)
);
$this->add_group_control(
Group_Control_Border::get_type(),
array(
'name' => 'dots_border_normal',
'label' => __( 'Border', 'powerpack' ),
'placeholder' => '1px',
'default' => '1px',
'selector' => '{{WRAPPER}} .swiper-container-wrap .swiper-pagination-bullet',
'condition' => array(
$this->get_control_id( 'layout' ) => 'carousel',
$this->get_control_id( 'dots' ) => 'yes',
),
)
);
$this->add_responsive_control(
'dots_border_radius_normal',
array(
'label' => __( 'Border Radius', 'powerpack' ),
'type' => Controls_Manager::DIMENSIONS,
'size_units' => array( 'px', '%', 'em' ),
'selectors' => array(
'{{WRAPPER}} .swiper-container-wrap .swiper-pagination-bullet' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
),
'condition' => array(
$this->get_control_id( 'layout' ) => 'carousel',
$this->get_control_id( 'dots' ) => 'yes',
),
)
);
$this->add_responsive_control(
'dots_margin',
array(
'label' => __( 'Margin', 'powerpack' ),
'type' => Controls_Manager::DIMENSIONS,
'size_units' => array( 'px', 'em', '%' ),
'allowed_dimensions' => 'vertical',
'placeholder' => array(
'top' => '',
'right' => 'auto',
'bottom' => '',
'left' => 'auto',
),
'selectors' => array(
'{{WRAPPER}} .swiper-container-wrap .swiper-pagination-bullets' => 'margin: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
),
'condition' => array(
$this->get_control_id( 'layout' ) => 'carousel',
$this->get_control_id( 'dots' ) => 'yes',
),
)
);
$this->end_controls_tab();
$this->start_controls_tab(
'tab_dots_active',
array(
'label' => __( 'Active', 'powerpack' ),
'condition' => array(
$this->get_control_id( 'layout' ) => 'carousel',
$this->get_control_id( 'dots' ) => 'yes',
),
)
);
$this->add_control(
'dots_color_active',
array(
'label' => __( 'Color', 'powerpack' ),
'type' => Controls_Manager::COLOR,
'default' => '',
'selectors' => array(
'{{WRAPPER}} .swiper-container-wrap .swiper-pagination-bullet.swiper-pagination-bullet-active' => 'background: {{VALUE}};',
),
'condition' => array(
$this->get_control_id( 'layout' ) => 'carousel',
$this->get_control_id( 'dots' ) => 'yes',
),
)
);
$this->add_control(
'dots_border_color_active',
array(
'label' => __( 'Border Color', 'powerpack' ),
'type' => Controls_Manager::COLOR,
'default' => '',
'selectors' => array(
'{{WRAPPER}} .swiper-container-wrap .swiper-pagination-bullet.swiper-pagination-bullet-active' => 'border-color: {{VALUE}};',
),
'condition' => array(
$this->get_control_id( 'layout' ) => 'carousel',
$this->get_control_id( 'dots' ) => 'yes',
),
)
);
$this->end_controls_tab();
$this->start_controls_tab(
'tab_dots_hover',
array(
'label' => __( 'Hover', 'powerpack' ),
'condition' => array(
$this->get_control_id( 'layout' ) => 'carousel',
$this->get_control_id( 'dots' ) => 'yes',
),
)
);
$this->add_control(
'dots_color_hover',
array(
'label' => __( 'Color', 'powerpack' ),
'type' => Controls_Manager::COLOR,
'default' => '',
'selectors' => array(
'{{WRAPPER}} .swiper-container-wrap .swiper-pagination-bullet:hover' => 'background: {{VALUE}};',
),
'condition' => array(
$this->get_control_id( 'layout' ) => 'carousel',
$this->get_control_id( 'dots' ) => 'yes',
),
)
);
$this->add_control(
'dots_border_color_hover',
array(
'label' => __( 'Border Color', 'powerpack' ),
'type' => Controls_Manager::COLOR,
'default' => '',
'selectors' => array(
'{{WRAPPER}} .swiper-container-wrap .swiper-pagination-bullet:hover' => 'border-color: {{VALUE}};',
),
'condition' => array(
$this->get_control_id( 'layout' ) => 'carousel',
$this->get_control_id( 'dots' ) => 'yes',
),
)
);
$this->end_controls_tab();
$this->end_controls_tabs();
$this->end_controls_section();
}
public function register_style_pagination_controls() {
$this->start_controls_section(
'section_pagination_style',
array(
'label' => __( 'Pagination', 'powerpack' ),
'tab' => Controls_Manager::TAB_STYLE,
'condition' => array(
$this->get_control_id( 'layout!' ) => 'carousel',
$this->get_control_id( 'pagination_type!' ) => 'none',
),
)
);
$this->add_responsive_control(
'pagination_margin_top',
array(
'label' => __( 'Gap between Posts & Pagination', 'powerpack' ),
'type' => Controls_Manager::SLIDER,
'default' => array(
'size' => '',
),
'range' => array(
'px' => array(
'min' => 0,
'max' => 100,
),
),
'selectors' => array(
'{{WRAPPER}} .pp-posts-pagination-top .pp-posts-pagination' => 'margin-bottom: {{SIZE}}{{UNIT}};',
'{{WRAPPER}} .pp-posts-pagination-bottom .pp-posts-pagination' => 'margin-top: {{SIZE}}{{UNIT}};',
),
'condition' => array(
$this->get_control_id( 'layout!' ) => 'carousel',
$this->get_control_id( 'pagination_type' ) => array( 'numbers', 'numbers_and_prev_next', 'load_more' ),
),
)
);
$this->add_control(
'load_more_button_size',
array(
'label' => __( 'Size', 'powerpack' ),
'type' => Controls_Manager::SELECT,
'default' => 'sm',
'options' => array(
'xs' => __( 'Extra Small', 'powerpack' ),
'sm' => __( 'Small', 'powerpack' ),
'md' => __( 'Medium', 'powerpack' ),
'lg' => __( 'Large', 'powerpack' ),
'xl' => __( 'Extra Large', 'powerpack' ),
),
'condition' => array(
$this->get_control_id( 'layout!' ) => 'carousel',
$this->get_control_id( 'pagination_type' ) => 'load_more',
),
)
);
$this->add_group_control(
Group_Control_Typography::get_type(),
array(
'name' => 'pagination_typography',
'selector' => '{{WRAPPER}} .pp-posts-pagination .page-numbers, {{WRAPPER}} .pp-posts-pagination a',
'scheme' => Scheme_Typography::TYPOGRAPHY_2,
'condition' => array(
$this->get_control_id( 'layout!' ) => 'carousel',
$this->get_control_id( 'pagination_type' ) => array( 'numbers', 'numbers_and_prev_next', 'load_more' ),
),
)
);
$this->start_controls_tabs( 'tabs_pagination' );
$this->start_controls_tab(
'tab_pagination_normal',
array(
'label' => __( 'Normal', 'powerpack' ),
'condition' => array(
$this->get_control_id( 'layout!' ) => 'carousel',
$this->get_control_id( 'pagination_type' ) => array( 'numbers', 'numbers_and_prev_next', 'load_more' ),
),
)
);
$this->add_control(
'pagination_link_bg_color_normal',
array(
'label' => __( 'Background Color', 'powerpack' ),
'type' => Controls_Manager::COLOR,
'default' => '',
'selectors' => array(
'{{WRAPPER}} .pp-posts-pagination .page-numbers, {{WRAPPER}} .pp-posts-pagination a' => 'background-color: {{VALUE}}',
),
'condition' => array(
$this->get_control_id( 'layout!' ) => 'carousel',
$this->get_control_id( 'pagination_type' ) => array( 'numbers', 'numbers_and_prev_next', 'load_more' ),
),
)
);
$this->add_control(
'pagination_color',
array(
'label' => __( 'Color', 'powerpack' ),
'type' => Controls_Manager::COLOR,
'selectors' => array(
'{{WRAPPER}} .pp-posts-pagination .page-numbers, {{WRAPPER}} .pp-posts-pagination a' => 'color: {{VALUE}};',
),
'condition' => array(
$this->get_control_id( 'layout!' ) => 'carousel',
$this->get_control_id( 'pagination_type' ) => array( 'numbers', 'numbers_and_prev_next', 'load_more' ),
),
)
);
$this->add_group_control(
Group_Control_Border::get_type(),
array(
'name' => 'pagination_link_border_normal',
'label' => __( 'Border', 'powerpack' ),
'placeholder' => '1px',
'default' => '1px',
'selector' => '{{WRAPPER}} .pp-posts-pagination .page-numbers, {{WRAPPER}} .pp-posts-pagination a',
'condition' => array(
$this->get_control_id( 'layout!' ) => 'carousel',
$this->get_control_id( 'pagination_type' ) => array( 'numbers', 'numbers_and_prev_next', 'load_more' ),
),
)
);
$this->add_responsive_control(
'pagination_link_border_radius',
array(
'label' => __( 'Border Radius', 'powerpack' ),
'type' => Controls_Manager::DIMENSIONS,
'size_units' => array( 'px', '%', 'em' ),
'selectors' => array(
'{{WRAPPER}} .pp-posts-pagination .page-numbers, {{WRAPPER}} .pp-posts-pagination a' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
),
'condition' => array(
$this->get_control_id( 'layout!' ) => 'carousel',
$this->get_control_id( 'pagination_type' ) => array( 'numbers', 'numbers_and_prev_next', 'load_more' ),
),
)
);
$this->add_responsive_control(
'pagination_link_padding',
array(
'label' => __( 'Padding', 'powerpack' ),
'type' => Controls_Manager::DIMENSIONS,
'size_units' => array( 'px', 'em', '%' ),
'selectors' => array(
'{{WRAPPER}} .pp-posts-pagination .page-numbers, {{WRAPPER}} .pp-posts-pagination a' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
),
'condition' => array(
$this->get_control_id( 'layout!' ) => 'carousel',
$this->get_control_id( 'pagination_type' ) => array( 'numbers', 'numbers_and_prev_next', 'load_more' ),
),
)
);
$this->add_group_control(
Group_Control_Box_Shadow::get_type(),
array(
'name' => 'pagination_link_box_shadow',
'selector' => '{{WRAPPER}} .pp-posts-pagination .page-numbers, {{WRAPPER}} .pp-posts-pagination a',
'condition' => array(
$this->get_control_id( 'layout!' ) => 'carousel',
$this->get_control_id( 'pagination_type' ) => array( 'numbers', 'numbers_and_prev_next', 'load_more' ),
),
)
);
$this->end_controls_tab();
$this->start_controls_tab(
'tab_pagination_hover',
array(
'label' => __( 'Hover', 'powerpack' ),
'condition' => array(
$this->get_control_id( 'layout!' ) => 'carousel',
$this->get_control_id( 'pagination_type' ) => array( 'numbers', 'numbers_and_prev_next', 'load_more' ),
),
)
);
$this->add_control(
'pagination_link_bg_color_hover',
array(
'label' => __( 'Background Color', 'powerpack' ),
'type' => Controls_Manager::COLOR,
'default' => '',
'selectors' => array(
'{{WRAPPER}} .pp-posts-pagination a:hover' => 'background-color: {{VALUE}}',
),
'condition' => array(
$this->get_control_id( 'layout!' ) => 'carousel',
$this->get_control_id( 'pagination_type' ) => array( 'numbers', 'numbers_and_prev_next', 'load_more' ),
),
)
);
$this->add_control(
'pagination_color_hover',
array(
'label' => __( 'Color', 'powerpack' ),
'type' => Controls_Manager::COLOR,
'selectors' => array(
'{{WRAPPER}} .pp-posts-pagination a:hover' => 'color: {{VALUE}};',
),
'condition' => array(
$this->get_control_id( 'layout!' ) => 'carousel',
$this->get_control_id( 'pagination_type' ) => array( 'numbers', 'numbers_and_prev_next', 'load_more' ),
),
)
);
$this->add_control(
'pagination_border_color_hover',
array(
'label' => __( 'Border Color', 'powerpack' ),
'type' => Controls_Manager::COLOR,
'selectors' => array(
'{{WRAPPER}} .pp-posts-pagination a:hover' => 'border-color: {{VALUE}};',
),
'condition' => array(
$this->get_control_id( 'layout!' ) => 'carousel',
$this->get_control_id( 'pagination_type' ) => array( 'numbers', 'numbers_and_prev_next', 'load_more' ),
),
)
);
$this->add_group_control(
Group_Control_Box_Shadow::get_type(),
array(
'name' => 'pagination_link_box_shadow_hover',
'selector' => '{{WRAPPER}} .pp-posts-pagination a:hover',
'condition' => array(
$this->get_control_id( 'layout!' ) => 'carousel',
$this->get_control_id( 'pagination_type' ) => array( 'numbers', 'numbers_and_prev_next', 'load_more' ),
),
)
);
$this->end_controls_tab();
$this->start_controls_tab(
'tab_pagination_active',
array(
'label' => __( 'Active', 'powerpack' ),
'condition' => array(
$this->get_control_id( 'layout!' ) => 'carousel',
$this->get_control_id( 'pagination_type' ) => array( 'numbers', 'numbers_and_prev_next' ),
),
)
);
$this->add_control(
'pagination_link_bg_color_active',
array(
'label' => __( 'Background Color', 'powerpack' ),
'type' => Controls_Manager::COLOR,
'default' => '',
'selectors' => array(
'{{WRAPPER}} .pp-posts-pagination .page-numbers.current' => 'background-color: {{VALUE}}',
),
'condition' => array(
$this->get_control_id( 'layout!' ) => 'carousel',
$this->get_control_id( 'pagination_type' ) => array( 'numbers', 'numbers_and_prev_next' ),
),
)
);
$this->add_control(
'pagination_color_active',
array(
'label' => __( 'Color', 'powerpack' ),
'type' => Controls_Manager::COLOR,
'selectors' => array(
'{{WRAPPER}} .pp-posts-pagination .page-numbers.current' => 'color: {{VALUE}};',
),
'condition' => array(
$this->get_control_id( 'layout!' ) => 'carousel',
$this->get_control_id( 'pagination_type' ) => array( 'numbers', 'numbers_and_prev_next' ),
),
)
);
$this->add_control(
'pagination_border_color_active',
array(
'label' => __( 'Border Color', 'powerpack' ),
'type' => Controls_Manager::COLOR,
'selectors' => array(
'{{WRAPPER}} .pp-posts-pagination .page-numbers.current' => 'border-color: {{VALUE}};',
),
'condition' => array(
$this->get_control_id( 'layout!' ) => 'carousel',
$this->get_control_id( 'pagination_type' ) => array( 'numbers', 'numbers_and_prev_next' ),
),
)
);
$this->add_group_control(
Group_Control_Box_Shadow::get_type(),
array(
'name' => 'pagination_link_box_shadow_active',
'selector' => '{{WRAPPER}} .pp-posts-pagination .page-numbers.current',
'condition' => array(
$this->get_control_id( 'layout!' ) => 'carousel',
$this->get_control_id( 'pagination_type' ) => array( 'numbers', 'numbers_and_prev_next' ),
),
)
);
$this->end_controls_tab();
$this->end_controls_tabs();
$this->add_responsive_control(
'pagination_spacing',
array(
'label' => __( 'Space Between', 'powerpack' ),
'type' => Controls_Manager::SLIDER,
'separator' => 'before',
'default' => array(
'size' => 10,
),
'range' => array(
'px' => array(
'min' => 0,
'max' => 100,
),
),
'selectors' => array(
'body:not(.rtl) {{WRAPPER}} .pp-posts-pagination .page-numbers:not(:first-child)' => 'margin-left: calc( {{SIZE}}{{UNIT}}/2 );',
'body:not(.rtl) {{WRAPPER}} .pp-posts-pagination .page-numbers:not(:last-child)' => 'margin-right: calc( {{SIZE}}{{UNIT}}/2 );',
'body.rtl {{WRAPPER}} .pp-posts-pagination .page-numbers:not(:first-child)' => 'margin-right: calc( {{SIZE}}{{UNIT}}/2 );',
'body.rtl {{WRAPPER}} .pp-posts-pagination .page-numbers:not(:last-child)' => 'margin-left: calc( {{SIZE}}{{UNIT}}/2 );',
),
'condition' => array(
$this->get_control_id( 'layout!' ) => 'carousel',
$this->get_control_id( 'pagination_type' ) => array( 'numbers', 'numbers_and_prev_next' ),
),
)
);
$this->add_control(
'heading_loader',
array(
'label' => __( 'Loader', 'powerpack' ),
'type' => Controls_Manager::HEADING,
'separator' => 'before',
'condition' => array(
$this->get_control_id( 'layout!' ) => 'carousel',
$this->get_control_id( 'pagination_type' ) => array( 'load_more', 'infinite' ),
),
)
);
$this->add_control(
'loader_color',
array(
'label' => __( 'Color', 'powerpack' ),
'type' => Controls_Manager::COLOR,
'selectors' => array(
'{{WRAPPER}} .pp-loader:after, {{WRAPPER}} .pp-posts-loader:after' => 'border-bottom-color: {{VALUE}}; border-top-color: {{VALUE}};',
),
'condition' => array(
$this->get_control_id( 'layout!' ) => 'carousel',
$this->get_control_id( 'pagination_type' ) => array( 'load_more', 'infinite' ),
),
)
);
$this->add_responsive_control(
'loader_size',
array(
'label' => __( 'Size', 'powerpack' ),
'type' => Controls_Manager::SLIDER,
'range' => array(
'px' => array(
'min' => 10,
'max' => 80,
'step' => 1,
),
),
'default' => array(
'size' => 46,
),
'size_units' => array( 'px' ),
'selectors' => array(
'{{WRAPPER}} .pp-posts-loader' => 'width: {{SIZE}}{{UNIT}}; height: {{SIZE}}{{UNIT}};',
),
'condition' => array(
$this->get_control_id( 'layout!' ) => 'carousel',
$this->get_control_id( 'pagination_type' ) => array( 'load_more', 'infinite' ),
),
)
);
$this->end_controls_section();
}
public function get_avatar_size( $size = 'sm' ) {
if ( 'xs' === $size ) {
$value = 30;
} elseif ( 'sm' === $size ) {
$value = 60;
} elseif ( 'md' === $size ) {
$value = 120;
} elseif ( 'lg' === $size ) {
$value = 180;
} elseif ( 'xl' === $size ) {
$value = 240;
} else {
$value = 60;
}
return $value;
}
/**
* Get Filter taxonomy array.
*
* Returns the Filter array of objects.
*
* @since 1.7.0
* @access public
*/
public function get_filter_values() {
$settings = $this->parent->get_settings_for_display();
$post_type = $settings['post_type'];
$filter_by = $this->get_instance_value( 'tax_' . $post_type . '_filter' );
$filters_orderby = $this->get_instance_value( 'filters_orderby' );
$filters_order = $this->get_instance_value( 'filters_order' );
$taxonomy = $this->get_filter_taxonomies();
$filters = array();
$terms_ids = array();
$filter_terms_ids = array();
$this->parent->query_filters_posts( $filter = '', $taxonomy, $search = '' );
$query = $this->parent->get_query_filters();
foreach ( $query->posts as $post ) {
$post_terms = wp_get_post_terms(
$post->ID,
$taxonomy
);
foreach ( $post_terms as $post_term ) {
$terms_ids[] = $post_term->term_id;
}
}
$all_taxonomies = PP_Posts_Helper::get_post_taxonomies( $post_type );
if ( ! empty( $all_taxonomies ) && ! is_wp_error( $all_taxonomies ) ) {
foreach ( $all_taxonomies as $index => $tax ) {
$tax_control_key = $index . '_' . $post_type;
$filter_type = isset( $settings[ $tax_control_key . '_filter_type' ] ) ? $settings[ $tax_control_key . '_filter_type' ] : '';
if ( 'IN' === $filter_type ) {
if ( ! empty( $settings[ $tax_control_key ] ) ) {
$filter_terms_ids = $settings[ $tax_control_key ];
}
}
}
}
if ( ! empty( $filter_terms_ids ) ) {
$terms_ids = $filter_terms_ids;
}
if ( ! empty( $terms_ids ) ) {
$terms_ids = array_unique( $terms_ids );
$post_all_terms = get_terms(
array(
'include' => $terms_ids,
'orderby' => $filters_orderby,
'order' => $filters_order,
)
);
foreach ( $post_all_terms as $post_term ) {
$filters[ $post_term->slug ] = $post_term;
}
}
return apply_filters( 'ppe_posts_filters', $filters );
}
/**
* Get Filter taxonomy array.
*
* Returns the Filter array of objects.
*
* @since 1.7.0
* @access public
*/
public function get_filter_taxonomies() {
$settings = $this->parent->get_settings();
$post_type = $settings['post_type'];
$filter_by = $this->get_instance_value( 'tax_' . $post_type . '_filter' );
return $filter_by;
}
/**
* Render Search Form.
*
* Returns the Filter HTML.
*
* @since 1.7.0
* @access public
*/
public function render_search_form() {
$show_ajax_search_form = $this->get_instance_value( 'show_ajax_search_form' );
$placeholder = $this->get_instance_value( 'search_form_input_placeholder' );
$button_type = $this->get_instance_value( 'search_form_button_type' );
$button_text = $this->get_instance_value( 'search_form_button_text' );
$search_button_icon = $this->get_instance_value( 'search_button_icon' );
if ( 'yes' !== $show_ajax_search_form ) {
return;
}
$this->parent->add_render_attribute(
'input',
array(
'placeholder' => $placeholder,
'class' => 'pp-search-form-input',
'type' => 'search',
'name' => 's',
'title' => __( 'Search', 'powerpack' ),
)
);
// Set the selected icon.
$icon_class = '';
if ( 'icon' === $button_type ) {
$icon_class = 'search';
if ( 'arrow' === $search_button_icon ) {
$icon_class = is_rtl() ? 'arrow-left' : 'arrow-right';
}
$this->parent->add_render_attribute(
'icon',
array(
'class' => 'fa fa-' . $icon_class,
)
);
}
?>
<div class="pp-search-form-container">
<div class="pp-search-form">
<input <?php echo wp_kses_post( $this->parent->get_render_attribute_string( 'input' ) ); ?>>
<button class="pp-search-form-submit" type="submit" title="<?php esc_attr_e( 'Search', 'powerpack' ); ?>" aria-label="<?php esc_attr_e( 'Search', 'powerpack' ); ?>">
<?php if ( 'icon' === $button_type ) : ?>
<i <?php echo wp_kses_post( $this->parent->get_render_attribute_string( 'icon' ) ); ?> aria-hidden="true"></i>
<span class="elementor-screen-only"><?php esc_html_e( 'Search', 'powerpack' ); ?></span>
<?php elseif ( ! empty( $button_text ) ) : ?>
<?php echo wp_kses_post( $button_text ); ?>
<?php endif; ?>
</button>
</div>
</div>
<?php
}
/**
* Render Filters.
*
* Returns the Filter HTML.
*
* @since 1.7.0
* @access public
*/
public function render_filters() {
$settings = $this->parent->get_settings_for_display();
$layout = $this->get_instance_value( 'layout' );
$query_type = $settings['query_type'];
$show_filters = $this->get_instance_value( 'show_filters' );
$show_filters_count = $this->get_instance_value( 'show_filters_count' );
$show_ajax_search_form = $this->get_instance_value( 'show_ajax_search_form' );
$search_form_action = $this->get_instance_value( 'search_form_action' );
if ( 'custom' !== $query_type ) {
return;
}
if ( 'carousel' === $layout ) {
return;
}
if ( 'yes' !== $show_filters && 'yes' !== $show_ajax_search_form ) {
return;
}
$filters = $this->get_filter_values();
$all_label = $this->get_instance_value( 'filter_all_label' );
$this->parent->add_render_attribute( 'filters-container', 'class', 'pp-post-filters-container' );
if ( 'yes' === $show_ajax_search_form ) {
$this->parent->add_render_attribute(
'filters-container',
array(
'data-search-form' => 'show',
'data-search-action' => $search_form_action,
)
);
}
$enable_active_filter = $this->get_instance_value( 'enable_active_filter' );
$filter_active = '';
if ( 'yes' === $enable_active_filter ) {
$filter_active = $this->get_instance_value( 'filter_active' );
$filter_active = apply_filters( 'ppe_posts_filter_active', $filter_active, $filter_active );
}
?>
<div <?php echo wp_kses_post( $this->parent->get_render_attribute_string( 'filters-container' ) ); ?>>
<?php
if ( 'yes' === $show_filters ) {
$this->parent->add_render_attribute( 'pp-post-filters-wrap', 'class', [ 'pp-post-filters-wrap', 'pp-post-filters-dropdown-' . $this->get_instance_value( 'responsive_support' ) ] );
?>
<div <?php echo wp_kses_post( $this->parent->get_render_attribute_string( 'pp-post-filters-wrap' ) ); ?>>
<ul class="pp-post-filters <?php echo ( 'no' !== $this->get_instance_value( 'responsive_support' ) ) ? 'pp-has-post-filters-dropdown' : '' ; ?>">
<li class="pp-post-filter <?php echo ( 'yes' === $enable_active_filter && '' !== $filter_active ) ? '' : 'pp-filter-current'; ?>" data-filter="*" data-taxonomy=""><?php echo ( 'All' === $all_label || '' === $all_label ) ? esc_attr__( 'All', 'powerpack' ) : esc_attr( $all_label ); ?></li>
<?php foreach ( $filters as $key => $value ) { ?>
<?php
if ( 'yes' === $show_filters_count ) {
$filter_value = $value->name . '<span class="pp-post-filter-count">' . $value->count . '</span>';
} else {
$filter_value = $value->name;
}
$term_active = get_term_by('slug', $key, $value->taxonomy );
$term_id_active = $term_active->term_id;
?>
<?php if ( 'yes' === $enable_active_filter && ( $term_id_active === intval( $filter_active ) ) ) { ?>
<li class="pp-post-filter pp-filter-current" data-filter="<?php echo '.' . esc_attr( $value->slug ); ?>" data-taxonomy="<?php echo '.' . esc_attr( $value->taxonomy ); ?>"><?php echo wp_kses_post( $filter_value ); ?></li>
<?php } else { ?>
<li class="pp-post-filter" data-filter="<?php echo '.' . esc_attr( $value->slug ); ?>" data-taxonomy="<?php echo '.' . esc_attr( $value->taxonomy ); ?>"><?php echo wp_kses_post( $filter_value ); ?></li>
<?php
}
}
?>
</ul>
<?php
if ( 'no' !== $this->get_instance_value( 'responsive_support' ) ) {
$this->parent->add_render_attribute( 'pp-post-filters-dropdown', 'class', 'pp-post-filters-dropdown' );
?>
<div <?php echo wp_kses_post( $this->parent->get_render_attribute_string( 'pp-post-filters-dropdown' ) ); ?>>
<div class="pp-post-filters-dropdown-button"><?php echo ( 'All' === $all_label || '' === $all_label ) ? esc_attr__( 'All', 'powerpack' ) : esc_attr( $all_label ); ?></div>
<ul class="pp-post-filters-dropdown-list">
<li class="pp-post-filters-dropdown-item <?php echo ( 'yes' === $enable_active_filter ) ? '' : 'pp-filter-current'; ?>" data-filter="*" data-taxonomy=""><?php echo ( 'All' === $all_label || '' === $all_label ) ? esc_attr__( 'All', 'powerpack' ) : esc_attr( $all_label ); ?></li>
<?php foreach ( $filters as $key => $value ) { ?>
<?php
if ( 'yes' === $show_filters_count ) {
$filter_value = $value->name . '<span class="pp-post-filter-count">' . $value->count . '</span>';
} else {
$filter_value = $value->name;
}
?>
<?php if ( 'yes' === $enable_active_filter && ( $key === $filter_active ) ) { ?>
<li class="pp-post-filters-dropdown-item pp-filter-current" data-filter="<?php echo '.' . esc_attr( $value->slug ); ?>" data-taxonomy="<?php echo '.' . esc_attr( $value->taxonomy ); ?>"><?php echo wp_kses_post( $filter_value ); ?></li>
<?php } else { ?>
<li class="pp-post-filters-dropdown-item " data-filter="<?php echo '.' . esc_attr( $value->slug ); ?>" data-taxonomy="<?php echo '.' . esc_attr( $value->taxonomy ); ?>"><?php echo wp_kses_post( $filter_value ); ?></li>
<?php
}
}
?>
</ul>
</div>
<?php } ?>
</div>
<?php } ?>
<?php $this->render_search_form(); ?>
</div>
<?php
}
/**
* Get Masonry classes array.
*
* Returns the Masonry classes array.
*
* @since 1.7.0
* @access public
*/
public function get_masonry_classes() {
$settings = $this->parent->get_settings_for_display();
$post_type = $settings['post_type'];
$filter_by = $this->get_instance_value( 'tax_' . $post_type . '_filter' );
$taxonomies = wp_get_post_terms( get_the_ID(), $filter_by );
$class = array();
if ( count( $taxonomies ) > 0 ) {
foreach ( $taxonomies as $taxonomy ) {
if ( is_object( $taxonomy ) ) {
$class[] = $taxonomy->slug;
}
}
}
return implode( ' ', $class );
}
/**
* Render post terms output on the frontend.
*
* Written in PHP and used to generate the final HTML.
*
* @access protected
*/
protected function render_terms() {
$settings = $this->parent->get_settings_for_display();
$post_terms = $this->get_instance_value( 'post_terms' );
$query_type = $settings['query_type'];
if ( 'yes' !== $post_terms ) {
return;
}
$post_type = $settings['post_type'];
if ( 'related' === $settings['post_type'] || 'main' === $query_type ) {
$post_type = get_post_type();
}
$taxonomies = $this->get_instance_value( 'tax_badge_' . $post_type );
$terms = array();
if ( is_array( $taxonomies ) ) {
foreach ( $taxonomies as $taxonomy ) {
$terms_tax = wp_get_post_terms( get_the_ID(), $taxonomy );
$terms = array_merge( $terms, $terms_tax );
}
} else {
$terms = wp_get_post_terms( get_the_ID(), $taxonomies );
}
if ( empty( $terms ) || is_wp_error( $terms ) ) {
return;
}
$max_terms = $this->get_instance_value( 'max_terms' );
if ( $max_terms ) {
$terms = array_slice( $terms, 0, $max_terms );
}
$terms = apply_filters( 'ppe_posts_terms', $terms );
$link_terms = $this->get_instance_value( 'post_taxonomy_link' );
if ( 'yes' === $link_terms ) {
$format = '<span class="pp-post-term"><a href="%2$s">%1$s</a></span>';
} else {
$format = '<span class="pp-post-term">%1$s</span>';
}
?>
<?php do_action( 'ppe_before_single_post_terms', get_the_ID(), $settings ); ?>
<div class="pp-post-terms-wrap">
<span class="pp-post-terms">
<?php
foreach ( $terms as $term ) {
printf( wp_kses_post( $format ), esc_attr( $term->name ), esc_url( get_term_link( (int) $term->term_id ) ) );
}
do_action( 'ppe_single_post_terms', get_the_ID(), $settings );
?>
</span>
</div>
<?php do_action( 'ppe_after_single_post_terms', get_the_ID(), $settings ); ?>
<?php
}
/**
* Render post meta output on the frontend.
*
* Written in PHP and used to generate the final HTML.
*
* @access protected
*/
protected function render_meta_item( $item_type = '' ) {
$skin = $this->get_id();
$settings = $this->parent->get_settings_for_display();
if ( '' === $item_type ) {
return;
}
$show_item = $this->get_instance_value( 'show_' . $item_type );
$item_link = $this->get_instance_value( $item_type . '_link' );
$item_prefix = $this->get_instance_value( $item_type . '_prefix' );
$hide_empty_comments = $this->get_instance_value( 'hide_empty_comments' );
if ( 'yes' !== $show_item ) {
return;
}
if ( 'comments' === $item_type && 'yes' === $hide_empty_comments && '0' === get_comments_number() ) {
return;
}
$item_icon = $this->get_instance_value( $item_type . '_icon' );
$select_item_icon = $this->get_instance_value( 'select_' . $item_type . '_icon' );
$migrated = isset( $settings['__fa4_migrated'][ $skin . '_select_' . $item_type . '_icon' ] );
$is_new = empty( $settings[ $skin . '_' . $item_type . '_icon' ] ) && Icons_Manager::is_migration_allowed();
?>
<?php do_action( 'ppe_before_single_post_' . $item_type, get_the_ID(), $settings ); ?>
<span class="pp-post-<?php echo esc_attr( $item_type ); ?>">
<?php
if ( $item_icon || $select_item_icon ) { ?>
<span class="pp-icon">
<?php
if ( $is_new || $migrated ) {
Icons_Manager::render_icon( $select_item_icon, array( 'class' => 'pp-meta-icon', 'aria-hidden' => 'true' ) );
} else { ?>
<span class="pp-meta-icon <?php echo esc_attr( $item_icon ); ?>" aria-hidden="true"></span>
<?php
} ?>
</span>
<?php
}
if ( $item_prefix ) {
?>
<span class="pp-meta-prefix">
<?php
echo esc_attr( $item_prefix );
?>
</span>
<?php
}
?>
<span class="pp-meta-text">
<?php
if ( 'author' === $item_type ) {
echo wp_kses_post( $this->get_post_author( $item_link ) );
} elseif ( 'date' === $item_type ) {
if ( PP_Helper::is_tribe_events_post( get_the_ID() ) && function_exists( 'tribe_get_start_date' ) ) {
$date_format = $this->get_instance_value( 'date_format_select' );
$date_custom_format = $this->get_instance_value( 'date_custom_format' );
if ( 'custom' === $date_format && $date_custom_format ) {
$date_format = $date_custom_format;
}
$post_date = tribe_get_start_time( get_the_ID(), $date_format );
} else {
$post_date = $this->get_post_date();
}
if ( 'yes' === $item_link ) {
echo '<a href="' . esc_url( get_permalink() ) . '">' . wp_kses_post( $post_date ) . '</a>';
} else {
echo wp_kses_post( $post_date );
}
} elseif ( 'comments' === $item_type ) {
echo wp_kses_post( $this->get_post_comments() );
}
?>
</span>
</span>
<span class="pp-meta-separator"></span>
<?php do_action( 'ppe_after_single_post_' . $item_type, get_the_ID(), $settings ); ?>
<?php
}
/**
* Get post author
*
* @access protected
*/
protected function get_post_author( $author_link = '' ) {
if ( 'yes' === $author_link ) {
return get_the_author_posts_link();
} else {
return get_the_author();
}
}
/**
* Get post author
*
* @access protected
*/
protected function get_post_comments() {
/**
* Comments Filter
*
* Filters the output for comments
*
* @since 1.4.11.0
* @param string $comments The original text
* @param int get_the_id() The post ID
*/
$comments = get_comments_number_text();
$comments = apply_filters( 'ppe_posts_comments', $comments, get_the_ID() );
return $comments;
}
/**
* Get post date
*
* @access protected
*/
protected function get_post_date( $date_link = '' ) {
$date_type = $this->get_instance_value( 'date_format' );
$date_format = $this->get_instance_value( 'date_format_select' );
$date_custom_format = $this->get_instance_value( 'date_custom_format' );
$date = '';
if ( 'custom' === $date_format && $date_custom_format ) {
$date_format = $date_custom_format;
}
if ( 'ago' === $date_type ) {
$date = sprintf( _x( '%s ago', '%s = human-readable time difference', 'powerpack' ), human_time_diff( get_the_time( 'U' ), current_time( 'timestamp' ) ) );
} elseif ( 'modified' === $date_type ) {
$date = get_the_modified_date( $date_format, get_the_ID() );
} elseif ( 'key' === $date_type ) {
$date_meta_key = $this->get_instance_value( 'date_meta_key' );
if ( $date_meta_key ) {
$date = get_post_meta( get_the_ID(), $date_meta_key, 'true' );
}
} else {
$date = get_the_date( $date_format );
}
if ( '' === $date ) {
$date = get_the_date( $date_format );
}
return apply_filters( 'ppe_posts_date', $date, get_the_ID() );
}
/**
* Render post thumbnail output on the frontend.
*
* Written in PHP and used to generate the final HTML.
*
* @access protected
*/
protected function get_post_thumbnail() {
$settings = $this->parent->get_settings_for_display();
$image = $this->get_instance_value( 'show_thumbnail' );
$fallback_image = $this->get_instance_value( 'fallback_image' );
$fallback_image_custom = $this->get_instance_value( 'fallback_image_custom' );
$post_type_name = $settings['post_type'];
if ( 'yes' !== $image ) {
return;
}
if ( has_post_thumbnail() || 'attachment' === $post_type_name ) {
if ( 'attachment' === $post_type_name ) {
$image_id = get_the_ID();
} else {
$image_id = get_post_thumbnail_id( get_the_ID() );
}
$setting_key = $this->get_control_id( 'thumbnail' );
$settings[ $setting_key ] = array(
'id' => $image_id,
);
$thumbnail_html = Group_Control_Image_Size::get_attachment_image_html( $settings, $setting_key );
} elseif ( 'default' === $fallback_image ) {
$thumbnail_url = Utils::get_placeholder_image_src();
$thumbnail_html = '<img src="' . $thumbnail_url . '"/>';
} elseif ( 'custom' === $fallback_image ) {
$custom_image_id = $fallback_image_custom['id'];
$setting_key = $this->get_control_id( 'thumbnail' );
$settings[ $setting_key ] = array(
'id' => $custom_image_id,
);
$thumbnail_html = Group_Control_Image_Size::get_attachment_image_html( $settings, $setting_key );
}
if ( empty( $thumbnail_html ) ) {
return;
}
return $thumbnail_html;
}
/**
* Render post title output on the frontend.
*
* Written in PHP and used to generate the final HTML.
*
* @access protected
*/
protected function render_post_title() {
$settings = $this->parent->get_settings_for_display();
$show_post_title = $this->get_instance_value( 'post_title' );
$title_tag = PP_Helper::validate_html_tag( $this->get_instance_value( 'title_html_tag' ) );
$title_link = $this->get_instance_value( 'post_title_link' );
$title_link_key = 'title-link-' . get_the_ID();
$title_link_target = $this->get_instance_value( 'post_title_link_target' );
$post_title_separator = $this->get_instance_value( 'post_title_separator' );
if ( 'yes' !== $show_post_title ) {
return;
}
$post_title = get_the_title();
/**
* Post Title Filter
*
* Filters post title
*
* @since 1.4.11.0
* @param string $post_title The original text
* @param int get_the_id() The post ID
*/
$post_title = apply_filters( 'ppe_posts_title', $post_title, get_the_ID() );
if ( $post_title ) {
?>
<?php do_action( 'ppe_before_single_post_title', get_the_ID(), $settings ); ?>
<<?php echo esc_html( $title_tag ); ?> class="pp-post-title">
<?php
if ( 'yes' === $title_link ) {
$this->parent->add_render_attribute( $title_link_key, 'href', apply_filters( 'ppe_posts_title_link', get_the_permalink(), get_the_ID() ) );
if ( 'yes' === $title_link_target ) {
$this->parent->add_render_attribute( $title_link_key, 'target', '_blank' );
}
$post_title = '<a ' . $this->parent->get_render_attribute_string( $title_link_key ) . '>' . $post_title . '</a>';
}
echo wp_kses_post( $post_title );
?>
</<?php echo esc_html( $title_tag ); ?>>
<?php
if ( 'yes' === $post_title_separator ) {
?>
<div class="pp-post-separator-wrap">
<div class="pp-post-separator"></div>
</div>
<?php
}
}
do_action( 'ppe_after_single_post_title', get_the_ID(), $settings );
}
/**
* Render post thumbnail output on the frontend.
*
* Written in PHP and used to generate the final HTML.
*
* @access protected
*/
protected function render_post_thumbnail() {
$settings = $this->parent->get_settings_for_display();
$image_link = $this->get_instance_value( 'thumbnail_link' );
$image_link_key = 'image-link-' . get_the_ID();
$image_link_target = $this->get_instance_value( 'thumbnail_link_target' );
$thumbnail_html = $this->get_post_thumbnail();
if ( empty( $thumbnail_html ) ) {
return;
}
if ( 'yes' === $image_link ) {
$this->parent->add_render_attribute( $image_link_key, 'href', apply_filters( 'ppe_posts_image_link', get_the_permalink(), get_the_ID() ) );
if ( 'yes' === $image_link_target ) {
$this->parent->add_render_attribute( $image_link_key, 'target', '_blank' );
}
$thumbnail_html = '<a ' . $this->parent->get_render_attribute_string( $image_link_key ) . '>' . $thumbnail_html . '</a>';
}
do_action( 'ppe_before_single_post_thumbnail', get_the_ID(), $settings );
?>
<div class="pp-post-thumbnail">
<div class="pp-post-thumbnail-wrap">
<?php echo wp_kses_post( $thumbnail_html ); ?>
</div>
</div>
<?php
do_action( 'ppe_after_single_post_thumbnail', get_the_ID(), $settings );
}
/**
* Get post excerpt length.
*
* Returns the length of post excerpt.
*
* @since 1.7.0
* @access public
*/
public function pp_excerpt_length_filter() {
return $this->get_instance_value( 'excerpt_length' );
}
/**
* Get post excerpt end text.
*
* Returns the string to append to post excerpt.
*
* @param string $more returns string.
* @since 1.7.0
* @access public
*/
public function pp_excerpt_more_filter( $more ) {
return ' ...';
}
/**
* Get post excerpt.
*
* Returns the post excerpt HTML wrap.
*
* @since 1.7.0
* @access public
*/
public function render_excerpt() {
$settings = $this->parent->get_settings_for_display();
$show_excerpt = $this->get_instance_value( 'show_excerpt' );
$excerpt_length = $this->get_instance_value( 'excerpt_length' );
$content_type = $this->get_instance_value( 'content_type' );
$content_length = $this->get_instance_value( 'content_length' );
if ( 'yes' !== $show_excerpt ) {
return;
}
if ( 'excerpt' === $content_type && 0 === $excerpt_length ) {
return;
}
?>
<?php do_action( 'ppe_before_single_post_excerpt', get_the_ID(), $settings ); ?>
<div class="pp-post-excerpt">
<?php
if ( 'full' === $content_type ) {
the_content();
} elseif ( 'content' === $content_type ) {
$more = '...';
$post_content = wp_trim_words( get_the_content(), $content_length, apply_filters( 'pp_posts_content_limit_more', $more ) );
echo wp_kses_post( $post_content );
} else {
add_filter( 'excerpt_length', array( $this, 'pp_excerpt_length_filter' ), 20 );
add_filter( 'excerpt_more', array( $this, 'pp_excerpt_more_filter' ), 20 );
the_excerpt();
remove_filter( 'excerpt_length', array( $this, 'pp_excerpt_length_filter' ), 20 );
remove_filter( 'excerpt_more', array( $this, 'pp_excerpt_more_filter' ), 20 );
}
?>
</div>
<?php do_action( 'ppe_after_single_post_excerpt', get_the_ID(), $settings ); ?>
<?php
}
/**
* Render button icon output on the frontend.
*
* Written in PHP and used to generate the final HTML.
*
* @access protected
*/
protected function render_button_icon() {
$skin = $this->get_id();
$settings = $this->parent->get_settings_for_display();
$show_button = $this->get_instance_value( 'show_button' );
if ( 'yes' !== $show_button ) {
return;
}
$button_icon = $this->get_instance_value( 'button_icon' );
$select_button_icon = $this->get_instance_value( 'select_button_icon' );
$button_icon_position = $this->get_instance_value( 'button_icon_position' );
$button_icon_align = ( 'before' === $button_icon_position ) ? 'left' : 'right';
$migrated = isset( $settings['__fa4_migrated'][ $skin . '_select_button_icon' ] );
$is_new = empty( $settings[ $skin . '_button_icon' ] ) && Icons_Manager::is_migration_allowed();
if ( $is_new || $migrated ) { ?>
<span class="pp-button-icon elementor-button-icon elementor-align-icon-<?php echo esc_attr( $button_icon_align ); ?>">
<?php Icons_Manager::render_icon( $select_button_icon, array( 'aria-hidden' => 'true' ) ); ?>
</span>
<?php
} else { ?>
<span class="pp-button-icon elementor-button-icon elementor-align-icon-<?php echo esc_attr( $button_icon_align ); ?>">
<i class="pp-button-icon <?php echo esc_attr( $button_icon ); ?>" aria-hidden="true"></i>
</span>
<?php
}
}
/**
* Render button output on the frontend.
*
* Written in PHP and used to generate the final HTML.
*
* @access protected
*/
protected function render_button() {
$skin = $this->get_id();
$settings = $this->parent->get_settings_for_display();
$show_button = $this->get_instance_value( 'show_button' );
$button_animation = $this->get_instance_value( 'button_animation' );
if ( 'yes' !== $show_button ) {
return;
}
$button_text = isset( $settings[ $skin . '_button_text' ] ) ? $settings[ $skin . '_button_text' ] : $this->get_instance_value( 'button_text' );
$button_icon_position = $this->get_instance_value( 'button_icon_position' );
$button_size = $this->get_instance_value( 'button_size' );
$button_link_target = $this->get_instance_value( 'button_link_target' );
$classes = array(
'pp-posts-button',
'elementor-button',
'elementor-size-' . $button_size,
);
if ( $button_animation ) {
$classes[] = 'elementor-animation-' . $button_animation;
}
$title_attribute = the_title_attribute( 'echo=0' );
$this->parent->add_render_attribute(
'button-' . get_the_ID(),
array(
'class' => implode( ' ', $classes ),
'href' => apply_filters( 'ppe_posts_button_link', get_the_permalink(), get_the_ID() ),
'title' => $title_attribute,
'aria-label' => apply_filters( 'ppe_posts_button_aria_label', sprintf(
/* translators: Aria-label describing the read more button */
esc_attr__( 'Read more about %1$s', 'powerpack' ),
$title_attribute
), get_the_ID() ),
)
);
if ( 'yes' === $button_link_target ) {
$this->parent->add_render_attribute( 'button-' . get_the_ID(), 'target', '_blank' );
}
/**
* Button Text Filter
*
* Filters the text for the button
*
* @since 1.4.11.0
* @param string $button_text The original text
* @param int get_the_id() The post ID
*/
$button_text = apply_filters( 'ppe_posts_button_text', $button_text, get_the_ID() );
?>
<?php do_action( 'ppe_before_single_post_button', get_the_ID(), $settings ); ?>
<a <?php echo wp_kses_post( $this->parent->get_render_attribute_string( 'button-' . get_the_ID() ) ); ?>>
<?php if ( 'before' === $button_icon_position ) {
$this->render_button_icon();
} ?>
<?php if ( $button_text ) { ?>
<span class="pp-button-text">
<?php echo wp_kses_post( $button_text ); ?>
</span>
<?php } ?>
<?php if ( 'after' === $button_icon_position ) {
$this->render_button_icon();
} ?>
</a>
<?php do_action( 'ppe_after_single_post_button', get_the_ID(), $settings ); ?>
<?php
}
/**
* Render post body output on the frontend.
*
* Written in PHP and used to generate the final HTML.
*
* @access protected
*/
public function render_ajax_post_body( $filter = '', $taxonomy = '', $search = '' ) {
ob_start();
$this->parent->query_posts( $filter, $taxonomy, $search );
$query = $this->parent->get_query();
$total_pages = $query->max_num_pages;
while ( $query->have_posts() ) {
$query->the_post();
$this->render_post_body();
}
wp_reset_postdata();
return ob_get_clean();
}
/**
* Render post body output on the frontend.
*
* Written in PHP and used to generate the final HTML.
*
* @access protected
*/
public function render_ajax_pagination() {
ob_start();
$this->render_pagination();
return ob_get_clean();
}
/**
* Render post body output on the frontend.
*
* Written in PHP and used to generate the final HTML.
*
* @access protected
*/
public function render_ajax_not_found( $filter = '', $taxonomy = '', $search = '' ) {
ob_start();
$this->parent->query_posts( $filter, $taxonomy, $search );
$query = $this->parent->get_query();
if ( ! $query->found_posts ) {
$this->render_search();
}
return ob_get_clean();
}
/**
* Get Pagination.
*
* Returns the Pagination HTML.
*
* @since 1.7.0
* @access public
*/
public function render_pagination() {
$settings = $this->parent->get_settings_for_display();
$pagination_type = $this->get_instance_value( 'pagination_type' );
$page_limit = $this->get_instance_value( 'pagination_page_limit' );
$pagination_shorten = $this->get_instance_value( 'pagination_numbers_shorten' );
if ( 'none' === $pagination_type ) {
return;
}
// Get current page number.
$paged = $this->parent->get_paged();
$query = $this->parent->get_query();
$total_pages = $query->max_num_pages;
$total_pages_pagination = $query->max_num_pages;
if ( 'load_more' !== $pagination_type || 'infinite' !== $pagination_type ) {
if ( '' !== $page_limit && null !== $page_limit ) {
$total_pages = min( $page_limit, $total_pages );
}
}
if ( 2 > $total_pages ) {
return;
}
$has_numbers = in_array( $pagination_type, array( 'numbers', 'numbers_and_prev_next' ) );
$has_prev_next = ( 'numbers_and_prev_next' === $pagination_type );
$is_load_more = ( 'load_more' === $pagination_type );
$is_infinite = ( 'infinite' === $pagination_type );
$links = array();
if ( $has_numbers || $is_infinite ) {
$current_page = $paged;
if ( ! $current_page ) {
$current_page = 1;
}
$paginate_args = array(
'type' => 'array',
'current' => $current_page,
'total' => $total_pages,
'prev_next' => false,
'show_all' => 'yes' !== $pagination_shorten,
);
}
if ( $has_prev_next ) {
$prev_label = $this->get_instance_value( 'pagination_prev_label' );
$next_label = $this->get_instance_value( 'pagination_next_label' );
$paginate_args['prev_next'] = true;
if ( $prev_label ) {
$paginate_args['prev_text'] = $prev_label;
}
if ( $next_label ) {
$paginate_args['next_text'] = $next_label;
}
}
if ( $has_numbers || $has_prev_next || $is_infinite ) {
if ( is_singular() && ! is_front_page() && ! is_singular( 'page' ) ) {
global $wp_rewrite;
if ( $wp_rewrite->using_permalinks() ) {
$paginate_args['base'] = trailingslashit( get_permalink() ) . '%_%';
$paginate_args['format'] = user_trailingslashit( '%#%', 'single_paged' );
} else {
$paginate_args['format'] = '?page=%#%';
}
}
$links = paginate_links( $paginate_args );
}
if ( ! $is_load_more ) {
$pagination_ajax = ( 'yes' === $this->get_instance_value( 'show_filters' ) || 'yes' === $this->get_instance_value( 'show_ajax_search_form' ) ) ? 'yes' : $this->get_instance_value( 'pagination_ajax' );
$query_type = $settings['query_type'];
$pagination_type = 'standard';
if ( 'yes' === $pagination_ajax && 'main' !== $query_type ) {
$pagination_type = 'ajax';
}
?>
<nav class="pp-posts-pagination pp-posts-pagination-<?php echo esc_attr( $pagination_type ); ?> elementor-pagination" role="navigation" aria-label="<?php esc_attr_e( 'Pagination', 'powerpack' ); ?>" data-total="<?php echo esc_html( $total_pages_pagination ); ?>">
<?php echo implode( PHP_EOL, $links ); //phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>
</nav>
<?php
}
if ( $is_load_more ) {
$load_more_label = $this->get_instance_value( 'pagination_load_more_label' );
$load_more_button_icon = $this->get_instance_value( 'pagination_load_more_button_icon' );
$load_more_button_icon_position = $this->get_instance_value( 'pagination_load_more_button_icon_position' );
$load_more_button_size = $this->get_instance_value( 'load_more_button_size' );
?>
<div class="pp-post-load-more-wrap pp-posts-pagination" data-total="<?php echo esc_html( $total_pages_pagination ); ?>">
<a class="pp-post-load-more elementor-button elementor-size-<?php echo esc_attr( $load_more_button_size ); ?>" href="javascript:void(0);">
<?php if ( $load_more_button_icon && 'before' === $load_more_button_icon_position ) { ?>
<span class="pp-button-icon <?php echo esc_attr( $load_more_button_icon ); ?>" aria-hidden="true"></span>
<?php } ?>
<?php if ( $load_more_label ) { ?>
<span class="pp-button-text">
<?php echo esc_html( $load_more_label ); ?>
</span>
<?php } ?>
<?php if ( $load_more_button_icon && 'after' === $load_more_button_icon_position ) { ?>
<span class="pp-button-icon <?php echo esc_attr( $load_more_button_icon ); ?>" aria-hidden="true"></span>
<?php } ?>
</a>
</div>
<?php
}
}
public function get_posts_outer_wrap_classes() {
$layout = $this->get_instance_value( 'layout' );
$pagination_type = $this->get_instance_value( 'pagination_type' );
$dots_position = $this->get_instance_value( 'dots_position' );
$classes = array(
'pp-posts-container',
);
if ( 'carousel' === $layout ) {
$classes[] = 'swiper-container-wrap';
if ( $dots_position ) {
$classes[] = 'swiper-container-wrap-dots-' . $dots_position;
}
}
if ( 'infinite' === $pagination_type ) {
$classes[] = 'pp-posts-infinite-scroll';
}
return apply_filters( 'ppe_posts_outer_wrap_classes', $classes );
}
public function get_posts_wrap_classes() {
$layout = $this->get_instance_value( 'layout' );
$classes = array(
'pp-posts',
'pp-posts-skin-' . $this->get_id(),
);
if ( 'carousel' === $layout ) {
$classes[] = 'pp-posts-carousel';
$classes[] = 'pp-swiper-slider';
$classes[] = 'swiper-container';
} elseif ( 'masonry' === $layout ) {
$classes[] = 'pp-elementor-grid';
$classes[] = 'pp-posts-grid';
} else {
$classes[] = 'elementor-grid';
$classes[] = 'pp-posts-grid';
}
return apply_filters( 'ppe_posts_wrap_classes', $classes );
}
public function get_item_wrap_classes() {
$layout = $this->get_instance_value( 'layout' );
$classes = array( 'pp-post-wrap' );
if ( 'carousel' === $layout ) {
$classes[] = 'pp-carousel-item-wrap swiper-slide';
} elseif ( 'masonry' === $layout ) {
$classes[] = 'pp-grid-item-wrap';
} else {
$classes[] = 'pp-grid-item-wrap elementor-grid-item';
}
return implode( ' ', $classes );
}
public function get_item_classes() {
$layout = $this->get_instance_value( 'layout' );
$classes = array();
$classes[] = 'pp-post';
if ( 'carousel' === $layout ) {
$classes[] = 'pp-carousel-item';
} else {
$classes[] = 'pp-grid-item';
}
return implode( ' ', $classes );
}
public function get_ordered_items( $items ) {
if ( ! $items ) {
return;
}
$ordered_items = array();
foreach ( $items as $item ) {
$order = $this->get_instance_value( $item . '_order' );
$order = ( $order ) ? $order : 1;
$ordered_items[ $item ] = $order;
}
asort( $ordered_items );
return $ordered_items;
}
/**
* Render post meta output on the frontend.
*
* Written in PHP and used to generate the final HTML.
*
* @access protected
*/
protected function render_post_meta() {
$settings = $this->parent->get_settings_for_display();
$post_meta = $this->get_instance_value( 'post_meta' );
if ( 'yes' === $post_meta ) {
?>
<?php do_action( 'ppe_before_single_post_meta', get_the_ID(), $settings ); ?>
<div class="pp-post-meta">
<?php
$meta_items = $this->get_ordered_items( Module::get_meta_items() );
foreach ( $meta_items as $meta_item => $index ) {
if ( 'author' === $meta_item ) {
// Post Author
$this->render_meta_item( 'author' );
}
if ( 'date' === $meta_item ) {
// Post Date
$this->render_meta_item( 'date' );
}
if ( 'comments' === $meta_item ) {
// Post Comments
$this->render_meta_item( 'comments' );
}
}
?>
</div>
<?php
do_action( 'ppe_after_single_post_meta', get_the_ID(), $settings );
}
}
/**
* Render post body output on the frontend.
*
* Written in PHP and used to generate the final HTML.
*
* @access protected
*/
protected function render_post_body() {
$settings = $this->parent->get_settings_for_display();
$post_terms = $this->get_instance_value( 'post_terms' );
$post_meta = $this->get_instance_value( 'post_meta' );
$thumbnail_location = $this->get_instance_value( 'thumbnail_location' );
do_action( 'ppe_before_single_post_wrap', get_the_ID(), $settings );
?>
<div <?php post_class( $this->get_item_wrap_classes() ); ?>>
<?php do_action( 'ppe_before_single_post', get_the_ID(), $settings ); ?>
<div class="<?php echo esc_attr( $this->get_item_classes() ); ?>">
<?php
if ( 'outside' === $thumbnail_location ) {
$this->render_post_thumbnail();
}
?>
<?php do_action( 'ppe_before_single_post_content', get_the_ID(), $settings ); ?>
<div class="pp-post-content">
<?php
$content_parts = $this->get_ordered_items( Module::get_post_parts() );
foreach ( $content_parts as $part => $index ) {
if ( 'thumbnail' === $part ) {
if ( 'inside' === $thumbnail_location ) {
$this->render_post_thumbnail();
}
}
if ( 'terms' === $part ) {
$this->render_terms();
}
if ( 'title' === $part ) {
$this->render_post_title();
}
if ( 'meta' === $part ) {
$this->render_post_meta();
}
if ( 'excerpt' === $part ) {
$this->render_excerpt();
}
if ( 'button' === $part ) {
$this->render_button();
}
}
?>
</div>
<?php do_action( 'ppe_after_single_post_content', get_the_ID(), $settings ); ?>
</div>
<?php do_action( 'ppe_after_single_post', get_the_ID(), $settings ); ?>
</div>
<?php
do_action( 'ppe_after_single_post_wrap', get_the_ID(), $settings );
}
/**
* Render Search Form HTML.
*
* Returns the Search Form HTML.
*
* @since 1.4.11.0
* @access public
*/
public function render_search() {
$settings = $this->parent->get_settings_for_display();
?>
<div class="pp-posts-empty">
<?php if ( $settings['nothing_found_message'] ) { ?>
<p><?php echo wp_kses_post( $settings['nothing_found_message'] ); ?></p>
<?php } ?>
<?php if ( 'yes' === $settings['show_search_form'] ) { ?>
<?php get_search_form(); ?>
<?php } ?>
</div>
<?php
}
/**
* Carousel Settings.
*
* @access public
*/
public function slider_settings() {
$skin = $this->get_id();
$center_mode = $this->get_instance_value( 'center_mode' );
$autoplay = $this->get_instance_value( 'autoplay' );
$autoplay_speed = $this->get_instance_value( 'autoplay_speed' );
$arrows = $this->get_instance_value( 'arrows' );
$arrow = $this->get_instance_value( 'arrow' );
$select_arrow = $this->get_instance_value( 'select_arrow' );
$dots = $this->get_instance_value( 'dots' );
$animation_speed = $this->get_instance_value( 'animation_speed' );
$infinite_loop = $this->get_instance_value( 'infinite_loop' );
$pause_on_hover = $this->get_instance_value( 'pause_on_hover' );
$adaptive_height = $this->get_instance_value( 'adaptive_height' );
$direction = $this->get_instance_value( 'direction' );
$slides_to_show = ( $this->get_instance_value( 'columns' ) !== '' ) ? absint( $this->get_instance_value( 'columns' ) ) : 3;
$slides_to_show_tablet = ( $this->get_instance_value( 'columns_tablet' ) !== '' ) ? absint( $this->get_instance_value( 'columns_tablet' ) ) : 2;
$slides_to_show_mobile = ( $this->get_instance_value( 'columns_mobile' ) !== '' ) ? absint( $this->get_instance_value( 'columns_mobile' ) ) : 2;
$slides_to_scroll = ( $this->get_instance_value( 'slides_to_scroll' ) !== '' ) ? absint( $this->get_instance_value( 'slides_to_scroll' ) ) : 1;
$slides_to_scroll_tablet = ( $this->get_instance_value( 'slides_to_scroll_tablet' ) !== '' ) ? absint( $this->get_instance_value( 'slides_to_scroll_tablet' ) ) : 1;
$slides_to_scroll_mobile = ( $this->get_instance_value( 'slides_to_scroll_mobile' ) !== '' ) ? absint( $this->get_instance_value( 'slides_to_scroll_mobile' ) ) : 1;
/* if ( 'right' === $direction ) {
$slider_options['rtl'] = true;
} */
$slider_options = [
'direction' => 'horizontal',
'speed' => ( $animation_speed ) ? absint( $animation_speed ) : 600,
'slidesPerView' => $slides_to_show,
'slidesPerGroup' => $slides_to_scroll,
'autoHeight' => true,
'watchSlidesVisibility' => true,
'centeredSlides' => ( 'yes' === $center_mode ),
'loop' => ( 'yes' === $infinite_loop ),
];
if ( 'yes' === $autoplay ) {
$autoplay_speed = ( $autoplay_speed ) ? $autoplay_speed : 999999;
} else {
$autoplay_speed = 999999;
}
$slider_options['autoplay'] = [
'delay' => $autoplay_speed,
'pauseOnHover' => ( 'yes' === $pause_on_hover ),
'disableOnInteraction' => ( 'yes' === $pause_on_hover ),
];
if ( 'yes' === $dots ) {
$slider_options['pagination'] = [
'el' => '.swiper-pagination-' . esc_attr( $this->parent->get_id() ),
'clickable' => true,
];
}
if ( 'yes' === $arrows ) {
$slider_options['navigation'] = [
'nextEl' => '.swiper-button-next-' . esc_attr( $this->parent->get_id() ),
'prevEl' => '.swiper-button-prev-' . esc_attr( $this->parent->get_id() ),
];
}
$elementor_bp_lg = get_option( 'elementor_viewport_lg' );
$elementor_bp_md = get_option( 'elementor_viewport_md' );
$bp_desktop = ! empty( $elementor_bp_lg ) ? $elementor_bp_lg : 1025;
$bp_tablet = ! empty( $elementor_bp_md ) ? $elementor_bp_md : 768;
$bp_mobile = 320;
$items = ( isset( $settings['items']['size'] ) && '' !== $settings['items']['size'] ) ? absint( $settings['items']['size'] ) : 3;
$items_tablet = ( isset( $settings['items_tablet']['size'] ) && '' !== $settings['items_tablet']['size'] ) ? absint( $settings['items_tablet']['size'] ) : 2;
$items_mobile = ( isset( $settings['items_mobile']['size'] ) && '' !== $settings['items_mobile']['size'] ) ? absint( $settings['items_mobile']['size'] ) : 1;
$margin = ( isset( $settings['margin']['size'] ) && '' !== $settings['margin']['size'] ) ? absint( $settings['margin']['size'] ) : 10;
$margin_tablet = ( isset( $settings['margin_tablet']['size'] ) && '' !== $settings['margin_tablet']['size'] ) ? absint( $settings['margin_tablet']['size'] ) : 10;
$margin_mobile = ( isset( $settings['margin_mobile']['size'] ) && '' !== $settings['margin_mobile']['size'] ) ? absint( $settings['margin_mobile']['size'] ) : 10;
$slider_options['breakpoints'] = [
$bp_desktop => [
'slidesPerView' => $slides_to_show,
'slidesPerGroup' => $slides_to_scroll,
//'spaceBetween' => $margin,
],
$bp_tablet => [
'slidesPerView' => $slides_to_show_tablet,
'slidesPerGroup' => $slides_to_scroll_tablet,
//'spaceBetween' => $margin_tablet,
],
$bp_mobile => [
'slidesPerView' => $slides_to_show_mobile,
'slidesPerGroup' => $slides_to_scroll_mobile,
//'spaceBetween' => $margin_mobile,
],
];
$this->parent->add_render_attribute(
'posts-wrap',
array(
'data-slider-settings' => wp_json_encode( $slider_options ),
)
);
}
/**
* Render team member carousel dots output on the frontend.
*
* Written in PHP and used to generate the final HTML.
*
* @access protected
*/
protected function render_dots() {
$dots = $this->get_instance_value( 'dots' );
$layout = $this->get_instance_value( 'layout' );
if ( 'carousel' !== $layout ) {
return;
}
if ( 'yes' === $dots ) {
?>
<!-- Add Pagination -->
<div class="swiper-pagination swiper-pagination-<?php echo esc_attr( $this->parent->get_id() ); ?>"></div>
<?php
}
}
/**
* Render team member carousel arrows output on the frontend.
*
* Written in PHP and used to generate the final HTML.
*
* @access protected
*/
protected function render_arrows() {
$settings = $this->parent->get_settings_for_display();
$skin = $this->get_id();
$layout = $this->get_instance_value( 'layout' );
$arrows = $this->get_instance_value( 'arrows' );
$arrow = $this->get_instance_value( 'arrow' );
$select_arrow = $this->get_instance_value( 'select_arrow' );
if ( 'carousel' !== $layout ) {
return;
}
$migration_allowed = Icons_Manager::is_migration_allowed();
if ( ! isset( $settings[ $skin . '_arrow' ] ) && ! Icons_Manager::is_migration_allowed() ) {
// add old default.
$settings[ $skin . '_arrow' ] = 'fa fa-angle-right';
}
$has_icon = ! empty( $settings[ $skin . '_arrow' ] );
if ( ! $has_icon && ! empty( $select_arrow['value'] ) ) {
$has_icon = true;
}
if ( ! empty( $settings['arrow'] ) ) {
$this->parent->add_render_attribute( 'arrow-icon', 'class', $settings[ $skin . '_arrow' ] );
$this->parent->add_render_attribute( 'arrow-icon', 'aria-hidden', 'true' );
}
$migrated = isset( $settings['__fa4_migrated'][ $skin . '_select_arrow' ] );
$is_new = ! isset( $settings[ $skin . '_arrow' ] ) && Icons_Manager::is_migration_allowed();
if ( 'yes' === $arrows ) {
if ( $has_icon ) {
if ( $is_new || $migrated ) {
$next_arrow = $select_arrow;
$prev_arrow = str_replace( 'right', 'left', $select_arrow );
} else {
$next_arrow = $settings['arrow'];
$prev_arrow = str_replace( 'right', 'left', $arrow );
}
} else {
$next_arrow = 'fa fa-angle-right';
$prev_arrow = 'fa fa-angle-left';
}
if ( ! empty( $arrow ) || ( ! empty( $select_arrow['value'] ) && $is_new ) ) { ?>
<div class="pp-slider-arrow pp-arrow-prev swiper-button-prev swiper-button-prev-<?php echo esc_attr( $this->parent->get_id() ); ?>">
<?php if ( $is_new || $migrated ) :
Icons_Manager::render_icon( $prev_arrow, [ 'aria-hidden' => 'true' ] );
else : ?>
<i <?php $this->parent->print_render_attribute_string( 'arrow-icon' ); ?>></i>
<?php endif; ?>
</div>
<div class="pp-slider-arrow pp-arrow-next swiper-button-next swiper-button-next-<?php echo esc_attr( $this->parent->get_id() ); ?>">
<?php if ( $is_new || $migrated ) :
Icons_Manager::render_icon( $next_arrow, [ 'aria-hidden' => 'true' ] );
else : ?>
<i <?php $this->parent->print_render_attribute_string( 'arrow-icon' ); ?>></i>
<?php endif; ?>
</div>
<?php }
}
}
/**
* Render posts grid widget output on the frontend.
*
* Written in PHP and used to generate the final HTML.
*
* @access protected
*/
public function render() {
$settings = $this->parent->get_settings_for_display();
$query_type = $settings['query_type'];
$layout = $this->get_instance_value( 'layout' );
$pagination_type = $this->get_instance_value( 'pagination_type' );
$pagination_position = $this->get_instance_value( 'pagination_position' );
$equal_height = $this->get_instance_value( 'equal_height' );
$direction = $this->get_instance_value( 'direction' );
$skin = $this->get_id();
$posts_outer_wrap = $this->get_posts_outer_wrap_classes();
$posts_wrap = $this->get_posts_wrap_classes();
$page_id = '';
if ( null !== \Elementor\Plugin::$instance->documents->get_current() ) {
$page_id = \Elementor\Plugin::$instance->documents->get_current()->get_main_id();
}
$this->parent->add_render_attribute( 'posts-container', 'class', $posts_outer_wrap );
$this->parent->add_render_attribute( 'posts-wrap', 'class', $posts_wrap );
if ( 'carousel' === $layout ) {
if ( 'yes' === $equal_height ) {
$this->parent->add_render_attribute( 'posts-wrap', 'data-equal-height', 'yes' );
}
if ( 'right' === $direction ) {
$this->parent->add_render_attribute( 'posts-wrap', 'dir', 'rtl' );
}
}
$this->parent->add_render_attribute(
'posts-wrap',
array(
'data-query-type' => $query_type,
'data-layout' => $layout,
'data-page' => $page_id,
'data-skin' => $skin,
)
);
$this->parent->add_render_attribute( 'post-categories', 'class', 'pp-post-categories' );
$enable_active_filter = $this->get_instance_value( 'enable_active_filter' );
$filter = '';
$taxonomy = '';
if ( 'yes' === $enable_active_filter ) {
$filter_active = $this->get_instance_value( 'filter_active' );
$filters = get_term( $filter_active );
if ( ! is_wp_error( $filters ) && ! empty( $filters ) ) {
$taxonomy = $filters->taxonomy;
$filter = $filters->slug;
}
}
$this->parent->query_posts( $filter, $taxonomy );
$query = $this->parent->get_query();
// Filters
if ( 'related' !== $settings['post_type'] && $query->found_posts ) {
$this->render_filters();
}
if ( 'carousel' === $layout ) {
$this->slider_settings();
}
if ( ! $query->found_posts ) {
?>
<div <?php echo wp_kses_post( $this->parent->get_render_attribute_string( 'posts-container' ) ); ?>>
<?php
$this->render_search();
?>
</div>
<?php
return;
}
do_action( 'ppe_before_posts_outer_wrap', $settings );
?>
<div <?php echo wp_kses_post( $this->parent->get_render_attribute_string( 'posts-container' ) ); ?>>
<?php
do_action( 'ppe_before_posts_wrap', $settings );
$i = 1;
$total_pages = $query->max_num_pages;
?>
<?php if ( 'carousel' !== $layout ) { ?>
<?php if ( ( 'numbers' === $pagination_type || 'numbers_and_prev_next' === $pagination_type ) && ( 'top' === $pagination_position || 'top-bottom' === $pagination_position ) ) { ?>
<div class="pp-posts-pagination-wrap pp-posts-pagination-top">
<?php
$this->render_pagination();
?>
</div>
<?php } ?>
<?php } ?>
<div <?php echo wp_kses_post( $this->parent->get_render_attribute_string( 'posts-wrap' ) ); ?>>
<?php if ( 'carousel' === $layout ) { ?><div class="swiper-wrapper"><?php } ?>
<?php
$i = 1;
if ( $query->have_posts() ) :
while ( $query->have_posts() ) :
$query->the_post();
$this->render_post_body();
$i++;
endwhile;
endif;
wp_reset_postdata();
?>
<?php if ( 'carousel' === $layout ) { ?></div><?php } ?>
</div>
<?php
$this->render_dots();
$this->render_arrows();
?>
<?php do_action( 'ppe_after_posts_wrap', $settings ); ?>
<?php if ( 'load_more' === $pagination_type || 'infinite' === $pagination_type ) { ?>
<div class="pp-posts-loader"></div>
<?php } ?>
<?php
if ( 'load_more' === $pagination_type || 'infinite' === $pagination_type ) {
$pagination_bottom = true;
} elseif ( ( 'numbers' === $pagination_type || 'numbers_and_prev_next' === $pagination_type ) && ( '' === $pagination_position || 'bottom' === $pagination_position || 'top-bottom' === $pagination_position ) ) {
$pagination_bottom = true;
} else {
$pagination_bottom = false;
}
?>
<?php if ( 'carousel' !== $layout ) { ?>
<?php if ( $pagination_bottom ) { ?>
<div class="pp-posts-pagination-wrap pp-posts-pagination-bottom">
<?php
$this->render_pagination();
?>
</div>
<?php } ?>
<?php } ?>
</div>
<?php do_action( 'ppe_after_posts_outer_wrap', $settings ); ?>
<?php
if ( \Elementor\Plugin::instance()->editor->is_edit_mode() ) {
if ( 'masonry' === $layout ) {
$this->render_editor_script();
}
}
}
/**
* Get masonry script.
*
* Returns the post masonry script.
*
* @since 1.7.0
* @access public
*/
public function render_editor_script() {
$settings = $this->parent->get_settings_for_display();
$layout = $this->get_instance_value( 'layout' );
if ( 'masonry' !== $layout ) {
return;
}
$layout = 'masonry';
?>
<script type="text/javascript">
jQuery( document ).ready( function( $ ) {
$( '.pp-posts-grid' ).each( function() {
var $node_id = '<?php echo esc_attr( $this->parent->get_id() ); ?>',
$scope = $( '[data-id="' + $node_id + '"]' ),
$selector = $(this);
if ( $selector.closest( $scope ).length < 1 ) {
return;
}
$selector.imagesLoaded( function() {
$isotopeObj = $selector.isotope({
layoutMode: '<?php echo esc_attr( $layout ); ?>',
itemSelector: '.pp-grid-item-wrap',
});
$selector.find( '.pp-grid-item-wrap' ).resize( function() {
$isotopeObj.isotope( 'layout' );
});
});
});
});
</script>
<?php
}
}