PATH:
home
/
letacommog
/
aperobusiness
/
wp-content
/
themes
/
deep
/
inc
/
core
/
elementor
/
widgets
<?php namespace Elementor; class Webnus_Element_Widgets_Collection extends \Elementor\Widget_Base { /** * Retrieve Collection widget name. * * @since 1.0.0 * @access public * * @return string Widget name. */ public function get_name() { return 'collection'; } /** * Retrieve Collection widget title. * * @since 1.0.0 * @access public * * @return string Widget title. */ public function get_title() { return esc_html__( 'Webnus Collection', 'deep' ); } /** * Retrieve Collection widget icon. * * @since 1.0.0 * @access public * * @return string Widget icon. */ public function get_icon() { return 'ti-layout-accordion-list'; } /** * Set widget category. * * @since 1.0.0 * @access public * * @return array Widget category. */ public function get_categories() { return [ 'webnus' ]; } /** * Register Collection widget controls. * * * @since 1.0.0 * @access protected */ protected function _register_controls() { // Content Tab $this->start_controls_section( 'content_sectiona', [ 'label' => esc_html__( 'General', 'deep' ), 'tab' => Controls_Manager::TAB_CONTENT, ] ); // Collection Name $this->add_control( 'title', //param_name [ 'label' => esc_html__( 'Collection Name', 'deep' ), //heading 'type' => Controls_Manager::TEXT, //type 'placeholder' => esc_html__( 'Type your title text here', 'deep' ), ] ); // Upload Image $this->add_control( 'image', [ 'label' => esc_html__( 'Choose Image', 'deep' ), 'type' => Controls_Manager::MEDIA, 'default' => [ 'url' => Utils::get_placeholder_image_src(), ], ] ); // Top Bottom Position $this->add_control( 'image_top_bottom', [ 'label' => __( 'Image in Top or Bottom?', 'deep' ), 'type' => Controls_Manager::SELECT, 'default' => 'top', 'options' => [ 'top' => __( 'Top', 'deep' ), 'bottom' => __( 'Bottom', 'deep' ), ], ] ); // Left Right Position $this->add_control( 'image_left_right', [ 'label' => __( 'Image in Left or Right?', 'deep' ), 'type' => Controls_Manager::SELECT, 'default' => 'right', 'options' => [ 'left' => __( 'Left', 'deep' ), 'right' => __( 'Right', 'deep' ), ], ] ); // Collection Year $this->add_control( 'year', [ 'label' => esc_html__( 'Collection Year', 'deep' ), 'type' => Controls_Manager::TEXT, 'placeholder' => esc_html__( 'Type your title text here', 'deep' ), ] ); // Collection Brands $this->add_control( 'brands', [ 'label' => esc_html__( 'Brands', 'deep' ), 'type' => Controls_Manager::TEXT, 'placeholder' => esc_html__( 'Type your title text here', 'deep' ), ] ); // Collection Content $this->add_control( 'c_content', //param_name [ 'label' => esc_html__( 'Collection Content', 'deep' ), //heading 'type' => Controls_Manager::TEXTAREA, //type 'rows' => 10, 'placeholder' => esc_html__( 'Content Goes Here', 'deep' ), ] ); $this->end_controls_section(); // Content Tab $this->start_controls_section( 'content_sectionb', [ 'label' => esc_html__( 'URL Options', 'deep' ), 'tab' => \Elementor\Controls_Manager::TAB_CONTENT, ] ); // Collection Brands $this->add_control( 'link_title', [ 'label' => esc_html__( 'Lint Title', 'deep' ), 'type' => Controls_Manager::TEXT, 'placeholder' => esc_html__( 'Type your title text here', 'deep' ), ] ); // Target URL $this->add_control( 'link_href', //param_name [ 'label' => esc_html__( 'Target URL', 'deep' ), //heading 'type' => Controls_Manager::URL, 'default' => [ 'url' => 'http://', 'is_external' => '', ], 'show_external' => true, // Show the 'open in new tab' button. ] ); $this->end_controls_section(); // Class & ID Tab $this->start_controls_section( 'classid_section', [ 'label' => __( 'Class & ID', 'deep' ), 'tab' => Controls_Manager::TAB_CONTENT, ] ); $this->add_control( 'shortcodeclass', [ 'label' => esc_html__( 'Extra Class', 'deep' ), 'type' => Controls_Manager::TEXT, ] ); $this->add_control( 'shortcodeid', [ 'label' => esc_html__( 'ID', 'deep' ), 'type' => Controls_Manager::TEXT, ] ); $this->end_controls_section(); // Style $this->start_controls_section( 'section_title_style', [ 'label' => __( 'Title style', 'deep' ), 'tab' => Controls_Manager::TAB_STYLE, ] ); $this->add_group_control( Group_Control_Typography::get_type(), [ 'name' => 'title_typography', 'label' => __( 'Typography', 'deep' ), 'scheme' => Scheme_Typography::TYPOGRAPHY_2, 'selector' => '#wrap {{WRAPPER}} .wn-collections .collection-title h3', ] ); $this->add_control( 'title_color', //param_name [ 'label' => __( 'Color', 'deep' ), //heading 'type' => \Elementor\Controls_Manager::COLOR, //type 'selectors' => [ '#wrap {{WRAPPER}} .wn-collections .collection-title h3' => 'color: {{VALUE}} !important', ], ] ); $this->end_controls_section(); $this->start_controls_section( 'section_brand_style', [ 'label' => __( 'Brand style', 'deep' ), 'tab' => Controls_Manager::TAB_STYLE, ] ); $this->add_group_control( Group_Control_Typography::get_type(), [ 'name' => 'brand_typography', 'label' => __( 'Typography', 'deep' ), 'scheme' => Scheme_Typography::TYPOGRAPHY_2, 'selector' => '#wrap {{WRAPPER}} .wn-collections .collection-brands', ] ); $this->add_control( 'brand_color', //param_name [ 'label' => __( 'Color', 'deep' ), //heading 'type' => \Elementor\Controls_Manager::COLOR, //type 'selectors' => [ '#wrap {{WRAPPER}} .wn-collections .collection-brands' => 'color: {{VALUE}} !important', ], ] ); $this->end_controls_section(); $this->start_controls_section( 'section_content_style', [ 'label' => __( 'Content style', 'deep' ), 'tab' => Controls_Manager::TAB_STYLE, ] ); $this->add_group_control( Group_Control_Typography::get_type(), [ 'name' => 'content_typography', 'label' => __( 'Typography', 'deep' ), 'scheme' => Scheme_Typography::TYPOGRAPHY_2, 'selector' => '#wrap {{WRAPPER}} .wn-collections .collection-content p', ] ); $this->add_control( 'content_color', //param_name [ 'label' => __( 'Color', 'deep' ), //heading 'type' => \Elementor\Controls_Manager::COLOR, //type 'selectors' => [ '#wrap {{WRAPPER}} .wn-collections .collection-content p' => 'color: {{VALUE}} !important', ], ] ); $this->end_controls_section(); $this->start_controls_section( 'section_button_style', [ 'label' => __( ' Button Style', 'deep' ), 'tab' => Controls_Manager::TAB_STYLE, ] ); $this->add_group_control( Group_Control_Typography::get_type(), [ 'name' => 'btn_typography', 'label' => __( 'Typography', 'deep' ), 'scheme' => Scheme_Typography::TYPOGRAPHY_2, 'selector' => '#wrap {{WRAPPER}} .wn-collections .collection-link a', ] ); $this->start_controls_tabs( 'wn_style_tabs' ); $this->start_controls_tab( 'style_normal_tab', [ 'label' => __( 'Normal', 'deep' ), ] ); $this->add_control( 'btn_color', //param_name [ 'label' => esc_html__( 'Text Color', 'deep' ), //heading 'type' => \Elementor\Controls_Manager::COLOR, //type 'selectors' => [ '#wrap {{WRAPPER}} .wn-collections .collection-link a' => 'color: {{VALUE}}', ], ] ); $this->add_control( 'btn_border_color', //param_name [ 'label' => esc_html__( 'Border color', 'deep' ), //heading 'type' => \Elementor\Controls_Manager::COLOR, //type 'selectors' => [ '#wrap {{WRAPPER}} .wn-collections .collection-link a' => 'border-color: {{VALUE}}', ], ] ); $this->add_group_control( Group_Control_Background::get_type(), [ 'name' => 'btn_background', 'label' => esc_html__( 'Background', 'deep' ), 'types' => [ 'classic', 'gradient', ], 'selector' => '#wrap {{WRAPPER}} .wn-collections .collection-link a', ] ); $this->add_group_control( Group_Control_Box_Shadow::get_type(), [ 'name' => 'btn_shadow', 'label' => __( 'Box Shadow', 'deep' ), 'selector' => '#wrap {{WRAPPER}} .wn-collections .collection-link a', ] ); $this->add_control( 'btn_border_radius', //param_name [ 'label' => __( 'Border Radius', 'deep' ), //heading 'type' => \Elementor\Controls_Manager::DIMENSIONS, //type 'size_units' => [ 'px', 'em', '%' ], 'selectors' => [ '#wrap {{WRAPPER}} .wn-collections .collection-link a' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', ], ] ); $this->end_controls_tab(); $this->start_controls_tab( 'style_hover_tab', [ 'label' => __( 'Hover', 'deep' ), ] ); $this->add_control( 'btn_color_hover', //param_name [ 'label' => esc_html__( 'Text Color', 'deep' ), //heading 'type' => \Elementor\Controls_Manager::COLOR, //type 'selectors' => [ '#wrap {{WRAPPER}} .wn-collections .collection-link a:hover' => 'color: {{VALUE}}', ], ] ); $this->add_control( 'btn_border_color_hover', //param_name [ 'label' => esc_html__( 'Border color', 'deep' ), //heading 'type' => \Elementor\Controls_Manager::COLOR, //type 'selectors' => [ '#wrap {{WRAPPER}} .wn-collections .collection-link a:hover' => 'border-color: {{VALUE}}', ], ] ); $this->add_group_control( Group_Control_Background::get_type(), [ 'name' => 'btn_background_hover', 'label' => esc_html__( 'Background Hover', 'deep' ), 'types' => [ 'classic', 'gradient' ], 'selector' => '#wrap {{WRAPPER}} .wn-collections .collection-link a:hover', ] ); $this->add_group_control( Group_Control_Box_Shadow::get_type(), [ 'name' => 'btn_shadow_hover', 'label' => __( 'Box Shadow Hover', 'deep' ), 'selector' => '#wrap {{WRAPPER}} .wn-collections .collection-link a:hover', ] ); $this->add_control( 'btn_border_radius_hover', //param_name [ 'label' => __( 'Border Radius Hover', 'deep' ), //heading 'type' => \Elementor\Controls_Manager::DIMENSIONS, //type 'size_units' => [ 'px', 'em', '%' ], 'selectors' => [ '#wrap {{WRAPPER}} .wn-collections .collection-link a:hover' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', ], ] ); $this->end_controls_tab(); $this->end_controls_section(); $this->start_controls_section( 'section_box_style', [ 'label' => __( 'Box Style', 'deep' ), 'tab' => Controls_Manager::TAB_STYLE, ] ); $this->add_group_control( Group_Control_Background::get_type(), [ 'name' => 'box_bg', 'label' => __( 'Background', 'deep' ), 'types' => [ 'classic' , 'gradient' ], 'selector' => '#wrap {{WRAPPER}} .wn-collections', ] ); $this->add_group_control( Group_Control_Border::get_type(), [ 'name' => 'box_border', 'label' => __( 'Border', 'deep' ), 'selector' => '#wrap {{WRAPPER}} .wn-collections', ] ); $this->add_control( 'box_border_radius', //param_name [ 'label' => __( 'Border Radius', 'deep' ), //heading 'type' => \Elementor\Controls_Manager::DIMENSIONS, //type 'size_units' => [ 'px', 'em', '%' ], 'selectors' => [ '#wrap {{WRAPPER}} .wn-collections' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', ], ] ); $this->add_group_control( Group_Control_Box_Shadow::get_type(), [ 'name' => 'box_shadow', 'label' => __( 'Box Shadow', 'deep' ), 'selector' => '#wrap {{WRAPPER}} .wn-collections', ] ); $this->add_control( 'box_padding', //param_name [ 'label' => __( 'Padding', 'deep' ), //heading 'type' => \Elementor\Controls_Manager::DIMENSIONS, //type 'size_units' => [ 'px', 'em', '%' ], 'selectors' => [ '#wrap {{WRAPPER}} .wn-collections' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', ], ] ); $this->add_control( 'box_margin', //param_name [ 'label' => __( 'Margin', 'deep' ), //heading 'type' => \Elementor\Controls_Manager::DIMENSIONS, //type 'size_units' => [ 'px', 'em', '%' ], 'selectors' => [ '#wrap {{WRAPPER}} .wn-collections' => 'margin: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', ], ] ); $this->end_controls_section(); $this->start_controls_section( 'section_box_style_hover', [ 'label' => __( ' Hover Box Style', 'deep' ), 'tab' => Controls_Manager::TAB_STYLE, ] ); $this->add_group_control( Group_Control_Background::get_type(), [ 'name' => 'box_bg_hover', 'label' => __( 'Background Hover', 'deep' ), 'types' => [ 'classic' , 'gradient' ], 'selector' => '#wrap {{WRAPPER}} .wn-collections:hover', ] ); $this->add_group_control( Group_Control_Border::get_type(), [ 'name' => 'box_border_hover', 'label' => __( 'Border Hover', 'deep' ), 'selector' => '#wrap {{WRAPPER}} .wn-collections:hover', ] ); $this->add_control( 'box_border_radius_hover', //param_name [ 'label' => __( 'Border Radius Hover', 'deep' ), //heading 'type' => \Elementor\Controls_Manager::DIMENSIONS, //type 'size_units' => [ 'px', 'em', '%' ], 'selectors' => [ '#wrap {{WRAPPER}} .wn-collections:hover' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', ], ] ); $this->add_group_control( Group_Control_Box_Shadow::get_type(), [ 'name' => 'box_shadow_hover', 'label' => __( 'Box Shadow Hover', 'deep' ), 'selector' => '#wrap {{WRAPPER}} .wn-collections:hover', ] ); $this->add_control( 'box_padding_hover', //param_name [ 'label' => __( 'Padding Hover', 'deep' ), //heading 'type' => \Elementor\Controls_Manager::DIMENSIONS, //type 'size_units' => [ 'px', 'em', '%' ], 'selectors' => [ '#wrap {{WRAPPER}} .wn-collections:hover' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', ], ] ); $this->add_control( 'box_margin_hover', //param_name [ 'label' => __( 'Margin Hover', 'deep' ), //heading 'type' => \Elementor\Controls_Manager::DIMENSIONS, //type 'size_units' => [ 'px', 'em', '%' ], 'selectors' => [ '#wrap {{WRAPPER}} .wn-collections:hover' => 'margin: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', ], ] ); $this->end_controls_section(); // Custom css tab $this->start_controls_section( 'custom_css_section', [ 'label' => __( 'Custom CSS', 'deep' ), 'tab' => \Elementor\Controls_Manager::TAB_STYLE, ] ); $this->add_control( 'custom_css', [ 'label' => __( 'Custom CSS', 'deep' ), 'type' => \Elementor\Controls_Manager::CODE, 'language' => 'css', 'rows' => 20, 'show_label' => true, ] ); $this->end_controls_section(); } /** * Render Collection widget output on the frontend. * * * @since 1.0.0 * @access protected */ protected function render() { $settings = $this->get_settings_for_display(); wp_enqueue_style( 'wn-deep-collection', DEEP_ASSETS_URL . 'css/frontend/collection/collection.css' ); $title = $this->get_settings( 'title' ); $image = $this->get_settings( 'image' ); $image_top_bottom = $this->get_settings( 'image_top_bottom' ); $image_left_right = $this->get_settings( 'image_left_right' ); $year = $this->get_settings( 'year' ); $brands = $this->get_settings( 'brands' ); $c_content = $this->get_settings( 'c_content' ); $link_title = $this->get_settings( 'link_title' ); $link_href = $this->get_settings( 'link_href' ); $url = $link_href['url']; $link_target_tag = $link_href['is_external'] ? 'target="_blank"' : ''; $link_no_follow = $link_href['nofollow'] ? ' rel="nofollow"' : ''; $image_url = isset( $image ) ? $image['url'] : ''; // Class & ID $shortcodeclass = $settings['shortcodeclass'] ? $settings['shortcodeclass'] : ''; $shortcodeid = $settings['shortcodeid'] ? ' id="' . $settings['shortcodeid'] . '"' : ''; $image_alt = $title; $title = ( $title ) ? '<div class="collection-title wn-animation-run"><span class="before"></span><h3>'.$title.'</h3><span class="after"></span></div>' : '' ; $year = ( $year ) ? '<div class="collection-year"><span>'.$year.'</span></div>' : '' ; $brands = ( $brands ) ? '<div class="collection-brands colorf"><span>'.$brands.'</span></div>' : '' ; $c_content = ( $c_content ) ? '<div class="collection-content"><p>'.$c_content.'</p></div>' : '' ; $url = ( $url ) ? $url : '' ; $link_title = ( $link_title ) ? '<div class="collection-link"><a class="colorf button" href="'.$url.'" '.$link_target_tag . $link_no_follow . ' ><span>'.$link_title.'</span></a></div>' : '' ; $image_url = isset( $image_url ) ? $image_url : ''; if( is_numeric( $image ) ){ $image_url = wp_get_attachment_url( $image ); //if main class not exist get it // if ( !class_exists( 'Wn_Img_Maniuplate' ) ) { // require_once DEEP_CORE_DIR . 'helper-classes/class_webnus_manuplate.php'; // } $image_class = new \Wn_Img_Maniuplate; // instance from settor class $image_url = $image_class->m_image( $image , $image_url , '365' , '415' ); // set required and get result } $image_url = ( $image_url ) ? '<div class="collection-img"><img src="'.$image_url.'" alt="' . $image_alt . '"></div>' : '' ; $out = '<div class="wn-collections type-'.$image_top_bottom.'-'.$image_left_right.' ' . $shortcodeclass . '" ' . $shortcodeid . ' >'; $out.= $image_url; if ( $image_top_bottom == 'top' && $image_left_right == 'right' ){ $out .= ' <div class="collection-year-brands"> <div class="clearfix"> <div class="col-lg-6 col-md-7 col-sm-9 col-xs-6">' . $year . $brands . '</div> <div class="col-md-5"></div> </div> </div> <div class="collection-meta"> <div class="clearfix"> <div class="col-md-6 col-sm-12">'.$title.'</div> <div class="col-md-6 col-sm-12"></div> </div> <div class="clearfix collection-content-wrap"> <div class="col-md-12">'.$c_content.'</div> </div> <div class="clearfix collection-button"> <div class="col-md-12">'.$link_title.'</div> </div> </div> '; }elseif ( $image_top_bottom == 'top' && $image_left_right == 'left' ) { $out .= ' <div class="collection-year-brands"> <div class="clearfix"> <div class="col-md-6 col-sm-6 col-xs-6"></div> <div class="col-lg-6 col-md-6 col-sm-6 col-xs-6">' . $year . $brands . '</div> </div> </div> <div class="collection-meta"> <div class="clearfix"> <div class="col-md-6 col-sm-12 col-xs-12"></div> <div class="col-md-6 col-sm-12 col-xs-12">'.$title.'</div> </div> <div class="clearfix collection-content-wrap"> <div class="col-md-6 col-sm-12 col-xs-12"></div> <div class="col-md-6 col-sm-12 col-xs-12">'.$c_content.'</div> </div> <div class="clearfix collection-button"> <div class="col-md-6 col-sm-12 col-xs-12"></div> <div class="col-md-6 col-sm-12 col-xs-12">'.$link_title.'</div> </div> </div> '; }elseif ( ( $image_top_bottom == 'bottom' && $image_left_right == 'left' ) ) { $out .= ' <div class="collection-meta"> '.$title.' '.$c_content.' '.$link_title.' </div> <div class="collection-year-brands"> <div class="clearfix"> <div class="col-md-6 col-sm-5 col-xs-6"></div> <div class="col-lg-6 col-md-6 col-sm-7 col-xs-6">' . $year . $brands . '</div> </div> </div> '; }elseif ( $image_top_bottom == 'bottom' && $image_left_right == 'right' ) { $out .= ' <div class="collection-meta"> '.$title.' '.$c_content.' '.$link_title.' </div> <div class="collection-year-brands"> <div class="clearfix"> <div class="col-lg-6 col-md-6 col-sm-7 col-xs-6">' . $year . $brands . '</div> <div class="col-md-6 col-sm-5 col-xs-6"></div> </div> </div> '; } $out .= '</div>'; $custom_css = $settings['custom_css']; if ( $custom_css != '' ) { echo '<style>'. $custom_css .'</style>'; } echo $out; } }
[+]
..
[-] our-client.php
[edit]
[-] icons.php
[edit]
[-] collection.php
[edit]
[-] testimonial-tab.php
[edit]
[-] teaserbox.php
[edit]
[-] instagram.php
[edit]
[-] our-team.php
[edit]
[-] content-carousel.php
[edit]
[-] videoteaser.php
[edit]
[-] like-view-share.php
[edit]
[-] courses-instructors.php
[edit]
[-] widget-flickr.php
[edit]
[-] reservation.php
[edit]
[-] list.php
[edit]
[-] road-map.php
[edit]
[-] max-counter.php
[edit]
[-] magazine.php
[edit]
[-] prayer-wall-items.php
[edit]
[-] facebook-button.php
[edit]
[-] icon-divider.php
[edit]
[-] featured-products.php
[edit]
[-] review-items.php
[edit]
[-] iconbox.php
[edit]
[-] widget-googleplus.php
[edit]
[-] content-slider.php
[edit]
[-] service-carousel.php
[edit]
[-] contact-form.php
[edit]
[-] twitter-feed.php
[edit]
[-] blog.php
[edit]
[-] process-carousel.php
[edit]
[-] course-category.php
[edit]
[-] virtual-coins.php
[edit]
[-] speakers.php
[edit]
[-] the-grid.php
[edit]
[-] custom-menu.php
[edit]
[-] widget-youtube.php
[edit]
[-] testimonial.php
[edit]
[-] callout.php
[edit]
[-] testimonial-slider.php
[edit]
[-] category-tab.php
[edit]
[-] testimonial-carousel.php
[edit]
[-] button.php
[edit]
[-] facebook-comments.php
[edit]
[-] widget-login.php
[edit]
[-] subscribe.php
[edit]
[-] googlemap.php
[edit]
[-] widget-social-icon.php
[edit]
[-] postslider.php
[edit]
[-] alert.php
[edit]
[-] video-play-button.php
[edit]
[-] quote.php
[edit]
[-] donate.php
[edit]
[-] dropcap.php
[edit]
[-] before-after-image.php
[edit]
[-] pricing-tables.php
[edit]
[-] facebook-page.php
[edit]
[-] shop-products.php
[edit]
[-] single-goal.php
[edit]
[-] info-box.php
[edit]
[-] latestfromblog.php
[edit]
[-] goals.php
[edit]
[-] revolution-slider.php
[edit]
[-] widget-subscribe.php
[edit]
[-] tablepress.php
[edit]
[-] tab-content.php
[edit]
[-] schedule.php
[edit]
[-] sermon-category.php
[edit]
[-] pricing-plan.php
[edit]
[-] tabs.php
[edit]
[-] widget-latest-posts.php
[edit]
[-] distance.php
[edit]
[-] widget-popular-posts.php
[edit]
[-] recipes.php
[edit]
[-] causes.php
[edit]
[-] widget-testimonial.php
[edit]
[-] widget-about.php
[edit]
[-] special-offers.php
[edit]
[-] tooltip.php
[edit]
[-] food-menu.php
[edit]
[-] wp-hotel-booking.php
[edit]
[-] widget-tab.php
[edit]
[-] courses.php
[edit]
[-] login.php
[edit]
[-] post-from-blog.php
[edit]
[-] socials.php
[edit]
[-] line.php
[edit]
[-] gallery.php
[edit]
[-] faq.php
[edit]
[-] piecharts.php
[edit]
[-] image-hotspot.php
[edit]
[-] link.php
[edit]
[-] prayer-wall-form.php
[edit]
[-] rooms.php
[edit]
[-] countdown.php
[edit]
[-] portfolio-carousel.php
[edit]
[-] facebook-embed.php
[edit]
[-] single-cause.php
[edit]
[-] review-form.php
[edit]
[-] buy-process.php
[edit]
[-] sermons.php
[edit]
[-] widget-facebook.php
[edit]
[-] single-sermon.php
[edit]
[-] single-course.php
[edit]
[-] image-carousel.php
[edit]
[-] toggle-box.php
[edit]
[-] our-process.php
[edit]
[-] svg.php
[edit]
[-] w-title.php
[edit]
[-] block-quote.php
[edit]