Changeset 2827787
- Timestamp:
- 12/02/2022 03:37:34 PM (3 years ago)
- Location:
- nd-elements
- Files:
-
- 5 edited
- 26 copied
-
tags/2.1 (copied) (copied from nd-elements/trunk)
-
tags/2.1/css/style.css (copied) (copied from nd-elements/trunk/css/style.css)
-
tags/2.1/nd-elements.php (copied) (copied from nd-elements/trunk/nd-elements.php) (1 diff)
-
tags/2.1/readme.txt (copied) (copied from nd-elements/trunk/readme.txt) (2 diffs)
-
tags/2.1/widgets/beforeafter (copied) (copied from nd-elements/trunk/widgets/beforeafter)
-
tags/2.1/widgets/cf7/index.php (copied) (copied from nd-elements/trunk/widgets/cf7/index.php) (1 diff)
-
tags/2.1/widgets/customcss/index.php (copied) (copied from nd-elements/trunk/widgets/customcss/index.php)
-
tags/2.1/widgets/eventsgrid/index.php (copied) (copied from nd-elements/trunk/widgets/eventsgrid/index.php) (3 diffs)
-
tags/2.1/widgets/eventsgrid/layout/layout-1.php (copied) (copied from nd-elements/trunk/widgets/eventsgrid/layout/layout-1.php)
-
tags/2.1/widgets/eventsgrid/layout/layout-2.php (copied) (copied from nd-elements/trunk/widgets/eventsgrid/layout/layout-2.php)
-
tags/2.1/widgets/list/index.php (copied) (copied from nd-elements/trunk/widgets/list/index.php)
-
tags/2.1/widgets/marquee/index.php (copied) (copied from nd-elements/trunk/widgets/marquee/index.php)
-
tags/2.1/widgets/navigation/index.php (copied) (copied from nd-elements/trunk/widgets/navigation/index.php)
-
tags/2.1/widgets/postgrid/index.php (copied) (copied from nd-elements/trunk/widgets/postgrid/index.php)
-
tags/2.1/widgets/postgrid/layout/layout-1.php (copied) (copied from nd-elements/trunk/widgets/postgrid/layout/layout-1.php)
-
tags/2.1/widgets/postgrid/layout/layout-3.php (copied) (copied from nd-elements/trunk/widgets/postgrid/layout/layout-3.php)
-
tags/2.1/widgets/postgrid/layout/layout-4.php (copied) (copied from nd-elements/trunk/widgets/postgrid/layout/layout-4.php)
-
tags/2.1/widgets/postgrid/layout/layout-5.php (copied) (copied from nd-elements/trunk/widgets/postgrid/layout/layout-5.php) (1 diff)
-
tags/2.1/widgets/postgrid/layout/layout-6.php (copied) (copied from nd-elements/trunk/widgets/postgrid/layout/layout-6.php)
-
tags/2.1/widgets/postgrid/layout/layout-7.php (copied) (copied from nd-elements/trunk/widgets/postgrid/layout/layout-7.php)
-
tags/2.1/widgets/woocart/index.php (copied) (copied from nd-elements/trunk/widgets/woocart/index.php)
-
tags/2.1/widgets/woogrid/index.php (copied) (copied from nd-elements/trunk/widgets/woogrid/index.php)
-
tags/2.1/widgets/woogrid/layout/layout-1.php (copied) (copied from nd-elements/trunk/widgets/woogrid/layout/layout-1.php)
-
tags/2.1/widgets/woogrid/layout/layout-2.php (copied) (copied from nd-elements/trunk/widgets/woogrid/layout/layout-2.php)
-
tags/2.1/widgets/woogrid/layout/layout-3.php (copied) (copied from nd-elements/trunk/widgets/woogrid/layout/layout-3.php)
-
tags/2.1/widgets/woogrid/layout/layout-4.php (copied) (copied from nd-elements/trunk/widgets/woogrid/layout/layout-4.php)
-
trunk/nd-elements.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/widgets/cf7/index.php (modified) (1 diff)
-
trunk/widgets/eventsgrid/index.php (modified) (3 diffs)
-
trunk/widgets/postgrid/layout/layout-5.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
nd-elements/tags/2.1/nd-elements.php
r2728472 r2827787 3 3 Plugin Name: Elements For Elementor 4 4 Description: The plugin adds some useful Elementor components that can be integrated very easily on your own theme. 5 Version: 2. 05 Version: 2.1 6 6 Plugin URI: https://nicdark.com 7 7 Author: Nicdark -
nd-elements/tags/2.1/readme.txt
r2798008 r2827787 4 4 Requires at least: 4.5 5 5 Tested up to: 6.0 6 Stable tag: 2. 06 Stable tag: 2.1 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 23 23 24 24 == Changelog == 25 26 = 2.1 = 27 * added new classes on postgrid component 25 28 26 29 = 2.0 = -
nd-elements/tags/2.1/widgets/cf7/index.php
r2760254 r2827787 853 853 ]; 854 854 855 echo wp_kses( $nd_elements_result, $nd_elements_allowed_html );856 #echo $nd_elements_result;855 #echo wp_kses( $nd_elements_result, $nd_elements_allowed_html ); 856 echo $nd_elements_result; 857 857 858 858 } -
nd-elements/tags/2.1/widgets/eventsgrid/index.php
r2728472 r2827787 46 46 'DESC' => __( 'DESC', 'nd-elements' ), 47 47 'ASC' => __( 'ASC', 'nd-elements' ), 48 ],49 ]50 );51 52 $this->add_control(53 'eventsgrid_orderby',54 [55 'label' => __( 'Order By', 'nd-elements' ),56 'type' => \Elementor\Controls_Manager::SELECT,57 'default' => 'date',58 'options' => [59 'ID' => __( 'ID', 'nd-elements' ),60 'author' => __( 'Author', 'nd-elements' ),61 'title' => __( 'Title', 'nd-elements' ),62 'name' => __( 'Name', 'nd-elements' ),63 'type' => __( 'Type', 'nd-elements' ),64 'date' => __( 'Date', 'nd-elements' ),65 'modified' => __( 'Modified', 'nd-elements' ),66 'rand' => __( 'Random', 'nd-elements' ),67 'comment_count' => __( 'Comment Count', 'nd-elements' ),68 48 ], 69 49 ] … … 128 108 $nd_elements_settings = $this->get_settings_for_display(); 129 109 $nd_elements_eventsgrid_order = $nd_elements_settings['eventsgrid_order']; 130 $nd_elements_eventsgrid_orderby = $nd_elements_settings['eventsgrid_orderby'];131 110 $eventsgrid_qnt = $nd_elements_settings['eventsgrid_qnt']; 132 111 $eventsgrid_color_btn = $nd_elements_settings['eventsgrid_color_btn']; … … 137 116 if ($eventsgrid_qnt == '') { $eventsgrid_qnt = 3; } 138 117 if ($nd_elements_eventsgrid_order == '') { $nd_elements_eventsgrid_order = 'DESC'; } 139 if ($nd_elements_eventsgrid_orderby == '') { $nd_elements_eventsgrid_orderby = 'date'; }140 118 if ($eventsgrid_layout == '') { $eventsgrid_layout = "layout-1"; } 141 119 142 120 //args 143 121 $args = array( 144 //'post_type'=>array(TribeEvents::POSTTYPE),145 122 'post_type'=>'tribe_events', 146 123 'posts_per_page' => $eventsgrid_qnt, 147 124 'order' => $nd_elements_eventsgrid_order, 148 'orderby' => $nd_elements_eventsgrid_orderby,125 'orderby' => 'event_date', 149 126 ); 150 127 $the_query = new WP_Query( $args ); -
nd-elements/tags/2.1/widgets/postgrid/layout/layout-5.php
r2785326 r2827787 120 120 121 121 $nd_elements_result .= ' 122 <div class=" '.$postgrid_width.' nd_elements_width_100_percentage_responsive nd_elements_float_left nd_elements_masonry_item nd_elements_p adding_15 nd_elements_box_sizing_border_box">122 <div class=" '.$postgrid_width.' nd_elements_width_100_percentage_responsive nd_elements_float_left nd_elements_masonry_item nd_elements_preview_post_image nd_elements_padding_15 nd_elements_box_sizing_border_box"> 123 123 124 124 <div class="nd_elements_section nd_elements_position_relative"> -
nd-elements/trunk/nd-elements.php
r2728472 r2827787 3 3 Plugin Name: Elements For Elementor 4 4 Description: The plugin adds some useful Elementor components that can be integrated very easily on your own theme. 5 Version: 2. 05 Version: 2.1 6 6 Plugin URI: https://nicdark.com 7 7 Author: Nicdark -
nd-elements/trunk/readme.txt
r2798008 r2827787 4 4 Requires at least: 4.5 5 5 Tested up to: 6.0 6 Stable tag: 2. 06 Stable tag: 2.1 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 23 23 24 24 == Changelog == 25 26 = 2.1 = 27 * added new classes on postgrid component 25 28 26 29 = 2.0 = -
nd-elements/trunk/widgets/cf7/index.php
r2760254 r2827787 853 853 ]; 854 854 855 echo wp_kses( $nd_elements_result, $nd_elements_allowed_html );856 #echo $nd_elements_result;855 #echo wp_kses( $nd_elements_result, $nd_elements_allowed_html ); 856 echo $nd_elements_result; 857 857 858 858 } -
nd-elements/trunk/widgets/eventsgrid/index.php
r2728472 r2827787 46 46 'DESC' => __( 'DESC', 'nd-elements' ), 47 47 'ASC' => __( 'ASC', 'nd-elements' ), 48 ],49 ]50 );51 52 $this->add_control(53 'eventsgrid_orderby',54 [55 'label' => __( 'Order By', 'nd-elements' ),56 'type' => \Elementor\Controls_Manager::SELECT,57 'default' => 'date',58 'options' => [59 'ID' => __( 'ID', 'nd-elements' ),60 'author' => __( 'Author', 'nd-elements' ),61 'title' => __( 'Title', 'nd-elements' ),62 'name' => __( 'Name', 'nd-elements' ),63 'type' => __( 'Type', 'nd-elements' ),64 'date' => __( 'Date', 'nd-elements' ),65 'modified' => __( 'Modified', 'nd-elements' ),66 'rand' => __( 'Random', 'nd-elements' ),67 'comment_count' => __( 'Comment Count', 'nd-elements' ),68 48 ], 69 49 ] … … 128 108 $nd_elements_settings = $this->get_settings_for_display(); 129 109 $nd_elements_eventsgrid_order = $nd_elements_settings['eventsgrid_order']; 130 $nd_elements_eventsgrid_orderby = $nd_elements_settings['eventsgrid_orderby'];131 110 $eventsgrid_qnt = $nd_elements_settings['eventsgrid_qnt']; 132 111 $eventsgrid_color_btn = $nd_elements_settings['eventsgrid_color_btn']; … … 137 116 if ($eventsgrid_qnt == '') { $eventsgrid_qnt = 3; } 138 117 if ($nd_elements_eventsgrid_order == '') { $nd_elements_eventsgrid_order = 'DESC'; } 139 if ($nd_elements_eventsgrid_orderby == '') { $nd_elements_eventsgrid_orderby = 'date'; }140 118 if ($eventsgrid_layout == '') { $eventsgrid_layout = "layout-1"; } 141 119 142 120 //args 143 121 $args = array( 144 //'post_type'=>array(TribeEvents::POSTTYPE),145 122 'post_type'=>'tribe_events', 146 123 'posts_per_page' => $eventsgrid_qnt, 147 124 'order' => $nd_elements_eventsgrid_order, 148 'orderby' => $nd_elements_eventsgrid_orderby,125 'orderby' => 'event_date', 149 126 ); 150 127 $the_query = new WP_Query( $args ); -
nd-elements/trunk/widgets/postgrid/layout/layout-5.php
r2785326 r2827787 120 120 121 121 $nd_elements_result .= ' 122 <div class=" '.$postgrid_width.' nd_elements_width_100_percentage_responsive nd_elements_float_left nd_elements_masonry_item nd_elements_p adding_15 nd_elements_box_sizing_border_box">122 <div class=" '.$postgrid_width.' nd_elements_width_100_percentage_responsive nd_elements_float_left nd_elements_masonry_item nd_elements_preview_post_image nd_elements_padding_15 nd_elements_box_sizing_border_box"> 123 123 124 124 <div class="nd_elements_section nd_elements_position_relative">
Note: See TracChangeset
for help on using the changeset viewer.