PATH:
home
/
letacommog
/
aperobusiness
/
wp-content
/
themes
/
deep
/
inc
/
core
/
elementor
/
widgets
<?php namespace Elementor; class Webnus_Element_Widgets_Pricing_Tables extends \Elementor\Widget_Base { /** * Retrieve widget name. * * @since 1.0.0 * @access public * * @return string Widget name. */ public function get_name() { return 'pricing-tables'; } /** * Retrieve widget title. * * @since 1.0.0 * @access public * * @return string Widget title. */ public function get_title() { return esc_html__( 'Webnus Pricing Tables', 'deep' ); } /** * Retrieve widget icon. * * @since 1.0.0 * @access public * * @return string Widget icon. */ public function get_icon() { return 'eicon-price-table'; } /** * Set widget category. * * @since 1.0.0 * @access public * * @return array Widget category. */ public function get_categories() { return [ 'webnus' ]; } /** * Register widget controls. * * * @since 1.0.0 * @access protected */ protected function _register_controls() { // Content Tab $this->start_controls_section( 'content_section', [ 'label' => esc_html__( 'General', 'deep' ), 'tab' => \Elementor\Controls_Manager::TAB_CONTENT, ] ); $this->add_control( 'type', [ 'label' => esc_html__( 'Type', 'deep' ), 'type' => \Elementor\Controls_Manager::SELECT, 'description' => esc_html__( 'You can choose among these pre-designed types.', 'deep'), 'options' => [ '1' => 'Type 1', '2' => 'Type 2', '3' => 'Type 3', '4' => 'Type 4', '5' => 'Type 5', '6' => 'Type 6', '7' => 'Type 7', '8' => 'Type 8', '9' => 'Type 9', '10' => 'Type 10', ], 'default' => '1', ] ); $this->add_control( 'title', [ 'label' => esc_html__( 'Title', 'deep' ), 'type' => \Elementor\Controls_Manager::TEXT, 'default' => esc_html__( 'Price Title' , 'deep' ), 'description' => esc_html__( 'Pricing Table Title', 'deep'), ] ); $this->add_control( 'description', [ 'label' => esc_html__( 'Header Description', 'deep' ), 'type' => \Elementor\Controls_Manager::TEXT, 'description' => esc_html__( 'Pricing Table Description', 'deep'), 'condition' => [ 'type' => [ '4', ], ], ] ); $this->add_control( 'price', [ 'label' => esc_html__( 'Price', 'deep' ), 'type' => \Elementor\Controls_Manager::TEXT, 'default' => esc_html__( '254$' , 'deep' ), 'description' => esc_html__( 'Pricing Table Price', 'deep'), 'default' => '', ] ); $this->add_control( 'price_symbol', [ 'label' => esc_html__( 'Price Symbol', 'deep' ), 'description' => esc_html__( 'Pricing Symbol', 'deep'), 'type' => \Elementor\Controls_Manager::TEXT, 'condition' => [ 'type' => [ '7', '10', ] ] ] ); $this->add_control( 'on_sale_price', [ 'label' => esc_html__( 'Special Offer', 'deep' ), 'description' => esc_html__( 'Pricing Table Special Offer or On Sale Price', 'deep'), 'type' => \Elementor\Controls_Manager::TEXT, 'condition' => [ 'type' => ['1','2','3','4','5','6','7','10'] ] ] ); $this->add_control( 'plan_label', [ 'label' => esc_html__( 'Plan Label', 'deep' ), 'description' => esc_html__( 'Pricing Table Label', 'deep'), 'type' => \Elementor\Controls_Manager::TEXT, 'condition' => [ 'type' => [ '3', '5', ] ] ] ); $this->add_control( 'label_bg_color', [ 'label' => esc_html__( 'Label Color', 'deep' ), 'description' => esc_html__( 'Select Custom Label Color', 'deep'), 'type' => \Elementor\Controls_Manager::COLOR, 'condition' => [ 'type' => [ '5' ] ], 'selectors' => [ '{{WRAPPER}} .pt-header' => 'background-color: {{VALUE}};', '{{WRAPPER}} .w-pricing-table' => 'border-color: {{VALUE}};', ], ] ); $this->add_control( 'period', [ 'label' => esc_html__( 'Period', 'deep' ), 'type' => \Elementor\Controls_Manager::TEXT, 'description' => esc_html__( 'Pricing Table Period', 'deep'), ] ); $this->add_control( 'features', [ 'label' => esc_html__( 'Features', 'deep' ), 'type' => \Elementor\Controls_Manager::REPEATER, 'description' => esc_html__( 'Enter features for pricing table - value, title and color.', 'deep' ), 'condition' => [ 'type!' => [ '8', '9', ] ], 'fields' => [ [ 'name' => 'feature_icon', 'label' => esc_html__( 'Feature Item Icon', 'deep' ), 'type' => \Elementor\Controls_Manager::SELECT, 'default' => 'default', 'options' => [ 'empty-icon' => esc_html__( 'Empty', 'deep' ), 'available-icon' => esc_html__( 'Available', 'deep' ), 'not-available-icon' => esc_html__( 'Not Available', 'deep' ), ] ], [ 'name' => 'feature_item', 'label' => esc_html__( 'Feature Item Text', 'deep' ), 'type' => \Elementor\Controls_Manager::TEXT, ], ], 'default' => [ [ 'feature_item' => __( 'Item 1', 'deep' ), 'feature_icon' => 'available-icon', ], [ 'feature_item' => __( 'Item 2', 'deep' ), 'feature_icon' => 'available-icon', ], [ 'feature_item' => __( 'Item 3', 'deep' ), 'feature_icon' => 'not-available-icon', ], ], ] ); $this->add_control( 'content_text', [ 'label' => esc_html__( 'Content Pricing Table Text', 'deep' ), 'type' => \Elementor\Controls_Manager::TEXT, 'condition' => [ 'type' => [ '8' ] ] ] ); $this->add_control( 'footer_text', [ 'label' => esc_html__( 'Footer Pricing Table Text', 'deep' ), 'type' => \Elementor\Controls_Manager::TEXT, 'condition' => [ 'type!' => [ '8', '9', ] ] ] ); $this->add_control( 'button_text', [ 'label' => esc_html__( 'Button Text', 'deep' ), 'type' => \Elementor\Controls_Manager::TEXT, ] ); $this->add_control( 'button_url', [ 'label' => esc_html__( 'Button URL', 'deep' ), 'type' => \Elementor\Controls_Manager::URL, 'description' => esc_html__( 'Button URL (http://example.com)', 'deep' ), ] ); $this->add_control( 'featured', //param_name [ 'label' => esc_html__( 'Featured Plan?', 'deep' ), //heading 'type' => \Elementor\Controls_Manager::SWITCHER, //type 'label_on' => esc_html__( 'Yes', 'deep' ), 'label_off' => esc_html__( 'No', 'deep' ), 'return_value' => 'yes', 'default' => 'yes', 'description' => esc_html__( 'Pricing Tables Featured Plan', 'deep'), 'condition' => [ 'type!' => [ '8', '9', ] ] ] ); $this->add_control( 'icon', [ 'label' => esc_html__( 'Plan Icon', 'deep' ), 'type' => \Elementor\Controls_Manager::ICON, 'condition' => [ 'type' => ['2'] ] ] ); $this->add_control( 'heading_bg_color', [ 'label' => esc_html__( 'Heading Background Color', 'deep' ), 'description' => esc_html__( 'Select Custom Background Color', 'deep'), 'type' => \Elementor\Controls_Manager::COLOR, 'condition' => [ 'type' => [ '6' ] ], 'selectors' => [ '{{WRAPPER}} .pt-header' => 'background-color: {{VALUE}};', '{{WRAPPER}} .w-pricing-table' => 'border-color: {{VALUE}};', ], ] ); $this->add_control( 'heading_text_color', [ 'label' => esc_html__( 'Heading Text Color', 'deep' ), 'description' => esc_html__( 'Select Custom Text Color', 'deep'), 'type' => \Elementor\Controls_Manager::COLOR, 'condition' => [ 'type' => [ '6' ] ], 'selectors' => [ '{{WRAPPER}} .pt-header h4 > small, {{WRAPPER}} .pt-header h3.plan-title, {{WRAPPER}} .pt-header h4.plan-price' => 'color: {{VALUE}};', ], ] ); $this->end_controls_section(); // Class & ID Tab $this->start_controls_section( 'classid_section', [ 'label' => esc_html__( 'Class & ID', 'deep' ), 'tab' => \Elementor\Controls_Manager::TAB_CONTENT, ] ); $this->add_control( 'shortcodeclass', [ 'label' => esc_html__( 'Extra Class', 'deep' ), 'type' => \Elementor\Controls_Manager::TEXT, ] ); $this->add_control( 'shortcodeid', [ 'label' => esc_html__( 'ID', 'deep' ), 'type' => \Elementor\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}} .w-pricing-table h3', ] ); $this->add_control( 'title_color', //param_name [ 'label' => __( 'Color', 'deep' ), //heading 'type' => \Elementor\Controls_Manager::COLOR, //type 'selectors' => [ '#wrap {{WRAPPER}} .w-pricing-table h3' => 'color: {{VALUE}} !important', ], ] ); $this->end_controls_section(); $this->start_controls_section( 'section_price_style', [ 'label' => __( 'Price style', 'deep' ), 'tab' => Controls_Manager::TAB_STYLE, ] ); $this->add_group_control( Group_Control_Typography::get_type(), [ 'name' => 'price_typography', 'label' => __( 'Typography', 'deep' ), 'scheme' => Scheme_Typography::TYPOGRAPHY_2, 'selector' => '#wrap {{WRAPPER}} .w-pricing-table h4 del', ] ); $this->add_control( 'price_color', //param_name [ 'label' => __( 'Color', 'deep' ), //heading 'type' => \Elementor\Controls_Manager::COLOR, //type 'selectors' => [ '#wrap {{WRAPPER}} .w-pricing-table h4 del' => 'color: {{VALUE}} !important', ], ] ); $this->end_controls_section(); $this->start_controls_section( 'section_sale_style', [ 'label' => __( 'Sale style', 'deep' ), 'tab' => Controls_Manager::TAB_STYLE, ] ); $this->add_group_control( Group_Control_Typography::get_type(), [ 'name' => 'sale_typography', 'label' => __( 'Typography', 'deep' ), 'scheme' => Scheme_Typography::TYPOGRAPHY_2, 'selector' => '#wrap {{WRAPPER}} .w-pricing-table h4 span', ] ); $this->add_control( 'sale_color', //param_name [ 'label' => __( 'Color', 'deep' ), //heading 'type' => \Elementor\Controls_Manager::COLOR, //type 'selectors' => [ '#wrap {{WRAPPER}} .w-pricing-table h4 span' => 'color: {{VALUE}} !important', ], ] ); $this->end_controls_section(); $this->start_controls_section( 'section_period_style', [ 'label' => __( 'Period style', 'deep' ), 'tab' => Controls_Manager::TAB_STYLE, ] ); $this->add_group_control( Group_Control_Typography::get_type(), [ 'name' => 'period_typography', 'label' => __( 'Typography', 'deep' ), 'scheme' => Scheme_Typography::TYPOGRAPHY_2, 'selector' => '#wrap {{WRAPPER}} .w-pricing-table h4 small', ] ); $this->add_control( 'period_color', //param_name [ 'label' => __( 'Color', 'deep' ), //heading 'type' => \Elementor\Controls_Manager::COLOR, //type 'selectors' => [ '#wrap {{WRAPPER}} .w-pricing-table h4 small' => 'color: {{VALUE}} !important', ], ] ); $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}} .w-pricing-table', ] ); $this->add_group_control( Group_Control_Border::get_type(), [ 'name' => 'box_border', 'label' => __( 'Border', 'deep' ), 'selector' => '#wrap {{WRAPPER}} .w-pricing-table', ] ); $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}} .w-pricing-table' => '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}} .w-pricing-table', ] ); $this->add_control( 'box_padding', //param_name [ 'label' => __( 'Padding', 'deep' ), //heading 'type' => \Elementor\Controls_Manager::DIMENSIONS, //type 'size_units' => [ 'px', 'em', '%' ], 'selectors' => [ '#wrap {{WRAPPER}} .w-pricing-table' => '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}} .w-pricing-table' => '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 Sermon Category widget output on the frontend. * * * @since 1.0.0 * @access protected */ protected function render() { $settings = $this->get_settings(); wp_enqueue_style( 'wn-deep-pricing-table0', DEEP_ASSETS_URL . 'css/frontend/pricing-table/pricing-table0.css' ); wp_enqueue_style( 'wn-deep-pricing-table' . $settings['type'], DEEP_ASSETS_URL . 'css/frontend/pricing-table/pricing-table' . $settings['type'] . '.css' ); // variables $shortcodeclass = $settings['shortcodeclass'] ? $settings['shortcodeclass'] : ''; $shortcodeid = $settings['shortcodeid'] ? ' id="' . $settings['shortcodeid'] . '"' : ''; $type = $settings['type']; $title = $settings['title']; $description = $settings['description']; $price = $settings['price']; $price_symbol = $settings['price_symbol']; $on_sale_price = $settings['on_sale_price']; $plan_label = $settings['plan_label']; $period = $settings['period']; $features = $settings['features']; $content_text = $settings['content_text']; $button_text = $settings['button_text']; $button_url = $settings['button_url']['url']; $button_target = $settings['button_url']['is_external'] ? 'target="_blank"' : ''; $button_nofolow = $settings['button_url']['nofollow'] ? ' rel="nofollow"' : '' ; $icon = $settings['icon']; $link_target_tag = ''; if ( $settings['button_url']['is_external'] == 'true' ){ $link_target_tag = ' target="_blank" '; } static $uniqid = 0; $uniqid++; $featured = $settings['featured'] ? ' featured' : ''; $footer_text = $settings['footer_text'] ? '<p>' . $settings['footer_text'] . '</p>' : ''; if ( $on_sale_price ) : $temp_price = $price; $price = $on_sale_price; $on_sale_price = '<del>' . $temp_price . '</del>'; endif; if ( $type != '6' ) { $period = $period ? '<small>/' . esc_html( $period ) . '</small>' : ''; }else{ $period = $period ? $period : ''; } // features loop $features_data = array(); $features_out = ''; // Fetch Carousle Item Loop Variables if ($features) { $features_out .= '<ul class="pt-features">'; foreach ( $features as $data ) : $line = $data; $line['feature_icon'] = isset( $data['feature_icon'] ) ? $data['feature_icon'] : ''; $line['feature_item'] = isset( $data['feature_item'] ) ? $data['feature_item'] : ''; $features_out .= '<li class="feature-item"><span class="feature-icon ' . esc_html( $line['feature_icon'] ) . '"></span>' . esc_html( $line['feature_item'] ) . '</li>'; endforeach; $features_out .= '</ul>'; } // footer cache $background_color = ""; if( $type == '8'){ $background_color = "colorb"; } $footer_out = '<div class="pt-footer">' . $footer_text; if ( !empty( $button_text ) ) { $footer_out .= '<a href="' . esc_url( $button_url ) . '" class="magicmore ' .$background_color. '" ' . $link_target_tag . $button_target . $button_nofolow . '>' . esc_html( $button_text ) . '</a>'; } $footer_out .= '</div>'; // render $out = '<div class="w-pricing-table w-pricing-table-' . $uniqid . ' pt-type' . esc_html( $type ) . esc_html( $featured ) . ' ' . $shortcodeclass . '" ' . $shortcodeid . '>'; switch ( $type ) : case '1': case '3': case '7': case '10': $plan_label = ( $type == 3 && $plan_label ) ? '<span class="plan-label">' . $plan_label . '</span>' : ''; $price_symbol = ( ( $type == 7 || $type == 10 ) && $price_symbol ) ? '<span class="price-symbol">' . esc_html( $price_symbol ) . '</span>': ''; $out .= ' <div class="pt-header"> <h3 class="plan-title">' . esc_html( $title ) . '</h3> <h4 class="plan-price"> ' . $on_sale_price . ' ' . $price_symbol . ' <span>' . esc_html( $price ) . '</span> ' . $period . ' </h4> ' . $plan_label . ' </div> ' . $features_out . ' ' . $footer_out . ''; break; case '2': $out .= ' <span class="icon vc_icon_element-icon ' . $icon . '"></span> <h3 class="plan-title">' . esc_html( $title ) . '</h3> ' . $features_out . ' <h4 class="pt-price"> ' . $on_sale_price . ' <span>' . esc_html( $price ) . '</span> ' . $period . '</h4> ' . $footer_out . ''; break; case '4': $out .= ' <div class="pt-header"> <h3 class="plan-title">' . esc_html( $title ) . '</h3> <h6 class="plan-desc">' . esc_html( $description ) . '</h6> </div> ' . $features_out . ' <div class="pt-price"> <h4 class="plan-price"><span>' . $on_sale_price . esc_html( $price ) . '</span>' . $period . '</h4> </div> ' . $footer_out . ''; break; case '5': $plan_label = $plan_label ? '<span>' . $plan_label . '</span>' : ''; $out .= ' <div class="pt-header"> ' . $plan_label . ' <h3 class="plan-title">' . esc_html( $title ) . '</h3> <h4 class="plan-price"><span>' . $on_sale_price . esc_html( $price ) . '</span>' . $period . '</h4> </div> ' . $features_out . ' ' . $footer_out . ''; break; case '6': $out .= ' <div class="pt-header"> <h3 class="plan-title">' . esc_html( $title ) . '</h3> <h4 class="plan-price"><span>' . esc_html( $price ) . '</span><small>/' . esc_html( $period ) . '</small></h4> ' . $on_sale_price . ' </div> ' . $features_out . ' ' . $footer_out . ''; break; case '8': $out .= ' <div class="pt-header"> <h3 class="plan-title">' . esc_html( $title ) . '<span class="plan-title-line"></span></h3> <h4 class="plan-price"><span>' . esc_html( $price ) . '</span>' . $period . '</h4> ' . $on_sale_price . ' </div> <div class="pt-content">' . $content_text . '</div> ' . $footer_out . ''; break; case '9': $out .= ' <h3 class="plan-title">' . esc_html( $title ) . '</h3> <h4 class="pt-price"><span>' . esc_html( $price ) . '</span>' . $period . '</h4> ' . $on_sale_price . ' ' . $footer_out . ''; break; endswitch; $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]