Changeset 2720175
- Timestamp:
- 05/08/2022 01:15:54 PM (4 years ago)
- Location:
- definitive-addons-for-elementor/trunk
- Files:
-
- 23 edited
-
css/dafe_style.css (modified) (1 diff)
-
definitive_adons_elementor.php (modified) (2 diffs)
-
inc/Elements/Creative_Button.php (modified) (2 diffs)
-
inc/Elements/Feature_list.php (modified) (2 diffs)
-
inc/Elements/Flip_Box.php (modified) (5 diffs)
-
inc/Elements/Icon_Box.php (modified) (1 diff)
-
inc/Elements/Icon_List.php (modified) (1 diff)
-
inc/Elements/Popular_Post.php (modified) (1 diff)
-
inc/Elements/Pricing_Table.php (modified) (5 diffs)
-
inc/Elements/Promo-box.php (modified) (2 diffs)
-
inc/Elements/Skillbar.php (modified) (1 diff)
-
inc/Elements/Slider.php (modified) (2 diffs)
-
inc/Elements/Social_Icon.php (modified) (24 diffs)
-
inc/Elements/Staff_Member.php (modified) (2 diffs)
-
inc/Elements/Teaser_Box.php (modified) (2 diffs)
-
inc/Elements/Testimonial_Slider.php (modified) (6 diffs)
-
inc/Elements/Type.php (modified) (1 diff)
-
inc/Elements/Wording.php (modified) (6 diffs)
-
inc/Elements/heading-with-separator.php (modified) (9 diffs)
-
inc/Reuses/Da_Post.php (modified) (1 diff)
-
inc/Reuses/Reuse.php (modified) (6 diffs)
-
languages/definitive-addons-for-elementor.pot (modified) (81 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
definitive-addons-for-elementor/trunk/css/dafe_style.css
r2708457 r2720175 69 69 } 70 70 71 /* Text Separator */ 72 .font-heading.left { 73 text-align:left; 74 } 75 .font-heading.right { 76 text-align:right; 77 } 78 .font-heading.center { 79 text-align:center; 80 } 81 .da-widget-heading .da-separator { 82 border-style:solid; 83 } 84 .da-separator.left { 85 float:left; 86 } 87 .da-separator.right { 88 float:right; 89 } 90 .da-separator.center { 91 margin:0 auto; 92 } 93 .da-widget-heading .da-separator { 94 display:block; 95 } 96 .da-widget-heading .da-separator.no { 97 display:none; 98 } 71 99 /* Accordion */ 72 100 -
definitive-addons-for-elementor/trunk/definitive_adons_elementor.php
r2708488 r2720175 4 4 * Description: Advanced Widgets for Elementor Page Builder. 5 5 * Plugin URI: https://softfirm.net/ 6 * Version: 1.5. 56 * Version: 1.5.6 7 7 * Author: Softfirm 8 8 * Author URI: https://softfirm.net/definitive-addons/ … … 31 31 * @var string The plugin version. 32 32 */ 33 const VERSION = '1.5. 5';33 const VERSION = '1.5.6'; 34 34 35 35 /** -
definitive-addons-for-elementor/trunk/inc/Elements/Creative_Button.php
r2708457 r2720175 495 495 496 496 497 protected function render( ) {497 protected function render() { 498 498 499 499 $settings = $this->get_settings_for_display(); … … 507 507 if ($icon_position == 'left'){ 508 508 $add_icon_left = $settings['icon']['value']; 509 }else { 509 } 510 if ($icon_position == 'right'){ 510 511 $add_icon_right = $settings['icon']['value']; 511 512 } 512 513 514 $creative_link = ''; 513 515 if ( ! empty( $settings['link']['url'] ) ) { 514 516 $this->add_link_attributes( 'creative_link', $settings['link'] ); 517 $creative_link = $this->get_render_attribute_string( 'creative_link' ); 515 518 } 516 517 518 ?> 519 520 <div class="da_button_widget <?php echo esc_attr($button_align); ?>"> 521 522 <a <?php $this->print_render_attribute_string( 'creative_link' ); ?> class="btn-default dabtn <?php echo esc_attr($settings['hover_animation'] ); ?>"> 523 <span class="<?php echo esc_attr($add_icon_left); ?> icon-left"> 524 </span> 525 <?php echo esc_html($btn_txt); ?> 526 <span class="<?php echo esc_attr($add_icon_right); ?> icon-right"> 527 </span> 528 529 </a> 530 </div> 531 532 533 <?php 519 $tag = 'a'; 520 $tag = Utils::validate_html_tag($tag); 521 //link class 522 $this->add_render_attribute( 'link_class', 'class', ['btn-default', 'dabtn',$settings['hover_animation']] ); 523 $link_class = $this->get_render_attribute_string( 'link_class' ); 524 //icon class left 525 $this->add_render_attribute( 'icon_class', 'class', [$add_icon_left, 'icon-left'] ); 526 $icon_class = $this->get_render_attribute_string( 'icon_class' ); 527 //icon class right 528 $this->add_render_attribute( 'icon_class2', 'class', [$add_icon_right, 'icon-right'] ); 529 $icon_class2 = $this->get_render_attribute_string( 'icon_class2' ); 530 $btn_output = Reuse::dafe_get_tag_with_icon_both($tag,$btn_txt,$link_class,$creative_link,$icon_class,$icon_position,$icon_class2); 531 //container 532 $this->add_render_attribute( 'container_class', 'class',['da_button_widget',$button_align]); 533 $container_class = $this->get_render_attribute_string( 'container_class' ); 534 535 $container = Reuse::dafe_get_content_start_close($inner_tag='',$inner_link='',$container_class,$container_inner=''); 536 537 $btn_html = $container[0].$btn_output.$container[1]; 538 Utils::print_unescaped_internal_string($btn_html); 534 539 535 540 } -
definitive-addons-for-elementor/trunk/inc/Elements/Feature_list.php
r2708457 r2720175 658 658 $this->add_link_attributes( 'feature_list_link'.$key, $feature_list['link'] ); 659 659 } 660 $widget_link = $this->get_render_attribute_string( 'feature_list_link'.$key ); 661 $title_tag = Utils::validate_html_tag( $settings['title_tag'] ); 662 $this->add_render_attribute( 'feature-title', 'class', 'dafe-feature-list-title' ); 663 $title_class = $this->get_render_attribute_string( 'feature-title' ); 660 661 $widget_link = $this->get_render_attribute_string( 'feature_list_link'.$key ); 662 $title_tag = Utils::validate_html_tag( $settings['title_tag'] ); 663 $this->add_render_attribute( 'feature-title'.$key, 'class', 'dafe-feature-list-title' ); 664 $title_class = $this->get_render_attribute_string( 'feature-title'.$key ); 664 665 $title = $feature_list['title']; 665 666 $feature_title = Reuse::dafe_get_linked_title($title_tag,$widget_link,$title,$title_class); 666 667 //description 667 $this->add_render_attribute( 'subtitle_class' , 'class', ['dafe-feature-list-description',$align] );668 $subtitle_class = $this->get_render_attribute_string( 'subtitle_class' );668 $this->add_render_attribute( 'subtitle_class'.$key, 'class', ['dafe-feature-list-description',$align] ); 669 $subtitle_class = $this->get_render_attribute_string( 'subtitle_class'.$key ); 669 670 $subtitle = $feature_list['subtitle']; 670 671 $feature_desc = Reuse::dafe_get_linked_desc($show=false,$subtitle_link='',$subtitle_class,$subtitle); 671 672 //content 672 $this->add_render_attribute( 'content_class' , 'class', 'dafe-feature-list-content' );673 $content_class = $this->get_render_attribute_string( 'content_class' );673 $this->add_render_attribute( 'content_class'.$key, 'class', 'dafe-feature-list-content' ); 674 $content_class = $this->get_render_attribute_string( 'content_class'.$key ); 674 675 675 676 $content_output = $feature_title.$feature_desc; 676 677 $content_html = Reuse::dafe_get_element_content($content_class,$inner_class='',$content_output); 677 678 //icon container 678 $this->add_render_attribute( 'icon_content_class' , 'class','dafe-icon-container');679 $icon_content_class = $this->get_render_attribute_string( 'icon_content_class' );680 $this->add_render_attribute( 'icon_inner_class' , 'class',['dafe-icon', 'dafe-'.$icon_design]);681 $icon_inner_class = $this->get_render_attribute_string('icon_inner_class' );679 $this->add_render_attribute( 'icon_content_class'.$key, 'class','dafe-icon-container'); 680 $icon_content_class = $this->get_render_attribute_string( 'icon_content_class'.$key ); 681 $this->add_render_attribute( 'icon_inner_class'.$key, 'class',['dafe-icon', 'dafe-'.$icon_design]); 682 $icon_inner_class = $this->get_render_attribute_string('icon_inner_class'.$key); 682 683 $inner_tag = 'span'; 683 684 $inner_tag = Utils::validate_html_tag($inner_tag); … … 686 687 687 688 //container 688 $this->add_render_attribute( 'container_class' , 'class', ['dafe-feature-list-container','feature-list-align-'.$align]);689 $container_class = $this->get_render_attribute_string( 'container_class' );690 $this->add_render_attribute('inner_class' , 'class', 'feature-list-inner-container');691 $inner_class = $this->get_render_attribute_string( 'inner_class' );689 $this->add_render_attribute( 'container_class'.$key, 'class', ['dafe-feature-list-container','feature-list-align-'.$align]); 690 $container_class = $this->get_render_attribute_string( 'container_class'.$key ); 691 $this->add_render_attribute('inner_class'.$key, 'class', 'feature-list-inner-container'); 692 $inner_class = $this->get_render_attribute_string( 'inner_class'.$key ); 692 693 $container_inner = Reuse::dafe_get_container_start_close($container_class,$inner_class); 693 694 -
definitive-addons-for-elementor/trunk/inc/Elements/Flip_Box.php
r2708457 r2720175 350 350 'flip_style_subtitle', 351 351 [ 352 'label' => __( 'Flip Box Subtitle', 'definitive-addons-for-elementor' ),352 'label' =>__( 'Flip Box Subtitle', 'definitive-addons-for-elementor' ), 353 353 'tab' => Controls_Manager::TAB_STYLE, 354 354 ] … … 393 393 'flip_style_text', 394 394 [ 395 'label' => __( 'Flip Box Text', 'definitive-addons-for-elementor' ),395 'label' =>__( 'Flip Box Text', 'definitive-addons-for-elementor' ), 396 396 'tab' => Controls_Manager::TAB_STYLE, 397 397 ] … … 478 478 479 479 480 protected function render( ) {480 protected function render() { 481 481 482 482 $settings = $this->get_settings_for_display(); … … 487 487 $title_tag = $this->get_settings_for_display( 'title_tag' ); 488 488 $image = $settings['box_image']['url']; 489 //image 490 if ($settings['box_image']['url']){ 491 492 $img_url = $settings['box_image']['url']; 493 } 494 495 $img_with_size = wp_kses_post(Group_Control_Image_Size::get_attachment_image_html( $settings, 'thumbnail', 'box_image' )); 496 $container_tag = 'div'; 497 $container_tag = Utils::validate_html_tag($container_tag); 498 $this->add_render_attribute( 'image_class', 'class', 'flip-box-frontend' ); 499 $image_class = $this->get_render_attribute_string( 'image_class' ); 500 $img_content = Reuse::dafe_get_widget_image($container_tag,$image_class,$img_with_size); 501 489 502 490 503 //title … … 515 528 516 529 $content_html = $content[0].$flip_title.$flip_subtitle.$flip_desc.$content[1]; 517 ?> 518 519 <div class="flip-box-container"> 520 <div class="flip-box"> 521 <div class="flip-box-frontend"> 522 <img src="<?php echo esc_url($image); ?>" alt="<?php esc_attr_e('Avatar','definitive-addons-for-elementor'); ?>"> 523 </div> 524 <?php Utils::print_unescaped_internal_string($content_html); ?> 525 </div> 526 </div> 527 528 <?php 530 531 //container 532 $this->add_render_attribute( 'container_class', 'class','flip-box-container'); 533 $container_class = $this->get_render_attribute_string( 'container_class' ); 534 $this->add_render_attribute( 'container_inner', 'class','flip-box'); 535 $container_inner = $this->get_render_attribute_string('container_inner'); 536 $inner_tag = 'div'; 537 $inner_tag = Utils::validate_html_tag($inner_tag); 538 $container = Reuse::dafe_get_content_start_close($inner_tag,$flip_link='',$container_class,$container_inner); 539 $flip_box_html = $container[0].$img_content.$content_html.$container[1]; 540 541 542 Utils::print_unescaped_internal_string($flip_box_html); 543 529 544 } 530 545 } -
definitive-addons-for-elementor/trunk/inc/Elements/Icon_Box.php
r2708457 r2720175 732 732 if ( ! empty( $settings['link']['url'] ) ) { 733 733 $this->add_link_attributes( 'icon_box_link', $settings['link'] ); 734 $icon_box_link = $this->get_render_attribute_string( 'icon_box_link' ); 734 735 } 735 736 736 //icon container 737 738 $this->add_render_attribute( 'icon-container', 'class', 'dafe-icon-container' ); 739 $icon_container_class = $this->get_render_attribute_string( 'icon-container' ); 740 $icon_box_link = $this->get_render_attribute_string( 'icon_box_link' ); 741 $icon_class = $this->get_render_attribute_string( 'i' ); 737 742 738 743 739 //title -
definitive-addons-for-elementor/trunk/inc/Elements/Icon_List.php
r2708457 r2720175 421 421 $add_icon_right = $icon_list['icon']['value']; 422 422 } 423 423 $link_icon = ''; 424 424 if ( ! empty( $icon_list['link']['url'] ) ) { 425 425 $this->add_link_attributes( 'icon_list_link'.$key, $icon_list['link'] ); 426 $link_icon = $this->get_render_attribute_string( 'icon_list_link'.$key ); 426 427 } 427 428 428 if ($icon_list['link']['url']){ ?> 429 <a <?php $this->print_render_attribute_string( 'icon_list_link'.$key ); ?> 430 class="list-text <?php echo esc_attr($layout); ?>"> 431 <span class="<?php echo esc_attr($add_icon_left); ?> icon-left"></span><?php echo esc_html($icon_list['title']);?> 432 <span class="<?php echo esc_attr($add_icon_right); ?> icon-right"></span> 433 </a> 434 <?php } else { ?> 435 <span class="list-text <?php echo esc_attr($layout); ?>"> 436 <span class="<?php echo esc_attr($add_icon_left); ?> icon-left"></span> 437 <?php echo esc_html($icon_list['title']); ?> 438 <span class="<?php echo esc_attr($add_icon_right); ?> icon-right"></span> 439 </span> 440 <?php } ?> 429 $tag = 'a'; 430 $tag = Utils::validate_html_tag($tag); 431 //link class 432 $this->add_render_attribute( 'link_class'.$key, 'class', ['list-text',$layout] ); 433 $link_class = $this->get_render_attribute_string( 'link_class'.$key ); 434 //icon class left 435 $this->add_render_attribute( 'icon_class'.$key, 'class', [$add_icon_left, 'icon-left'] ); 436 $icon_class = $this->get_render_attribute_string( 'icon_class'.$key ); 437 //icon class right 438 $this->add_render_attribute( 'icon_class2'.$key, 'class', [$add_icon_right, 'icon-right'] ); 439 $icon_class2 = $this->get_render_attribute_string( 'icon_class2'.$key ); 440 441 $link_output = Reuse::dafe_get_tag_with_icon_both($tag,$icon_list['title'],$link_class,$link_icon,$icon_class,$icon_position,$icon_class2); 442 443 $output = Reuse::dafe_get_tag_with_icon_both($tag='span',$icon_list['title'],$link_class,$link_icon,$icon_class,$icon_position,$icon_class2); 444 445 446 if ($icon_list['link']['url']){ 447 Utils::print_unescaped_internal_string($link_output); 448 } else { 449 Utils::print_unescaped_internal_string($output); 450 } 441 451 442 <?php endforeach; ?> 452 endforeach; ?> 453 443 454 </div> 444 455 -
definitive-addons-for-elementor/trunk/inc/Elements/Popular_Post.php
r2700212 r2720175 120 120 121 121 122 protected function render( ) {122 protected function render() { 123 123 124 124 $settings = $this->get_settings_for_display(); 125 125 126 126 $category_selection = $this->get_settings_for_display('category_selection'); 127 $popular_post_number = 4; 128 Da_Post::dafe_get_popular_post_template($category_selection,$popular_post_number); 129 127 130 128 ?>129 130 131 <div class="nl_grid_row da-popular-post popular-post-grid col_gap_30">132 133 134 <?php135 $paged = get_query_var( 'paged' ) ? intval( get_query_var( 'paged' ) ) : 1;136 137 138 $popular_post_number = 4;139 140 141 $loop = new \WP_Query(142 array(143 'post_type' => 'post',144 'cat' =>$category_selection,145 'posts_per_page' =>intval($popular_post_number),146 147 'orderby' => 'comment_count',148 'order' => 'desc',149 150 'post_status' => 'publish',151 'ignore_sticky_posts' => 1152 )153 );154 155 $col_count = 0;156 $col_no = 2;157 158 159 if( $loop->have_posts() ): while( $loop->have_posts() ): $loop->the_post(); ?>160 161 <?php $col_count++; ?>162 163 <div class="nl-blog-entry no_of_col_<?php echo esc_attr( $col_no ); ?> col_no_<?php echo esc_attr( $col_count ); ?> col_padd_margin" >164 165 <div class="blog-pop_border_style">166 167 168 <?php if (has_post_thumbnail()) {169 $src = get_the_post_thumbnail_url();170 }else {171 $src = DAFE_URI . '/css/dummy-image.jpg';172 }173 ?>174 <div class="pop_post_thumbnail">175 176 <?php if($src){ ?>177 178 179 <a href="<?php the_permalink(); ?>" target="_self">180 <img src="<?php echo esc_url($src) ?>" alt="<?php esc_attr_e(__('Blog Post Thumbnail','definitive-addons-for-elementor')) ?>" />181 </a>182 183 <?php } ?>184 185 186 </div>187 188 <div class="blog-pop-cta">189 <div class="pop-title">190 <a href="<?php the_permalink(); ?>" target="_self">191 <h3 class="blog-title"><?php the_title(); ?></h3>192 </a>193 </div>194 195 </div>196 197 <div class="pop-txt">198 <div class="pop-inner">199 200 201 <span class="pop-cat">202 <?php echo wp_kses_post(get_the_category_list());?>203 </span>204 205 206 <span class="pop-date">207 <?php Reuse::dafe_posted_date(); ?>208 </span>209 210 211 <span class="pop-byline">212 <?php Reuse::dafe_posted_byline(); ?>213 </span>214 215 </div>216 </div>217 218 219 </div>220 </div> <!-- end single post -->221 222 223 <?php224 225 if ( $col_count == $col_no) {226 $col_count = '0';227 }228 229 endwhile; ?>230 </div>231 232 <?php233 234 235 endif;236 wp_reset_postdata();237 238 239 131 } 240 132 } -
definitive-addons-for-elementor/trunk/inc/Elements/Pricing_Table.php
r2708457 r2720175 152 152 'library' => 'fa-solid', 153 153 ], 154 155 156 154 157 155 ] 158 156 ); … … 277 275 278 276 279 280 281 277 $this->end_controls_section(); 282 278 … … 322 318 'type' => Controls_Manager::DIMENSIONS, 323 319 'size_units' => [ 'px', 'em', '%' ], 320 'default' => [ 321 'top' => '10', 322 'right' => '10', 323 'bottom' => '0', 324 'left' => '10' 325 ], 324 326 'selectors' => [ 325 327 '{{WRAPPER}} .table-header' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', … … 1040 1042 1041 1043 1042 protected function render( ) {1044 protected function render() { 1043 1045 1044 1046 $settings = $this->get_settings_for_display(); … … 1052 1054 $add_icon_left = ''; 1053 1055 $add_icon_right = ''; 1056 $this->add_render_attribute('container_class', 'class', ['pricing-table-container',$pricing_table_alignment]); 1057 1054 1058 1055 1059 ?> 1056 <div class="pricing-table-container <?php echo esc_attr($pricing_table_alignment) ?>"> 1057 <div class="table-header"> 1058 <div class="table-header-inner"> 1059 <div class="table-title-container"> 1060 1061 <?php if ($settings['table_title']){ ?> 1062 <<?php Utils::print_validated_html_tag($title_tag); ?> class="table-title"><?php echo esc_html( $settings['table_title']); ?></<?php Utils::print_validated_html_tag($title_tag); ?>> 1063 <?php } ?> 1064 1065 </div> 1066 <div class="table-price-container"> 1067 1068 <span class="table-price"><?php echo esc_html( $settings['table_price']); ?></span> 1069 <span class="price-separator"><?php echo esc_html($settings['price_separator']); ?></span> 1070 <span class="price-text"><?php echo esc_html( $settings['price_text']); ?></span> 1071 1072 </div> 1073 </div> 1074 </div> 1075 <div class="list-container"> 1060 <div <?php $this->print_render_attribute_string('container_class'); ?>> 1061 1062 1063 <?php 1064 1065 //header container 1066 $this->add_render_attribute('header_class', 'class', 'table-header'); 1067 $header_class = $this->get_render_attribute_string('header_class'); 1068 $this->add_render_attribute('header_inner_class', 'class', 'table-header-inner'); 1069 $header_inner_class = $this->get_render_attribute_string('header_inner_class'); 1070 $header_content = Reuse::dafe_get_container_start_close($header_class,$header_inner_class = ''); 1071 1072 //title container 1073 $this->add_render_attribute('title_content_class', 'class', 'table-title-container'); 1074 $title_content_class = $this->get_render_attribute_string('title_content_class'); 1075 //title 1076 $this->add_render_attribute('title_class', 'class', 'table-title'); 1077 $title_class = $this->get_render_attribute_string('title_class'); 1078 1079 $title_tag = Utils::validate_html_tag($title_tag); 1080 $table_title = Reuse::dafe_get_linked_title($title_tag,$widget_link='',$settings['table_title'],$title_class); 1081 $title_content = Reuse::dafe_get_container_start_close($title_content_class,$inner_content_class=''); 1082 1083 $title_contents = $title_content[0].$table_title.$title_content[1]; 1084 1085 1086 $this->add_render_attribute( 'price_container', 'class', 'table-price-container' ); 1087 $price_container = $this->get_render_attribute_string( 'price_container' ); 1088 1089 $this->add_render_attribute( 'price_class', 'class', 'table-price' ); 1090 $price_class = $this->get_render_attribute_string( 'price_class' ); 1091 $price = Reuse::dafe_get_span_text($settings['table_price'],$price_class); 1092 1093 $this->add_render_attribute( 'separator_class', 'class', 'price-separator' ); 1094 $separator_class = $this->get_render_attribute_string( 'separator_class' ); 1095 $separator = Reuse::dafe_get_span_text($settings['price_separator'],$separator_class); 1096 1097 $this->add_render_attribute( 'price_text_class', 'class', 'price-text' ); 1098 $price_text_class = $this->get_render_attribute_string( 'price_text_class' ); 1099 $pricing_text = Reuse::dafe_get_span_text($settings['price_text'],$price_text_class); 1100 1101 $price_content = Reuse::dafe_get_container_start_close($price_container,$inner_content_class=''); 1102 $price_contents = $price_content[0].$price.$separator.$pricing_text.$price_content[1]; 1103 1104 $header_contents = $header_content[0].$title_contents.$price_contents.$header_content[1]; 1105 Utils::print_unescaped_internal_string($header_contents); 1106 1107 ?> 1108 <?php $this->add_render_attribute('list_container', 'class', 'list-container'); ?> 1109 1110 <div <?php $this->print_render_attribute_string('list_container'); ?>> 1076 1111 <?php 1077 foreach ( $settings['pricing_tables'] as $ pricing_table) :1112 foreach ( $settings['pricing_tables'] as $key => $pricing_table) : 1078 1113 1079 1114 if ($icon_position == 'left'){ 1080 1115 $add_icon_left = $pricing_table['icon']['value']; 1081 } else {1116 } else { 1082 1117 $add_icon_right = $pricing_table['icon']['value']; 1083 1118 } 1084 1119 1085 ?> 1086 <div class="list-text"> 1087 <span class="<?php echo esc_attr($add_icon_left); ?> icon-left"></span> 1088 <?php echo esc_html($pricing_table['list_txt']); ?> 1089 <span class="<?php echo esc_attr($add_icon_right); ?> icon-right"></span> 1090 </div> 1091 1092 <?php endforeach; ?> 1120 $this->add_render_attribute('list_class'.$key, 'class', 'list-text'); 1121 $list_class = $this->get_render_attribute_string('list_class'.$key); 1122 $this->add_render_attribute('icon_class'.$key, 'class', [$add_icon_left,'icon-left']); 1123 $icon_class = $this->get_render_attribute_string('icon_class'.$key); 1124 $this->add_render_attribute('icon_class2'.$key, 'class', [$add_icon_right,'icon-right']); 1125 $icon_class2 = $this->get_render_attribute_string('icon_class2'.$key); 1126 1127 $output = Reuse::dafe_get_tag_with_icon_both($tag = 'div',$pricing_table['list_txt'],$list_class,$link_icon='',$icon_class,$icon_position,$icon_class2); 1128 1129 Utils::print_unescaped_internal_string($output); 1130 1131 endforeach; ?> 1093 1132 </div> 1094 1133 <?php 1095 1134 $pricing_link = ''; 1096 1135 if ( ! empty( $settings['btn_link']['url'] ) ) { 1097 $this->add_link_attributes( 'pricing_link', $settings['btn_link'] ); 1098 } 1136 $this->add_link_attributes( 'pricing_link', $settings['btn_link'] ); 1137 $pricing_link = $this->get_render_attribute_string( 'pricing_link' ); 1138 } 1139 1140 $btn_txt = wp_kses_post($settings['btn_txt']); 1141 $this->add_render_attribute( 'btn_container', 'class', 'table-icon-button' ); 1142 $btn_container = $this->get_render_attribute_string( 'btn_container' ); 1143 $this->add_render_attribute( 'link_class', 'class', ['btn-default','dactabtn'] ); 1144 $link_class = $this->get_render_attribute_string( 'link_class' ); 1145 $this->add_render_attribute( 'icon_class', 'class', [$settings['btn_icon']['value'],'icon-btn'] ); 1146 $icon_class = $this->get_render_attribute_string( 'icon_class' ); 1147 $price_btn = Reuse::dafe_get_button_with_icon($btn_txt,$btn_container,$link_class,$pricing_link,$icon_class); 1148 1149 Utils::print_unescaped_internal_string($price_btn); 1150 1099 1151 ?> 1100 1152 1101 <?php if ( ! empty( $settings['btn_txt'] ) ) : ?> 1102 <div class="table-icon-button"> 1103 1104 <a <?php $this->print_render_attribute_string( 'pricing_link' ); ?> class="btn-default dactabtn"> 1105 <?php echo wp_kses_post($settings['btn_txt']); ?> 1106 <span class="<?php echo esc_attr($settings['btn_icon']['value']); ?> icon-btn"></span> 1107 </a> 1108 1109 </div> 1110 <?php endif ?> 1153 1111 1154 1112 1155 </div> -
definitive-addons-for-elementor/trunk/inc/Elements/Promo-box.php
r2708457 r2720175 457 457 $show_hide_corner = 'no'; 458 458 } 459 $promo_link = ''; 459 460 if ( ! empty( $settings['link']['url'] ) ) { 460 461 $this->add_link_attributes( 'promo_box_link', $settings['link'] ); 462 $promo_link = $this->get_render_attribute_string( 'promo_box_link' ); 461 463 } 462 464 // title 463 465 $title_tag = 'h5'; 464 $promo_link = $this->get_render_attribute_string( 'promo_box_link' );466 465 467 $this->add_render_attribute( 'title_class', 'class', 'promo-box-title' ); 466 468 $title_class = $this->get_render_attribute_string( 'title_class' ); … … 471 473 $promo_img = Group_Control_Image_Size::get_attachment_image_html( $settings, 'thumbnail', 'image' ); 472 474 $promobox_img = Reuse::dafe_get_image_with_link($image_link,$promo_link,$promo_img); 475 473 476 //span 474 477 -
definitive-addons-for-elementor/trunk/inc/Elements/Skillbar.php
r2708457 r2720175 271 271 <span class="title" style="height:<?php echo esc_attr($bar_height['size']) ?>px;line-height:<?php echo esc_attr($bar_height['size']) ?>px;"> 272 272 273 <?php $this->print_unescaped_setting( $settings['skill_text']); ?></span>273 <?php $this->print_unescaped_setting('skill_text'); ?></span> 274 274 275 275 <?php } ?> -
definitive-addons-for-elementor/trunk/inc/Elements/Slider.php
r2708457 r2720175 678 678 //$nav_position = $this->get_settings_for_display('nav_position'); 679 679 680 681 682 683 680 if ($show_hide_ovl != 'yes'){ 684 681 $show_hide_ovl = 'no'; … … 695 692 ] ); 696 693 697 ?> 698 <div class="slides-container left-right"> 694 $this->add_render_attribute( 'slides_class', 'class', ['slides-container','left-right'] ); 695 696 ?> 697 <div <?php $this->print_render_attribute_string( 'slides_class' ); ?>> 699 698 <div <?php $this->print_render_attribute_string( 'definitive-slick' ); ?>> 700 699 701 700 <?php foreach ( $settings['slick_slides'] as $key => $slide ) { 702 $slider_image = ''; 701 702 $slider_image = $widget_link = ''; 703 703 $slider_image = $slide['slider_image']['url']; 704 704 705 if ( ! empty( $slide['link']['url'] ) ) { 705 706 $this->add_link_attributes( 'slider_link'.$key, $slide['link'] ); 706 707 $widget_link = $this->get_render_attribute_string( 'slider_link'.$key ); 707 708 } 709 710 //image 711 $image_link = $slide['slider_image']['url']; 712 $slide_img = Group_Control_Image_Size::get_attachment_image_html( $slide, 'thumbnail', 'slider_image' ); 713 $slider_img = ''; 714 if ( !empty($slider_image) ) { 715 $slider_img = Reuse::dafe_get_image_with_link($image_link,$widget_link,$slide_img); 716 } 717 708 718 //title 709 $widget_link = $this->get_render_attribute_string( 'slider_link'.$key );710 $this->add_render_attribute( 'title_class' , 'class', 'definitive-slide-title' );711 $title_class = $this->get_render_attribute_string( 'title_class' );719 720 $this->add_render_attribute( 'title_class'.$key, 'class', 'definitive-slide-title' ); 721 $title_class = $this->get_render_attribute_string( 'title_class'.$key ); 712 722 $title_tag = 'h2'; 713 723 $title_tag = Utils::validate_html_tag($title_tag); 714 724 $linked_title = Reuse::dafe_get_linked_title($title_tag,$widget_link,$slide['title'],$title_class); 715 725 //description 716 $this->add_render_attribute( 'subtitle_class' , 'class', 'definitive-slide-subtitle' );717 $subtitle_class = $this->get_render_attribute_string( 'subtitle_class' );726 $this->add_render_attribute( 'subtitle_class'.$key, 'class', 'definitive-slide-subtitle' ); 727 $subtitle_class = $this->get_render_attribute_string( 'subtitle_class'.$key ); 718 728 $subtitle = Reuse::dafe_get_linked_desc($show=false,$subtitle_link='',$subtitle_class,$slide['subtitle']); 719 729 //button 720 $this->add_render_attribute( 'btn_container' , 'class', 'da_button_slider' );721 $this->add_render_attribute( 'link_class' , 'class', ['btn-default', 'dabtnslide'] );722 $link_class = $this->get_render_attribute_string( 'link_class' );723 $btn_container = $this->get_render_attribute_string( 'btn_container' );730 $this->add_render_attribute( 'btn_container'.$key, 'class', 'da_button_slider' ); 731 $this->add_render_attribute( 'link_class'.$key, 'class', ['btn-default', 'dabtnslide'] ); 732 $link_class = $this->get_render_attribute_string( 'link_class'.$key ); 733 $btn_container = $this->get_render_attribute_string( 'btn_container'.$key ); 724 734 725 735 $linked_button = Reuse::dafe_get_linked_button($slide['btn_txt'],$btn_container,$link_class,$widget_link); 736 737 //Overlay Content 738 $this->add_render_attribute( 'inner_class'.$key, 'class','definitive-slide-cta'); 739 $inner_class = $this->get_render_attribute_string( 'inner_class'.$key ); 740 $this->add_render_attribute( 'content_class'.$key, 'class',['definitive-slide-item',$show_hide_ovl]); 741 $content_class = $this->get_render_attribute_string( 'content_class'.$key ); 742 $contents = Reuse::dafe_get_container_start_close($content_class,$inner_class); 743 $cta_content = $slider_img.$contents[0].$linked_title.$subtitle.$linked_button.$contents[1]; 744 726 745 //Content 727 $this->add_render_attribute( 'inner_class', 'class','definitive-slide-cta'); 728 $inner_class = $this->get_render_attribute_string( 'inner_class' ); 729 $this->add_render_attribute( 'content_class', 'class',['definitive-slide-item',$show_hide_ovl]); 730 $content_class = $this->get_render_attribute_string( 'content_class' ); 731 $contents = Reuse::dafe_get_container_start_close($content_class,$inner_class); 732 733 ?> 734 735 <div class="definitive-slide"> 736 <div class="definitive-slide-entry"> 737 738 <?php if ( !empty($slider_image) ) { ?> 739 <a <?php $this->print_render_attribute_string( 'slider_link'.$key ); ?>> 740 741 <img class="definitive-slide-img" src="<?php echo esc_url( $slider_image ); ?>" alt="<?php echo esc_attr( $slide['title'] ); ?>"> 742 </a> 743 <?php } ?> 744 745 <?php Utils::print_unescaped_internal_string($contents[0].$linked_title.$subtitle.$linked_button.$contents[1]); ?> 746 747 </div> 748 </div> 749 750 <?php } ?> 751 746 $this->add_render_attribute( 'inner_content_class'.$key, 'class','definitive-slide-entry'); 747 $inner_content_class = $this->get_render_attribute_string( 'inner_content_class'.$key ); 748 $this->add_render_attribute( 'slide_content_class'.$key, 'class','definitive-slide'); 749 $slide_content_class = $this->get_render_attribute_string( 'slide_content_class'.$key ); 750 $slider_contents = Reuse::dafe_get_container_start_close($slide_content_class,$inner_content_class); 751 $slider_overlay = $slider_contents[0].$cta_content.$slider_contents[1]; 752 Utils::print_unescaped_internal_string($slider_overlay); 753 } 754 ?> 755 752 756 </div> 753 754 757 755 758 </div> 756 759 757 760 758 761 <?php 759 }762 760 763 } 764 } -
definitive-addons-for-elementor/trunk/inc/Elements/Social_Icon.php
r2708457 r2720175 154 154 'type' => Controls_Manager::COLOR, 155 155 'selectors' => [ 156 '{{WRAPPER}} .dafe-social-icons-container > {{CURRENT_ITEM}}.dafe-icon-container . icon' => 'color: {{VALUE}};',157 '{{WRAPPER}} .dafe-social-icons-container > {{CURRENT_ITEM}} .dafe-icon-name' => 'color: {{VALUE}};',156 '{{WRAPPER}} .dafe-social-icons-container > {{CURRENT_ITEM}}.dafe-icon-container .dafe-icon i' => 'color: {{VALUE}};', 157 '{{WRAPPER}} .dafe-social-icons-container > {{CURRENT_ITEM}}.dafe-icon-name' => 'color: {{VALUE}};', 158 158 159 159 ], … … 170 170 171 171 'selectors' => [ 172 '{{WRAPPER}} .dafe-social-icons-container > {{CURRENT_ITEM}}.dafe-icon-container ' => 'background-color: {{VALUE}};',172 '{{WRAPPER}} .dafe-social-icons-container > {{CURRENT_ITEM}}.dafe-icon-container .dafe-icon' => 'background-color: {{VALUE}};', 173 173 ], 174 174 'condition' => ['single_icon_style' => 'yes'], … … 185 185 'style_transfer' => true, 186 186 'selectors' => [ 187 '{{WRAPPER}} .dafe-social-icons-container > {{CURRENT_ITEM}}.dafe-icon-container ' => 'border-color: {{VALUE}};',187 '{{WRAPPER}} .dafe-social-icons-container > {{CURRENT_ITEM}}.dafe-icon-container .dafe-icon' => 'border-color: {{VALUE}};', 188 188 ] 189 189 ] … … 204 204 'type' => Controls_Manager::COLOR, 205 205 'selectors' => [ 206 '{{WRAPPER}} .dafe-social-icons-container > {{CURRENT_ITEM}}.dafe-icon-container:hover . icon' => 'color: {{VALUE}};',206 '{{WRAPPER}} .dafe-social-icons-container > {{CURRENT_ITEM}}.dafe-icon-container:hover .dafe-icon i' => 'color: {{VALUE}};', 207 207 ], 208 208 'condition' => ['single_icon_style' => 'yes'], … … 216 216 'type' => Controls_Manager::COLOR, 217 217 'selectors' => [ 218 '{{WRAPPER}} .dafe-social-icons-container {{CURRENT_ITEM}}.dafe-icon-container :hover' => 'background-color: {{VALUE}};',218 '{{WRAPPER}} .dafe-social-icons-container {{CURRENT_ITEM}}.dafe-icon-container .dafe-icon:hover' => 'background-color: {{VALUE}};', 219 219 ], 220 220 'condition' => ['single_icon_style' => 'yes'], … … 230 230 231 231 'selectors' => [ 232 '{{WRAPPER}} .dafe-social-icons-container {{CURRENT_ITEM}}.dafe-icon-container :hover' => 'border-color: {{VALUE}};',232 '{{WRAPPER}} .dafe-social-icons-container {{CURRENT_ITEM}}.dafe-icon-container .dafe-icon:hover' => 'border-color: {{VALUE}};', 233 233 ] 234 234 ] … … 329 329 [ 330 330 'name' => 'dafe_social_container_border', 331 'selector' => '{{WRAPPER}} .dafe-social-icons-container',331 'selector' => '{{WRAPPER}} .dafe-social-icons-container', 332 332 ] 333 333 ); … … 340 340 'size_units' => [ 'px', '%' ], 341 341 'selectors' => [ 342 '{{WRAPPER}} .dafe-social-icons-container' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}}; overflow: hidden;',342 '{{WRAPPER}} .dafe-social-icons-container' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', 343 343 ], 344 344 ] … … 352 352 'size_units' => [ 'px', '%' ], 353 353 'selectors' => [ 354 '{{WRAPPER}} .dafe-social-icons-container' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}}; overflow: hidden;',354 '{{WRAPPER}} .dafe-social-icons-container' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', 355 355 ], 356 356 ] … … 389 389 390 390 'selectors' => [ 391 '{{WRAPPER}} .dafe- social-icons-container .dafe-icon-container .icon' => 'color: {{VALUE}};',391 '{{WRAPPER}} .dafe-icon-container .dafe-icon' => 'color: {{VALUE}};', 392 392 393 393 ], … … 403 403 'type' => Controls_Manager::COLOR, 404 404 'default' => '#eeeeee', 405 'selectors' => [406 407 '{{WRAPPER}} .dafe- social-icons-container .dafe-icon-container' => 'background-color: {{VALUE}};',405 'selectors' => [ 406 407 '{{WRAPPER}} .dafe-icon-container .dafe-icon' => 'background-color: {{VALUE}};', 408 408 409 409 ], … … 418 418 'type' => Controls_Manager::COLOR, 419 419 'selectors' => [ 420 '{{WRAPPER}} .dafe- social-icons-container .dafe-icon-container' => 'border-color: {{VALUE}};',420 '{{WRAPPER}} .dafe-icon-container .dafe-icon' => 'border-color: {{VALUE}};', 421 421 ] 422 422 ] … … 438 438 'type' => Controls_Manager::COLOR, 439 439 'selectors' => [ 440 '{{WRAPPER}} .dafe- social-icons-container .dafe-icon-container:hover i'=> 'color: {{VALUE}};',440 '{{WRAPPER}} .dafe-icon-container .dafe-icon:hover i' => 'color: {{VALUE}};', 441 441 442 442 ], … … 450 450 'type' => Controls_Manager::COLOR, 451 451 'selectors' => [ 452 '{{WRAPPER}} .dafe- social-icons-container .dafe-icon-container:hover' => 'background-color: {{VALUE}};',452 '{{WRAPPER}} .dafe-icon-container .dafe-icon:hover' => 'background-color: {{VALUE}};', 453 453 ], 454 454 … … 462 462 'type' => Controls_Manager::COLOR, 463 463 'selectors' => [ 464 '{{WRAPPER}} .dafe- social-icons-container .dafe-icon-container:hover' => 'border-color: {{VALUE}};',464 '{{WRAPPER}} .dafe-icon-container .dafe-icon:hover' => 'border-color: {{VALUE}};', 465 465 ] 466 466 ] … … 486 486 ], 487 487 'selectors' => [ 488 '{{WRAPPER}} .dafe- social-icons-container .dafe-icon-containeri' => 'font-size: {{SIZE}}{{UNIT}};',488 '{{WRAPPER}} .dafe-icon-container .dafe-icon i' => 'font-size: {{SIZE}}{{UNIT}};', 489 489 ], 490 490 ] … … 507 507 ], 508 508 'selectors' => [ 509 '{{WRAPPER}} .dafe- social-icons-container .dafe-icon-container:not(:last-child)' => 'margin-right: {{SIZE}}{{UNIT}};',509 '{{WRAPPER}} .dafe-icon-container:not(:last-child) .dafe-icon' => 'margin-right: {{SIZE}}{{UNIT}};', 510 510 511 511 ], … … 526 526 ], 527 527 'selectors' => [ 528 '{{WRAPPER}} .dafe- social-icons-container .dafe-icon-container' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}}; overflow: hidden;',528 '{{WRAPPER}} .dafe-icon-container .dafe-icon' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', 529 529 ], 530 530 ] … … 535 535 [ 536 536 'name' => 'dafe_social_icon_border', 537 'selector' => '{{WRAPPER}} .dafe- social-icons-container .dafe-icon-container',537 'selector' => '{{WRAPPER}} .dafe-icon-container .dafe-icon', 538 538 'separator' => 'before', 539 539 ] … … 547 547 'size_units' => ['px', '%'], 548 548 'selectors' => [ 549 '{{WRAPPER}} .dafe- social-icons-container .dafe-icon-container' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',549 '{{WRAPPER}} .dafe-icon-container .dafe-icon' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', 550 550 ], 551 551 ] … … 557 557 'name' => 'dafe_social_icon_shadow', 558 558 559 'selector' => '{{WRAPPER}} .dafe- social-icons-container .dafe-icon-container',559 'selector' => '{{WRAPPER}} .dafe-icon-container .dafe-icon', 560 560 ] 561 561 ); … … 584 584 ] 585 585 ); 586 587 $this->add_control( 588 'dafe_social_icons_txt_color', 589 [ 590 'label' => __('Text Color', 'definitive-addons-for-elementor'), 591 'type' => Controls_Manager::COLOR, 592 'selectors' => [ 593 '{{WRAPPER}} .dafe-social-icons-container .dafe-icon-name' => 'color: {{VALUE}};', 594 ], 595 596 ] 597 ); 586 598 587 599 $this->add_group_control( … … 591 603 'label' => __('Typography', 'definitive-addons-for-elementor'), 592 604 593 'selector' => '{{WRAPPER}} .dafe-social-icons-container .dafe-icon-name'605 'selector' => '{{WRAPPER}} .dafe-social-icons-container .dafe-icon-name' 594 606 ] 595 607 … … 619 631 <div class="dafe-social-icons-container"> 620 632 621 <?php foreach ( $settings['dafe_social_icon_repeater'] as $key => $social_icon ) : ?>633 <?php foreach ( $settings['dafe_social_icon_repeater'] as $key => $social_icon ) : 622 634 623 <?php if ( ! empty( $social_icon['social_icon_link']['url'] ) ) { 635 636 $link_attr = ''; 637 if ( ! empty( $social_icon['social_icon_link']['url'] ) ) { 624 638 $this->add_link_attributes( 'social_link'.$key, $social_icon['social_icon_link'] ); 625 } ?> 626 <div class="dafe-icon-container elementor-repeater-item-<?php echo esc_attr($social_icon['_id']); ?> elementor-animation-<?php echo esc_attr($settings['dafe_social_hvr_animation'] ); ?>"> 627 <a <?php $this->print_render_attribute_string( 'social_link'.$key ); ?> class="dafe-icon"> 628 <i class="<?php echo esc_attr($social_icon['dafe_social_icon']['value']); ?> icon"> 639 $link_attr = $this->get_render_attribute_string( 'social_link'.$key ); 640 } 641 //icon container 642 $this->add_render_attribute( 'icon_content_class'.$key, 'class',['dafe-icon-container','elementor-repeater-item-'.$social_icon['_id'],'elementor-animation-'.$settings['dafe_social_hvr_animation']]); 643 $icon_content_class = $this->get_render_attribute_string( 'icon_content_class'.$key ); 644 $this->add_render_attribute( 'icon_inner_class'.$key, 'class','dafe-icon'); 645 $icon_inner_class = $this->get_render_attribute_string('icon_inner_class'.$key); 646 $inner_tag = 'a'; 647 $inner_tag = Utils::validate_html_tag($inner_tag); 648 $icon_container = Reuse::dafe_get_content_start_close($inner_tag,$link_attr,$icon_content_class,$icon_inner_class); 649 650 $this->add_render_attribute( 'span_class'.$key, 'class', ['dafe-icon-name','elementor-repeater-item-'.$social_icon['_id']]); 651 $span_class = $this->get_render_attribute_string('span_class'.$key); 652 $icon_name = ''; 653 if ($social_icon['show_hide_text'] == 'yes') { 654 $icon_name = Reuse::dafe_get_span_text($social_icon['social_icons_title'],$span_class); 655 } 656 657 Utils::print_unescaped_internal_string($icon_container[0]); 658 659 Icons_Manager::render_icon($social_icon['dafe_social_icon'],[ 'aria-hidden' => 'true' ]); 660 661 Utils::print_unescaped_internal_string($icon_container[1].$icon_name); 629 662 630 </i> 631 632 </a> 633 <?php if ($social_icon['show_hide_text'] == 'yes') { ?> 634 <?php if ($social_icon['social_icons_title']) { ?> 635 <span class="dafe-icon-name"><?php echo esc_html($social_icon['social_icons_title']); ?> </span> 636 <?php } ?> 637 <?php } ?> 638 639 </div> 640 641 642 <?php endforeach; ?> 643 644 </div> 663 endforeach; ?> 664 </div> 665 645 666 <?php 646 667 } -
definitive-addons-for-elementor/trunk/inc/Elements/Staff_Member.php
r2708457 r2720175 83 83 [ 84 84 'name' => 'thumbnail', 85 'default' => ' thumbnail',85 'default' => 'full', 86 86 'separator' => 'before', 87 87 'exclude' => [ … … 257 257 'default' => [ 258 258 'unit' => '%', 259 'size' => 40,259 'size' => 100, 260 260 ], 261 261 'range' => [ -
definitive-addons-for-elementor/trunk/inc/Elements/Teaser_Box.php
r2708457 r2720175 71 71 [ 72 72 'name' => 'thumbnail', 73 'default' => ' thumbnail',73 'default' => 'large', 74 74 'separator' => 'before', 75 75 'exclude' => [ … … 252 252 'default' => [ 253 253 'unit' => '%', 254 'size' => 40,254 'size' => 100, 255 255 ], 256 256 'range' => [ -
definitive-addons-for-elementor/trunk/inc/Elements/Testimonial_Slider.php
r2708457 r2720175 45 45 46 46 public function get_keywords() { 47 return [ 'testimonial', 'image', 'review','slide' ];47 return [ 'testimonial', 'image','review','slide' ]; 48 48 } 49 49 … … 51 51 return [ 'definitive-addons' ]; 52 52 } 53 54 55 56 57 53 58 54 protected function register_controls() { … … 425 421 ] 426 422 ); 427 428 429 423 430 424 $this->add_responsive_control( … … 960 954 961 955 $imagewithsize = Group_Control_Image_Size::get_attachment_image_html( $slide, 'thumbnail', 'image' ); 962 $this->add_render_attribute( 'fig_class' , 'class', 'dafe-testimonial-image' );963 $fig_class = $this->get_render_attribute_string( 'fig_class' );956 $this->add_render_attribute( 'fig_class'.$key, 'class', 'dafe-testimonial-image' ); 957 $fig_class = $this->get_render_attribute_string( 'fig_class'.$key ); 964 958 $up_image = $down_image = ''; 965 959 $show = 'true'; … … 971 965 } 972 966 //name 973 $this->add_render_attribute( 'title_class' , 'class', 'dafe-author-name' );974 $title_class = $this->get_render_attribute_string( 'title_class' );967 $this->add_render_attribute( 'title_class'.$key, 'class', 'dafe-author-name' ); 968 $title_class = $this->get_render_attribute_string( 'title_class'.$key ); 975 969 $author_name = Reuse::dafe_get_span_text($slide['name'],$title_class); 976 970 //author title 977 $this->add_render_attribute( 'position_class' , 'class', 'dafe-author-title' );978 $position_class = $this->get_render_attribute_string( 'position_class' );971 $this->add_render_attribute( 'position_class'.$key, 'class', 'dafe-author-title' ); 972 $position_class = $this->get_render_attribute_string( 'position_class'.$key ); 979 973 $author_title = Reuse::dafe_get_span_text($slide['title'],$position_class); 980 974 //organization 981 975 $html_tag = 'h5'; 982 $this->add_render_attribute( 'org_class' , 'class', 'dafe-author-organization' );983 $org_class = $this->get_render_attribute_string( 'org_class' );976 $this->add_render_attribute( 'org_class'.$key, 'class', 'dafe-author-organization' ); 977 $org_class = $this->get_render_attribute_string( 'org_class'.$key ); 984 978 985 979 $author_org = Reuse::dafe_get_title($html_tag,$slide['organization'],$org_class); … … 987 981 // reviewer text 988 982 989 $this->add_render_attribute( 'quote_class' , 'class', 'speech' );990 $quote_class = $this->get_render_attribute_string( 'quote_class' );983 $this->add_render_attribute( 'quote_class'.$key, 'class', 'speech' ); 984 $quote_class = $this->get_render_attribute_string( 'quote_class'.$key ); 991 985 992 986 $review_txt = Reuse::dafe_get_quote_text($settings['show_hide_quote'],$quote_class,$slide['reviewer_text']); 993 987 994 988 //author container 995 $this->add_render_attribute( 'author_class' , 'class','dafe-testimonial-title');996 $author_class = $this->get_render_attribute_string( 'author_class' );989 $this->add_render_attribute( 'author_class'.$key, 'class','dafe-testimonial-title'); 990 $author_class = $this->get_render_attribute_string( 'author_class'.$key ); 997 991 $author_container = Reuse::dafe_get_container_start_close($author_class,$inner_class=''); 998 992 999 993 //review container 1000 $this->add_render_attribute( 'desc_class' , 'class','dafe-testimonial-description');1001 $desc_class = $this->get_render_attribute_string( 'desc_class' );994 $this->add_render_attribute( 'desc_class'.$key, 'class','dafe-testimonial-description'); 995 $desc_class = $this->get_render_attribute_string( 'desc_class'.$key ); 1002 996 1003 997 $desc_container = Reuse::dafe_get_container_start_close($desc_class,$inner_class=''); 1004 998 1005 999 //content 1006 $this->add_render_attribute( 'content_class' , 'class','dafe-testimonial-content');1007 $content_class = $this->get_render_attribute_string( 'content_class' );1000 $this->add_render_attribute( 'content_class'.$key, 'class','dafe-testimonial-content'); 1001 $content_class = $this->get_render_attribute_string( 'content_class'.$key ); 1008 1002 $author_container = Reuse::dafe_get_container_start_close($content_class,$inner_class=''); 1009 1003 $author_details = $author_container[0].$author_detail.$desc_container[0].$review_txt.$desc_container[1].$author_container[1]; 1010 1004 //container 1011 $this->add_render_attribute( 'container_class' , 'class',1005 $this->add_render_attribute( 'container_class'.$key, 'class', 1012 1006 ['dafe-testimonial-container','dafe-testimonial-image-align-'.$align ,'dafe-vertical-align-middle']); 1013 $container_class = $this->get_render_attribute_string( 'container_class' );1014 $this->add_render_attribute('inner_class' , 'class', 'dafe-testimonial-inner-container');1015 $inner_class = $this->get_render_attribute_string( 'inner_class' );1007 $container_class = $this->get_render_attribute_string( 'container_class'.$key ); 1008 $this->add_render_attribute('inner_class'.$key, 'class', 'dafe-testimonial-inner-container'); 1009 $inner_class = $this->get_render_attribute_string( 'inner_class'.$key ); 1016 1010 $container = Reuse::dafe_get_container_start_close($container_class,$inner_class); 1017 1011 -
definitive-addons-for-elementor/trunk/inc/Elements/Type.php
r2700212 r2720175 189 189 ] ); 190 190 191 ?> 192 193 <div id="<?php echo esc_attr($id); ?>" class="type-container <?php echo esc_attr($text_alignment); ?>"> 194 195 <span <?php $this->print_render_attribute_string( 'writing' ); ?>></span> 191 $this->add_render_attribute( 'type_container', [ 192 'class' => ['type-container',$text_alignment], 193 'id' => $id, 196 194 197 </div> 198 199 <?php 195 ] ); 196 197 $writing = $this->get_render_attribute_string( 'writing' ); 198 $type_container = $this->get_render_attribute_string( 'type_container' ); 199 200 $type_animate = Reuse::dafe_get_span_text($text ='',$writing); 201 $type_content = Reuse::dafe_get_container_start_close($type_container,$type_inner=''); 202 $type_container = $type_content[0].$type_animate.$type_content[1]; 203 Utils::print_unescaped_internal_string($type_container); 204 200 205 } 201 206 -
definitive-addons-for-elementor/trunk/inc/Elements/Wording.php
r2708457 r2720175 54 54 'dafe_section_heading', 55 55 [ 56 'label' => __( ' Wording', 'definitive-addons-for-elementor' ),56 'label' => __( 'Multi-Color Text', 'definitive-addons-for-elementor' ), 57 57 'tab' => Controls_Manager::TAB_CONTENT, 58 58 ] … … 65 65 'label_block' => true, 66 66 'label' => __( 'Enter one or more word', 'definitive-addons-for-elementor' ), 67 'default' => __( ' Word1', 'definitive-addons-for-elementor' )67 'default' => __( 'Definitive', 'definitive-addons-for-elementor' ) 68 68 ] 69 69 ); … … 75 75 'label_block' => true, 76 76 'label' =>__( 'Enter one or more word', 'definitive-addons-for-elementor' ), 77 'default' =>__( ' Word2', 'definitive-addons-for-elementor' )77 'default' =>__( 'Addons', 'definitive-addons-for-elementor' ) 78 78 ] 79 79 ); … … 84 84 'label_block' => true, 85 85 'label' =>__( 'Enter one or more word', 'definitive-addons-for-elementor' ), 86 'default' =>__( ' Word3', 'definitive-addons-for-elementor' )86 'default' =>__( 'For', 'definitive-addons-for-elementor' ) 87 87 ] 88 88 ); … … 93 93 'label_block' => true, 94 94 'label' =>__( 'Enter one or more word', 'definitive-addons-for-elementor' ), 95 'default' =>__( ' Word4', 'definitive-addons-for-elementor' )95 'default' =>__( 'Elementor', 'definitive-addons-for-elementor' ) 96 96 ] 97 97 ); … … 556 556 $span_txt1 = Reuse::dafe_get_span_text($settings['word1'],$param['word1']); 557 557 $span_txt2 = Reuse::dafe_get_span_text($settings['word2'],$param['word2']); 558 $span_txt3 = Reuse::dafe_get_span_text($settings['word 2'],$param['word3']);559 $span_txt4 = Reuse::dafe_get_span_text($settings['word 2'],$param['word4']);558 $span_txt3 = Reuse::dafe_get_span_text($settings['word3'],$param['word3']); 559 $span_txt4 = Reuse::dafe_get_span_text($settings['word4'],$param['word4']); 560 560 $span_txt = $span_txt1.$span_txt2.$span_txt3.$span_txt4; 561 561 $container = Reuse::dafe_get_container_start_close($param['container'],$inner_class=''); -
definitive-addons-for-elementor/trunk/inc/Elements/heading-with-separator.php
r2708457 r2720175 126 126 ], 127 127 'default' => 'center', 128 'selectors' => [ 129 '{{WRAPPER}} .font-heading' => 'text-align: {{VALUE}};', 130 '{{WRAPPER}} .separator' => 'text-align: {{VALUE}};', 131 ], 128 132 129 133 130 … … 288 285 'type' => Controls_Manager::COLOR, 289 286 'selectors' => [ 290 '{{WRAPPER}} . separator' => 'border-color: {{VALUE}}',287 '{{WRAPPER}} .da-separator' => 'border-color: {{VALUE}}', 291 288 ], 292 289 'default' =>'#6EC1E4' … … 300 297 'type' => Controls_Manager::COLOR, 301 298 'selectors' => [ 302 '{{WRAPPER}} . separator:hover' => 'border-color: {{VALUE}}',299 '{{WRAPPER}} .da-separator:hover' => 'border-color: {{VALUE}}', 303 300 ], 304 301 'default' =>'#6EC1D4' … … 316 313 ], 317 314 'selectors' => [ 318 '{{WRAPPER}} . separator' => 'width: {{SIZE}}%;',315 '{{WRAPPER}} .da-widget-heading .da-separator' => 'width: {{SIZE}}%;', 319 316 ], 320 317 ] … … 331 328 ], 332 329 'selectors' => [ 333 '{{WRAPPER}} . separator' => 'border-width: {{SIZE}}{{UNIT}};',330 '{{WRAPPER}} .da-separator' => 'border-width: {{SIZE}}{{UNIT}};', 334 331 ], 335 332 ] … … 343 340 'size_units' => ['px'], 344 341 'selectors' => [ 345 '{{WRAPPER}} . separator' => 'margin-bottom: {{SIZE}}{{UNIT}};',342 '{{WRAPPER}} .da-separator' => 'margin-bottom: {{SIZE}}{{UNIT}};', 346 343 ], 347 344 ] … … 368 365 369 366 if ($show_hide_sep != 'yes'){ 370 $s eparator_styles .= 'display:none;';367 $show_hide_sep .= 'no'; 371 368 } 372 373 $style = '';374 375 376 if ($heading_alignment == 'left'){377 378 $separator_styles .= "left:0%;";379 }380 381 if ($heading_alignment == 'center'){382 $separator_w = 100 - intval($separator_width['size']);383 $separator_l = intval($separator_w)/2;384 $separator_styles .= "left:".intval($separator_l)."%;";385 }386 387 if ($heading_alignment == 'right'){388 $separator_w = 100 - intval($separator_width['size']);389 $separator_styles .= "left:".intval($separator_w)."%;";390 }391 392 $separator_styles .= 'border-style:solid;';393 $separator_styles .= 'position:relative;';394 395 $styles ='';396 369 397 370 if($title_tag == "") { … … 400 373 401 374 //title 402 $this->add_render_attribute( 'title_class', 'class', 'font-heading');375 $this->add_render_attribute( 'title_class', 'class', ['font-heading',$heading_alignment]); 403 376 $title_class = $this->get_render_attribute_string( 'title_class' ); 404 377 $title_tag = Utils::validate_html_tag($title_tag); … … 409 382 ?> 410 383 411 <div class=" widget-heading">384 <div class="da-widget-heading"> 412 385 413 386 <?php Utils::print_unescaped_internal_string( $heading_title); ?> 414 387 415 < div class="separator" style="<?php echo esc_attr($separator_styles); ?>"></div>388 <span class="da-separator <?php echo esc_attr($heading_alignment); ?> <?php echo esc_attr($show_hide_sep); ?>"></span> 416 389 </div> 417 390 -
definitive-addons-for-elementor/trunk/inc/Reuses/Da_Post.php
r2708488 r2720175 309 309 } 310 310 311 // Popular Post 312 313 public static function dafe_get_popular_post_template($category_selection,$popular_post_number) { 314 ?> 315 <div class="nl_grid_row da-popular-post popular-post-grid col_gap_30"> 316 317 318 <?php 319 $paged = get_query_var( 'paged' ) ? intval( get_query_var( 'paged' ) ) : 1; 320 321 322 $loop = new \WP_Query( 323 array( 324 'post_type' => 'post', 325 'cat' =>$category_selection, 326 'posts_per_page' =>intval($popular_post_number), 327 328 'orderby' => 'comment_count', 329 'order' => 'desc', 330 331 'post_status' => 'publish', 332 'ignore_sticky_posts' => 1 333 ) 334 ); 335 336 $col_count = 0; 337 $col_no = 2; 338 339 340 if( $loop->have_posts() ): while( $loop->have_posts() ): $loop->the_post(); ?> 341 342 <?php $col_count++; ?> 343 344 <div class="nl-blog-entry no_of_col_<?php echo esc_attr( $col_no ); ?> col_no_<?php echo esc_attr( $col_count ); ?> col_padd_margin" > 345 346 <div class="blog-pop_border_style"> 347 348 349 <?php if (has_post_thumbnail()) { 350 $src = get_the_post_thumbnail_url(); 351 }else { 352 $src = DAFE_URI . '/css/dummy-image.jpg'; 353 } 354 ?> 355 <div class="pop_post_thumbnail"> 356 357 <?php if($src){ ?> 358 359 360 <a href="<?php the_permalink(); ?>" target="_self"> 361 <img src="<?php echo esc_url($src) ?>" alt="<?php esc_attr_e(__('Blog Post Thumbnail','definitive-addons-for-elementor')) ?>" /> 362 </a> 363 364 <?php } ?> 365 366 367 </div> 368 369 <div class="blog-pop-cta"> 370 <div class="pop-title"> 371 <a href="<?php the_permalink(); ?>" target="_self"> 372 <h3 class="blog-title"><?php the_title(); ?></h3> 373 </a> 374 </div> 375 376 </div> 377 378 <div class="pop-txt"> 379 <div class="pop-inner"> 380 381 382 <span class="pop-cat"> 383 <?php echo wp_kses_post(get_the_category_list());?> 384 </span> 385 386 387 <span class="pop-date"> 388 <?php Reuse::dafe_posted_date(); ?> 389 </span> 390 391 392 <span class="pop-byline"> 393 <?php Reuse::dafe_posted_byline(); ?> 394 </span> 395 396 </div> 397 </div> 398 399 400 </div> 401 </div> <!-- end single post --> 402 403 404 <?php 405 406 if ( $col_count == $col_no) { 407 $col_count = '0'; 408 } 409 410 endwhile; ?> 411 </div> 412 413 <?php 414 415 416 endif; 417 wp_reset_postdata(); 418 } 419 311 420 // Post Grid 312 421 -
definitive-addons-for-elementor/trunk/inc/Reuses/Reuse.php
r2708457 r2720175 214 214 215 215 public static function dafe_get_span_text($title,$title_class) { 216 $output = ''; 217 if ( $title ) : 216 217 $output = ''; 218 if ( !empty($title) && !empty($title_class)) : 218 219 219 220 $output = sprintf('<span %1$s>%2$s</span>',$title_class,$title); 220 221 221 elseif (empty($title_class) ):222 elseif (empty($title_class) && !empty($title)): 222 223 223 224 $output = sprintf('<span>%1$s</span>',$title); 224 225 225 elseif (empty($title) ):226 elseif (empty($title) && !empty($title_class)): 226 227 227 228 $output = sprintf('<span %1$s></span>',$title_class); … … 233 234 234 235 public static function dafe_get_span_text_linked($title_link,$title_class,$title) { 235 $title = ''; 236 if ( $title ) : 237 238 $title = sprintf('<a %1$s><span %2$s>%3$s</span></a>',$title_link,$title_class,$title); 239 240 endif; 241 return $title; 236 237 $output = ''; 238 if ( !empty($title) ) : 239 240 $output = sprintf('<a %1$s><span %2$s>%3$s</span></a>',$title_link,$title_class,$title); 241 242 endif; 243 return $output; 242 244 243 245 } … … 306 308 307 309 308 public static function dafe_get_linked_button($b ox_button,$btn_container,$link_class,$card_link) {309 $output = ''; 310 311 if ( $box_button) :312 313 $output .= sprintf('<div %1$s><a %2$s %3$s>%4$s</a></div>',$btn_container,$ card_link,$link_class,$box_button);310 public static function dafe_get_linked_button($btn_txt,$btn_container,$link_class,$btn_link) { 311 $output = ''; 312 313 if (!empty($btn_txt)) : 314 315 $output .= sprintf('<div %1$s><a %2$s %3$s>%4$s</a></div>',$btn_container,$btn_link,$link_class,$btn_txt); 314 316 315 317 endif; … … 322 324 $output = ''; 323 325 324 if ( $btn_txt) :326 if (!empty($btn_txt)) : 325 327 $output .= sprintf('<div %1$s><a %2$s %3$s> %4$s <i %5$s></i></a></div>',$btn_container,$btn_link,$link_class,$btn_txt,$icon_class); 328 endif; 329 return $output; 330 331 } 332 333 334 335 public static function dafe_get_tag_with_icon_both($tag,$txt,$link_class,$link,$icon_class,$direction,$icon_class2) { 336 337 $output = ''; 338 339 if (!empty($txt) && $direction == 'right') : 340 $output .= sprintf('<%1$s %2$s %3$s> %4$s <i %5$s></i></%1$s>', 341 $tag,$link,$link_class,$txt,$icon_class2); 342 endif; 343 if (!empty($txt) && $direction == 'left') : 344 $output .= sprintf('<%1$s %2$s %3$s><i %5$s></i> %4$s </%1$s>', 345 $tag,$link,$link_class,$txt,$icon_class); 346 endif; 347 if (!empty($txt) && $direction == 'both') : 348 $output .= sprintf('<%1$s %2$s %3$s><i %5$s></i> %4$s <i %6$s></i></%1$s>', 349 $tag,$link,$link_class,$txt,$icon_class,$icon_class2); 326 350 endif; 327 351 return $output; … … 431 455 $output = ''; 432 456 433 if ( $subtitle) :457 if ( !empty($subtitle) ) : 434 458 435 459 $output = sprintf('<p %1$s>%2$s</p>',$subtitle_class,$subtitle); … … 456 480 $output = ''; 457 481 458 if ( $subtitle) :482 if ( !empty($subtitle) ) : 459 483 460 484 $output = sprintf('<div %1$s><p %2$s>%3$s</p></div>',$container_class,$subtitle_class,$subtitle); -
definitive-addons-for-elementor/trunk/languages/definitive-addons-for-elementor.pot
r2708457 r2720175 3 3 msgstr "" 4 4 "Project-Id-Version: definitive-addons-for-elementor\n" 5 "POT-Creation-Date: 2022-0 4-12 14:34+0600\n"5 "POT-Creation-Date: 2022-05-08 18:56+0600\n" 6 6 "PO-Revision-Date: 2020-03-12 14:48+0600\n" 7 7 "Last-Translator: \n" … … 30 30 31 31 #: definitive_adons_elementor.php:211 definitive_adons_elementor.php:235 32 #: inc/Elements/Wording.php:95 32 33 msgid "Elementor" 33 34 msgstr "" … … 59 60 #: inc/Elements/Post_Carousel.php:100 inc/Elements/Post_Grid.php:178 60 61 #: inc/Elements/Slider.php:87 inc/Elements/Tabs.php:62 61 #: inc/Elements/Testimonial.php:116 inc/Elements/Testimonial_Slider.php:10 662 #: inc/Elements/Testimonial.php:116 inc/Elements/Testimonial_Slider.php:102 62 63 msgid "Title" 63 64 msgstr "" … … 85 86 #: inc/Elements/Accordion.php:85 inc/Elements/CTA.php:169 86 87 #: inc/Elements/CTA.php:171 inc/Elements/Creative_Button.php:93 87 #: inc/Elements/Creative_Button.php:94 inc/Elements/Pricing_Table.php:24 988 #: inc/Elements/Pricing_Table.php:2 51inc/Elements/Slider.php:10788 #: inc/Elements/Creative_Button.php:94 inc/Elements/Pricing_Table.php:247 89 #: inc/Elements/Pricing_Table.php:249 inc/Elements/Slider.php:107 89 90 #: inc/Elements/Slider.php:108 inc/Elements/Tabs.php:82 90 91 #: inc/Elements/Teaser_Box.php:196 … … 98 99 99 100 #: inc/Elements/Accordion.php:98 inc/Elements/CTA.php:177 100 #: inc/Elements/Creative_Button.php:101 inc/Elements/Pricing_Table.php:25 7101 #: inc/Elements/Creative_Button.php:101 inc/Elements/Pricing_Table.php:255 101 102 #: inc/Elements/Tabs.php:95 inc/Elements/Teaser_Box.php:146 102 103 msgid "Button Link" … … 170 171 #: inc/Elements/Icon_Box.php:282 inc/Elements/Icon_Box.php:611 171 172 #: inc/Elements/Post_Carousel.php:403 inc/Elements/Post_Grid.php:501 172 #: inc/Elements/Post_Grid.php:637 inc/Elements/Pricing_Table.php:7 68173 #: inc/Elements/Pricing_Table.php:94 6inc/Elements/Promo-box.php:175173 #: inc/Elements/Post_Grid.php:637 inc/Elements/Pricing_Table.php:770 174 #: inc/Elements/Pricing_Table.php:948 inc/Elements/Promo-box.php:175 174 175 #: inc/Elements/Promo-box.php:350 inc/Elements/Social_Icon.php:146 175 176 #: inc/Elements/Social_Icon.php:380 inc/Elements/Staff_Member.php:628 … … 177 178 #: inc/Elements/Tabs.php:334 inc/Elements/Tabs.php:719 178 179 #: inc/Elements/Teaser_Box.php:518 inc/Elements/Teaser_Box.php:675 179 #: inc/Elements/Testimonial_Slider.php:6 32180 #: inc/Elements/Testimonial_Slider.php:7 82181 #: inc/Elements/heading-with-separator.php:174180 #: inc/Elements/Testimonial_Slider.php:626 181 #: inc/Elements/Testimonial_Slider.php:776 inc/Elements/heading-with-separator 182 #: - Copy.php:174 inc/Elements/heading-with-separator.php:171 182 183 msgid "Normal" 183 184 msgstr "" … … 189 190 #: inc/Elements/Filterable_Portfolio.php:381 190 191 #: inc/Elements/Filterable_Portfolio.php:765 inc/Elements/Post_Grid.php:509 191 #: inc/Elements/Pricing_Table.php:36 1inc/Elements/Social_Icon.php:153192 #: inc/Elements/Pricing_Table.php:363 inc/Elements/Social_Icon.php:153 192 193 #: inc/Elements/Social_Icon.php:203 inc/Elements/Social_Icon.php:387 193 194 #: inc/Elements/Social_Icon.php:437 inc/Elements/Staff_Member.php:456 … … 206 207 #: inc/Elements/Filterable_Portfolio.php:905 inc/Elements/Icon_Box.php:618 207 208 #: inc/Elements/Post_Carousel.php:422 inc/Elements/Post_Carousel.php:475 208 #: inc/Elements/Post_Grid.php:519 inc/Elements/Pricing_Table.php:29 8209 #: inc/Elements/Pricing_Table.php:38 3 inc/Elements/Pricing_Table.php:488210 #: inc/Elements/Pricing_Table.php:78 5inc/Elements/Promo-box.php:357209 #: inc/Elements/Post_Grid.php:519 inc/Elements/Pricing_Table.php:294 210 #: inc/Elements/Pricing_Table.php:385 inc/Elements/Pricing_Table.php:490 211 #: inc/Elements/Pricing_Table.php:787 inc/Elements/Promo-box.php:357 211 212 #: inc/Elements/Social_Icon.php:168 inc/Elements/Social_Icon.php:215 212 213 #: inc/Elements/Social_Icon.php:318 inc/Elements/Social_Icon.php:402 … … 227 228 #: inc/Elements/Icon_Box.php:653 inc/Elements/Post_Carousel.php:457 228 229 #: inc/Elements/Post_Grid.php:550 inc/Elements/Post_Grid.php:675 229 #: inc/Elements/Pricing_Table.php:81 7 inc/Elements/Pricing_Table.php:985230 #: inc/Elements/Pricing_Table.php:819 inc/Elements/Pricing_Table.php:987 230 231 #: inc/Elements/Promo-box.php:214 inc/Elements/Promo-box.php:388 231 232 #: inc/Elements/Social_Icon.php:196 inc/Elements/Social_Icon.php:430 … … 233 234 #: inc/Elements/Subscription.php:220 inc/Elements/Tabs.php:405 234 235 #: inc/Elements/Tabs.php:757 inc/Elements/Teaser_Box.php:568 235 #: inc/Elements/Teaser_Box.php:714 inc/Elements/Testimonial_Slider.php:6 71236 #: inc/Elements/Testimonial_Slider.php:8 33237 #: inc/Elements/heading-with-separator.php:205236 #: inc/Elements/Teaser_Box.php:714 inc/Elements/Testimonial_Slider.php:665 237 #: inc/Elements/Testimonial_Slider.php:827 inc/Elements/heading-with-separator 238 #: - Copy.php:205 inc/Elements/heading-with-separator.php:202 238 239 msgid "Hover" 239 240 msgstr "" … … 249 250 #: inc/Elements/Social_Icon.php:182 inc/Elements/Social_Icon.php:227 250 251 #: inc/Elements/Social_Icon.php:417 inc/Elements/Social_Icon.php:461 251 #: inc/Elements/Tabs.php:783 inc/Elements/Testimonial_Slider.php:69 8252 #: inc/Elements/Testimonial_Slider.php:8 72252 #: inc/Elements/Tabs.php:783 inc/Elements/Testimonial_Slider.php:692 253 #: inc/Elements/Testimonial_Slider.php:866 253 254 msgid "Border Color" 254 255 msgstr "" 255 256 256 #: inc/Elements/Accordion.php:359 inc/Elements/Pricing_Table.php:421 257 #: inc/Elements/Tabs.php:228 inc/Elements/heading-with-separator.php:266 257 #: inc/Elements/Accordion.php:359 inc/Elements/Pricing_Table.php:423 258 #: inc/Elements/Tabs.php:228 inc/Elements/heading-with-separator - 259 #: Copy.php:266 inc/Elements/heading-with-separator.php:263 258 260 msgid "Title Padding" 259 261 msgstr "" … … 262 264 #: inc/Elements/Category_List.php:198 inc/Elements/Counter.php:192 263 265 #: inc/Elements/Feature_list.php:218 inc/Elements/Icon_Box.php:227 264 #: inc/Elements/Icon_List.php:208 inc/Elements/Pricing_Table.php:53 3266 #: inc/Elements/Icon_List.php:208 inc/Elements/Pricing_Table.php:535 265 267 #: inc/Elements/Social_Icon.php:475 inc/Elements/Staff_Member.php:558 266 268 #: inc/Elements/Tabs.php:269 … … 272 274 #: inc/Elements/Creative_Button.php:400 inc/Elements/Feature_list.php:276 273 275 #: inc/Elements/Icon_Box.php:303 inc/Elements/Icon_List.php:230 274 #: inc/Elements/Pricing_Table.php:55 5inc/Elements/Staff_Member.php:636276 #: inc/Elements/Pricing_Table.php:557 inc/Elements/Staff_Member.php:636 275 277 #: inc/Elements/Tabs.php:292 276 278 msgid "Icon Color" … … 280 282 #: inc/Elements/Category_List.php:233 inc/Elements/Creative_Button.php:429 281 283 #: inc/Elements/Icon_Box.php:347 inc/Elements/Icon_List.php:242 282 #: inc/Elements/Pricing_Table.php:56 7inc/Elements/Staff_Member.php:688284 #: inc/Elements/Pricing_Table.php:569 inc/Elements/Staff_Member.php:688 283 285 #: inc/Elements/Tabs.php:304 284 286 msgid "Icon Hover Color" … … 287 289 #: inc/Elements/Accordion.php:440 inc/Elements/Accordion.php:512 288 290 #: inc/Elements/Testimonial.php:250 inc/Elements/Testimonial.php:329 289 #: inc/Elements/Testimonial_Slider.php:33 5290 #: inc/Elements/Testimonial_Slider.php:4 33291 #: inc/Elements/Testimonial_Slider.php:331 292 #: inc/Elements/Testimonial_Slider.php:427 291 293 msgid "Right Spacing" 292 294 msgstr "" 293 295 294 296 #: inc/Elements/Accordion.php:457 inc/Elements/Testimonial.php:268 295 #: inc/Elements/Testimonial_Slider.php:3 53297 #: inc/Elements/Testimonial_Slider.php:349 296 298 msgid "Left Spacing" 297 299 msgstr "" … … 348 350 #: inc/Elements/Accordion.php:724 inc/Elements/Contact_form_7.php:703 349 351 #: inc/Elements/Creative_Button.php:342 inc/Elements/Ninja_Forms.php:616 350 #: inc/Elements/Pricing_Table.php:7 49inc/Elements/Tabs.php:621352 #: inc/Elements/Pricing_Table.php:751 inc/Elements/Tabs.php:621 351 353 #: inc/Elements/Teaser_Box.php:499 inc/Elements/WpForm.php:657 352 354 msgid "Button Padding" … … 370 372 #: inc/Elements/Feature_list.php:565 inc/Elements/Filterable_Portfolio.php:878 371 373 #: inc/Elements/Flip_Box.php:456 inc/Elements/Icon_Box.php:633 372 #: inc/Elements/Post_Grid.php:655 inc/Elements/Pricing_Table.php:96 5374 #: inc/Elements/Post_Grid.php:655 inc/Elements/Pricing_Table.php:967 373 375 #: inc/Elements/Tabs.php:736 inc/Elements/Teaser_Box.php:694 374 #: inc/Elements/Testimonial.php:539 inc/Elements/Testimonial_Slider.php:6 51376 #: inc/Elements/Testimonial.php:539 inc/Elements/Testimonial_Slider.php:645 375 377 msgid "Container Shadow" 376 378 msgstr "" … … 428 430 #: inc/Elements/Ninja_Forms.php:147 inc/Elements/Pricing_Table.php:80 429 431 #: inc/Elements/Products.php:71 inc/Elements/Teaser_Box.php:106 430 #: inc/Elements/WpForm.php:134 inc/Elements/heading-with-separator.php:79 432 #: inc/Elements/WpForm.php:134 inc/Elements/heading-with-separator - 433 #: Copy.php:79 inc/Elements/heading-with-separator.php:79 431 434 msgid "Title HTML Tag" 432 435 msgstr "" … … 438 441 #: inc/Elements/Products.php:75 inc/Elements/Subscription.php:83 439 442 #: inc/Elements/Teaser_Box.php:111 inc/Elements/WpForm.php:139 443 #: inc/Elements/heading-with-separator - Copy.php:83 440 444 #: inc/Elements/heading-with-separator.php:83 441 445 msgid "H1" … … 448 452 #: inc/Elements/Products.php:76 inc/Elements/Subscription.php:84 449 453 #: inc/Elements/Teaser_Box.php:115 inc/Elements/WpForm.php:140 454 #: inc/Elements/heading-with-separator - Copy.php:84 450 455 #: inc/Elements/heading-with-separator.php:84 451 456 msgid "H2" … … 458 463 #: inc/Elements/Products.php:77 inc/Elements/Subscription.php:85 459 464 #: inc/Elements/Teaser_Box.php:119 inc/Elements/WpForm.php:141 465 #: inc/Elements/heading-with-separator - Copy.php:85 460 466 #: inc/Elements/heading-with-separator.php:85 461 467 msgid "H3" … … 468 474 #: inc/Elements/Products.php:78 inc/Elements/Subscription.php:86 469 475 #: inc/Elements/Teaser_Box.php:123 inc/Elements/WpForm.php:142 476 #: inc/Elements/heading-with-separator - Copy.php:86 470 477 #: inc/Elements/heading-with-separator.php:86 471 478 msgid "H4" … … 478 485 #: inc/Elements/Products.php:79 inc/Elements/Subscription.php:87 479 486 #: inc/Elements/Teaser_Box.php:127 inc/Elements/WpForm.php:143 487 #: inc/Elements/heading-with-separator - Copy.php:87 480 488 #: inc/Elements/heading-with-separator.php:87 481 489 msgid "H5" … … 488 496 #: inc/Elements/Products.php:80 inc/Elements/Subscription.php:88 489 497 #: inc/Elements/Teaser_Box.php:131 inc/Elements/WpForm.php:144 498 #: inc/Elements/heading-with-separator - Copy.php:88 490 499 #: inc/Elements/heading-with-separator.php:88 491 500 msgid "H6" … … 503 512 504 513 #: inc/Elements/CTA.php:188 inc/Elements/Creative_Button.php:357 505 #: inc/Elements/Pricing_Table.php:26 8inc/Elements/Slider.php:114514 #: inc/Elements/Pricing_Table.php:266 inc/Elements/Slider.php:114 506 515 msgid "Button Icon" 507 516 msgstr "" … … 551 560 #: inc/Elements/CTA.php:369 inc/Elements/Contact_form_7.php:781 552 561 #: inc/Elements/Creative_Button.php:275 inc/Elements/Post_Carousel.php:464 553 #: inc/Elements/Post_Grid.php:557 inc/Elements/Pricing_Table.php:82 4562 #: inc/Elements/Post_Grid.php:557 inc/Elements/Pricing_Table.php:826 554 563 #: inc/Elements/Products.php:311 inc/Elements/Slider.php:402 555 564 #: inc/Elements/Staff_Member.php:466 inc/Elements/Subscription.php:227 556 #: inc/Elements/Teaser_Box.php:575 inc/Elements/Testimonial_Slider.php:8 40565 #: inc/Elements/Teaser_Box.php:575 inc/Elements/Testimonial_Slider.php:834 557 566 #: inc/Elements/WpForm.php:628 558 567 msgid "Hover Color" … … 562 571 #: inc/Elements/Contact_form_7.php:791 inc/Elements/Creative_Button.php:286 563 572 #: inc/Elements/Post_Grid.php:567 inc/Elements/Post_Grid.php:682 564 #: inc/Elements/Pricing_Table.php:30 9 inc/Elements/Pricing_Table.php:835565 #: inc/Elements/Pricing_Table.php:99 2inc/Elements/Products.php:322573 #: inc/Elements/Pricing_Table.php:305 inc/Elements/Pricing_Table.php:837 574 #: inc/Elements/Pricing_Table.php:994 inc/Elements/Products.php:322 566 575 #: inc/Elements/Slider.php:413 inc/Elements/Staff_Member.php:699 567 576 #: inc/Elements/Subscription.php:238 inc/Elements/Teaser_Box.php:587 568 #: inc/Elements/Testimonial_Slider.php:8 51inc/Elements/WpForm.php:638577 #: inc/Elements/Testimonial_Slider.php:845 inc/Elements/WpForm.php:638 569 578 msgid "Hover Background Color" 570 579 msgstr "" … … 575 584 #: inc/Elements/Filterable_Portfolio.php:918 inc/Elements/Icon_Box.php:683 576 585 #: inc/Elements/Post_Carousel.php:500 inc/Elements/Post_Grid.php:580 577 #: inc/Elements/Post_Grid.php:694 inc/Elements/Pricing_Table.php:100 4586 #: inc/Elements/Post_Grid.php:694 inc/Elements/Pricing_Table.php:1006 578 587 #: inc/Elements/Staff_Member.php:710 inc/Elements/Subscription.php:249 579 588 #: inc/Elements/Tabs.php:773 inc/Elements/Teaser_Box.php:599 580 #: inc/Elements/Teaser_Box.php:732 inc/Elements/Testimonial_Slider.php:68 9589 #: inc/Elements/Teaser_Box.php:732 inc/Elements/Testimonial_Slider.php:683 581 590 msgid "Hover Shadow" 582 591 msgstr "" … … 589 598 #: inc/Elements/CTA.php:442 inc/Elements/Creative_Button.php:462 590 599 #: inc/Elements/Creative_Button.php:479 inc/Elements/Icon_List.php:294 591 #: inc/Elements/Icon_List.php:309 inc/Elements/Pricing_Table.php:60 3592 #: inc/Elements/Pricing_Table.php:6 18600 #: inc/Elements/Icon_List.php:309 inc/Elements/Pricing_Table.php:605 601 #: inc/Elements/Pricing_Table.php:620 593 602 msgid "Space between Icon & Text" 594 603 msgstr "" … … 601 610 #: inc/Elements/Feature_list.php:415 inc/Elements/Icon_Box.php:447 602 611 #: inc/Elements/Ninja_Forms.php:293 inc/Elements/Slider.php:298 603 #: inc/Elements/WpForm.php:280 inc/Elements/heading-with-separator.php:155 612 #: inc/Elements/WpForm.php:280 inc/Elements/heading-with-separator - 613 #: Copy.php:155 inc/Elements/heading-with-separator.php:152 604 614 msgid "Title Bottom Spacing" 605 615 msgstr "" … … 615 625 #: inc/Elements/Slider.php:277 inc/Elements/Tabs.php:185 616 626 #: inc/Elements/Teaser_Box.php:362 inc/Elements/Testimonial.php:387 617 #: inc/Elements/Testimonial_Slider.php:491 inc/Elements/WpForm.php:295 618 #: inc/Elements/heading-with-separator.php:181 627 #: inc/Elements/Testimonial_Slider.php:485 inc/Elements/WpForm.php:295 628 #: inc/Elements/heading-with-separator - Copy.php:181 629 #: inc/Elements/heading-with-separator.php:178 619 630 msgid "Title Color" 620 631 msgstr "" … … 627 638 #: inc/Elements/Post_Grid.php:313 inc/Elements/Promo-box.php:290 628 639 #: inc/Elements/Tabs.php:208 inc/Elements/Teaser_Box.php:373 629 #: inc/Elements/heading-with-separator.php:212 640 #: inc/Elements/heading-with-separator - Copy.php:212 641 #: inc/Elements/heading-with-separator.php:209 630 642 msgid "Title Hover Color" 631 643 msgstr "" … … 642 654 msgstr "" 643 655 644 #: inc/Elements/CTA.php:567 inc/Elements/Pricing_Table.php:71 0656 #: inc/Elements/CTA.php:567 inc/Elements/Pricing_Table.php:712 645 657 #: inc/Elements/Slider.php:504 646 658 msgid "Button" … … 657 669 #: inc/Elements/CTA.php:611 inc/Elements/Contact_form_7.php:716 658 670 #: inc/Elements/Creative_Button.php:212 inc/Elements/Post_Grid.php:494 659 #: inc/Elements/Pricing_Table.php:76 1inc/Elements/Subscription.php:164671 #: inc/Elements/Pricing_Table.php:763 inc/Elements/Subscription.php:164 660 672 #: inc/Elements/Teaser_Box.php:511 661 673 msgid "Button Colors" … … 664 676 #: inc/Elements/CTA.php:625 inc/Elements/Creative_Button.php:226 665 677 #: inc/Elements/Flip_Box.php:403 inc/Elements/Icon_List.php:337 666 #: inc/Elements/Pricing_Table.php:664 inc/Elements/Pricing_Table.php:774 667 #: inc/Elements/Staff_Member.php:529 inc/Elements/Subscription.php:178 668 #: inc/Elements/Subscription.php:313 inc/Elements/Testimonial.php:466 669 #: inc/Elements/Testimonial_Slider.php:573 inc/Elements/WpForm.php:606 678 #: inc/Elements/Pricing_Table.php:666 inc/Elements/Pricing_Table.php:776 679 #: inc/Elements/Social_Icon.php:590 inc/Elements/Staff_Member.php:529 680 #: inc/Elements/Subscription.php:178 inc/Elements/Subscription.php:313 681 #: inc/Elements/Testimonial.php:466 inc/Elements/Testimonial_Slider.php:567 682 #: inc/Elements/WpForm.php:606 670 683 msgid "Text Color" 671 684 msgstr "" … … 673 686 #: inc/Elements/CTA.php:648 inc/Elements/Contact_form_7.php:754 674 687 #: inc/Elements/Filterable_Portfolio.php:737 inc/Elements/Post_Grid.php:530 675 #: inc/Elements/Pricing_Table.php:79 7inc/Elements/Subscription.php:200688 #: inc/Elements/Pricing_Table.php:799 inc/Elements/Subscription.php:200 676 689 msgid "Button Shadow" 677 690 msgstr "" 678 691 679 #: inc/Elements/CTA.php:698 inc/Elements/Pricing_Table.php:84 6692 #: inc/Elements/CTA.php:698 inc/Elements/Pricing_Table.php:848 680 693 msgid "Button Hover Shadow" 681 694 msgstr "" … … 683 696 #: inc/Elements/CTA.php:708 inc/Elements/Contact_form_7.php:812 684 697 #: inc/Elements/Creative_Button.php:306 inc/Elements/Icon_Box.php:672 685 #: inc/Elements/Post_Grid.php:590 inc/Elements/Pricing_Table.php:85 6686 #: inc/Elements/Pricing_Table.php:101 4inc/Elements/Staff_Member.php:720698 #: inc/Elements/Post_Grid.php:590 inc/Elements/Pricing_Table.php:858 699 #: inc/Elements/Pricing_Table.php:1016 inc/Elements/Staff_Member.php:720 687 700 #: inc/Elements/Staff_Member.php:876 inc/Elements/Subscription.php:259 688 701 #: inc/Elements/Teaser_Box.php:609 inc/Elements/Teaser_Box.php:743 … … 695 708 #: inc/Elements/Filterable_Portfolio.php:814 inc/Elements/Icon_Box.php:696 696 709 #: inc/Elements/Post_Carousel.php:513 inc/Elements/Post_Grid.php:718 697 #: inc/Elements/Pricing_Table.php:89 4 inc/Elements/Pricing_Table.php:1027710 #: inc/Elements/Pricing_Table.php:896 inc/Elements/Pricing_Table.php:1029 698 711 #: inc/Elements/Products.php:357 inc/Elements/Promo-box.php:256 699 712 #: inc/Elements/Promo-box.php:429 inc/Elements/Social_Icon.php:545 … … 702 715 #: inc/Elements/Tabs.php:797 inc/Elements/Teaser_Box.php:280 703 716 #: inc/Elements/Teaser_Box.php:623 inc/Elements/Teaser_Box.php:758 704 #: inc/Elements/Testimonial.php:239 inc/Elements/Testimonial_Slider.php:39 7705 #: inc/Elements/Testimonial_Slider.php:7 11706 #: inc/Elements/Testimonial_Slider.php:88 7717 #: inc/Elements/Testimonial.php:239 inc/Elements/Testimonial_Slider.php:393 718 #: inc/Elements/Testimonial_Slider.php:705 719 #: inc/Elements/Testimonial_Slider.php:881 707 720 msgid "Border Radius" 708 721 msgstr "" 709 722 710 #: inc/Elements/CTA.php:735 inc/Elements/Pricing_Table.php:87 2723 #: inc/Elements/CTA.php:735 inc/Elements/Pricing_Table.php:874 711 724 msgid "Button Icon Size" 712 725 msgstr "" … … 723 736 #: inc/Elements/Feature_list.php:540 inc/Elements/Filterable_Portfolio.php:853 724 737 #: inc/Elements/Icon_Box.php:604 inc/Elements/Post_Grid.php:630 725 #: inc/Elements/Pricing_Table.php:9 39inc/Elements/Promo-box.php:343738 #: inc/Elements/Pricing_Table.php:941 inc/Elements/Promo-box.php:343 726 739 #: inc/Elements/Staff_Member.php:800 inc/Elements/Tabs.php:712 727 #: inc/Elements/Teaser_Box.php:668 inc/Elements/Testimonial_Slider.php:6 25740 #: inc/Elements/Teaser_Box.php:668 inc/Elements/Testimonial_Slider.php:619 728 741 msgid "Container Colors" 729 742 msgstr "" … … 871 884 #: inc/Elements/Category_List.php:371 inc/Elements/Contact_form_7.php:212 872 885 #: inc/Elements/Icon_Box.php:589 inc/Elements/Ninja_Forms.php:229 873 #: inc/Elements/Pricing_Table.php:92 6inc/Elements/Promo-box.php:330886 #: inc/Elements/Pricing_Table.php:928 inc/Elements/Promo-box.php:330 874 887 #: inc/Elements/Social_Icon.php:350 inc/Elements/Staff_Member.php:787 875 888 #: inc/Elements/Tabs.php:692 inc/Elements/Teaser_Box.php:656 876 #: inc/Elements/Testimonial.php:499 inc/Elements/Testimonial_Slider.php:60 6889 #: inc/Elements/Testimonial.php:499 inc/Elements/Testimonial_Slider.php:600 877 890 #: inc/Elements/WpForm.php:216 878 891 msgid "Container Padding" … … 947 960 #: inc/Elements/Teaser_Box.php:86 inc/Elements/Teaser_Box.php:161 948 961 #: inc/Elements/Teaser_Box.php:186 inc/Elements/Testimonial.php:127 949 #: inc/Elements/Testimonial.php:185 inc/Elements/Testimonial_Slider.php:117 950 #: inc/Elements/Testimonial_Slider.php:191 951 #: inc/Elements/Testimonial_Slider.php:261 952 #: inc/Elements/Testimonial_Slider.php:291 inc/Elements/WpForm.php:111 953 #: inc/Elements/WpForm.php:156 inc/Elements/heading-with-separator.php:99 962 #: inc/Elements/Testimonial.php:185 inc/Elements/Testimonial_Slider.php:113 963 #: inc/Elements/Testimonial_Slider.php:187 964 #: inc/Elements/Testimonial_Slider.php:257 965 #: inc/Elements/Testimonial_Slider.php:287 inc/Elements/WpForm.php:111 966 #: inc/Elements/WpForm.php:156 inc/Elements/heading-with-separator - 967 #: Copy.php:99 inc/Elements/heading-with-separator.php:99 954 968 msgid "Yes" 955 969 msgstr "" … … 972 986 #: inc/Elements/Teaser_Box.php:87 inc/Elements/Teaser_Box.php:162 973 987 #: inc/Elements/Teaser_Box.php:187 inc/Elements/Testimonial.php:128 974 #: inc/Elements/Testimonial.php:186 inc/Elements/Testimonial_Slider.php:118 975 #: inc/Elements/Testimonial_Slider.php:192 976 #: inc/Elements/Testimonial_Slider.php:262 977 #: inc/Elements/Testimonial_Slider.php:292 inc/Elements/WpForm.php:112 978 #: inc/Elements/WpForm.php:157 inc/Elements/heading-with-separator.php:100 988 #: inc/Elements/Testimonial.php:186 inc/Elements/Testimonial_Slider.php:114 989 #: inc/Elements/Testimonial_Slider.php:188 990 #: inc/Elements/Testimonial_Slider.php:258 991 #: inc/Elements/Testimonial_Slider.php:288 inc/Elements/WpForm.php:112 992 #: inc/Elements/WpForm.php:157 inc/Elements/heading-with-separator - 993 #: Copy.php:100 inc/Elements/heading-with-separator.php:100 979 994 msgid "No" 980 995 msgstr "" … … 991 1006 #: inc/Elements/Contact_form_7.php:141 inc/Elements/Ninja_Forms.php:158 992 1007 #: inc/Elements/Products.php:81 inc/Elements/Subscription.php:89 993 #: inc/Elements/WpForm.php:145 inc/Elements/heading-with-separator.php:89 1008 #: inc/Elements/WpForm.php:145 inc/Elements/heading-with-separator - 1009 #: Copy.php:89 inc/Elements/heading-with-separator.php:89 994 1010 msgid "Span" 995 1011 msgstr "" … … 1024 1040 #: inc/Elements/Icon_List.php:134 inc/Elements/Icon_List.php:161 1025 1041 #: inc/Elements/Ninja_Forms.php:197 inc/Elements/Post_Grid.php:111 1026 #: inc/Elements/Post_Grid.php:458 inc/Elements/Pricing_Table.php:20 51027 #: inc/Elements/Pricing_Table.php:23 2inc/Elements/Social_Icon.php:2831042 #: inc/Elements/Post_Grid.php:458 inc/Elements/Pricing_Table.php:203 1043 #: inc/Elements/Pricing_Table.php:230 inc/Elements/Social_Icon.php:283 1028 1044 #: inc/Elements/Staff_Member.php:135 inc/Elements/Subscription.php:113 1029 1045 #: inc/Elements/Teaser_Box.php:214 inc/Elements/Type.php:92 1030 1046 #: inc/Elements/Wording.php:140 inc/Elements/WpForm.php:184 1047 #: inc/Elements/heading-with-separator - Copy.php:115 1031 1048 #: inc/Elements/heading-with-separator.php:115 1032 1049 msgid "Left" … … 1040 1057 #: inc/Elements/Icon_List.php:138 inc/Elements/Ninja_Forms.php:201 1041 1058 #: inc/Elements/Post_Grid.php:115 inc/Elements/Post_Grid.php:462 1042 #: inc/Elements/Pricing_Table.php:20 9inc/Elements/Social_Icon.php:2871059 #: inc/Elements/Pricing_Table.php:207 inc/Elements/Social_Icon.php:287 1043 1060 #: inc/Elements/Staff_Member.php:139 inc/Elements/Subscription.php:117 1044 1061 #: inc/Elements/Teaser_Box.php:218 inc/Elements/Type.php:96 1045 1062 #: inc/Elements/Wording.php:144 inc/Elements/WpForm.php:188 1063 #: inc/Elements/heading-with-separator - Copy.php:119 1046 1064 #: inc/Elements/heading-with-separator.php:119 1047 1065 msgid "Center" … … 1055 1073 #: inc/Elements/Icon_List.php:142 inc/Elements/Icon_List.php:166 1056 1074 #: inc/Elements/Ninja_Forms.php:205 inc/Elements/Post_Grid.php:119 1057 #: inc/Elements/Post_Grid.php:466 inc/Elements/Pricing_Table.php:21 31058 #: inc/Elements/Pricing_Table.php:23 7inc/Elements/Social_Icon.php:2911075 #: inc/Elements/Post_Grid.php:466 inc/Elements/Pricing_Table.php:211 1076 #: inc/Elements/Pricing_Table.php:235 inc/Elements/Social_Icon.php:291 1059 1077 #: inc/Elements/Staff_Member.php:143 inc/Elements/Subscription.php:121 1060 1078 #: inc/Elements/Teaser_Box.php:222 inc/Elements/Type.php:100 1061 1079 #: inc/Elements/Wording.php:148 inc/Elements/WpForm.php:192 1080 #: inc/Elements/heading-with-separator - Copy.php:123 1062 1081 #: inc/Elements/heading-with-separator.php:123 1063 1082 msgid "Right" … … 1217 1236 #: inc/Elements/Staff_Member.php:441 inc/Elements/Teaser_Box.php:347 1218 1237 #: inc/Elements/Teaser_Box.php:425 inc/Elements/Testimonial.php:286 1219 #: inc/Elements/Testimonial_Slider.php:3 711238 #: inc/Elements/Testimonial_Slider.php:367 1220 1239 msgid "Bottom Spacing" 1221 1240 msgstr "" … … 1253 1272 #: inc/Elements/Staff_Member.php:129 inc/Elements/Subscription.php:107 1254 1273 #: inc/Elements/Teaser_Box.php:208 inc/Elements/Type.php:86 1255 #: inc/Elements/Wording.php:134 inc/Elements/heading-with-separator.php:109 1274 #: inc/Elements/Wording.php:134 inc/Elements/heading-with-separator - 1275 #: Copy.php:109 inc/Elements/heading-with-separator.php:109 1256 1276 msgid "Set Alignment" 1257 1277 msgstr "" … … 1323 1343 1324 1344 #: inc/Elements/Creative_Button.php:140 inc/Elements/Icon_List.php:155 1325 #: inc/Elements/Pricing_Table.php:22 61345 #: inc/Elements/Pricing_Table.php:224 1326 1346 msgid "Icon Position" 1327 1347 msgstr "" … … 1576 1596 #: inc/Elements/Filterable_Portfolio.php:512 1577 1597 #: inc/Elements/Post_Carousel.php:537 inc/Elements/Products.php:369 1578 #: inc/Elements/Slider.php:458 inc/Elements/Testimonial_Slider.php:89 81598 #: inc/Elements/Slider.php:458 inc/Elements/Testimonial_Slider.php:892 1579 1599 msgid "Top Spacing" 1580 1600 msgstr "" … … 1643 1663 #: inc/Elements/Flip_Box.php:84 inc/Elements/Staff_Member.php:99 1644 1664 #: inc/Elements/Teaser_Box.php:100 inc/Elements/Testimonial.php:107 1645 #: inc/Elements/Testimonial_Slider.php:9 71665 #: inc/Elements/Testimonial_Slider.php:93 1646 1666 msgid "John Doe" 1647 1667 msgstr "" … … 1707 1727 msgstr "" 1708 1728 1709 #: inc/Elements/Flip_Box.php:5221710 msgid "Avatar"1711 msgstr ""1712 1713 1729 #: inc/Elements/Icon_Box.php:30 1714 1730 msgid "DA: Icon Box" … … 1768 1784 1769 1785 #: inc/Elements/Icon_List.php:71 inc/Elements/Icon_List.php:200 1770 #: inc/Elements/Pricing_Table.php:148 inc/Elements/Pricing_Table.php:52 51786 #: inc/Elements/Pricing_Table.php:148 inc/Elements/Pricing_Table.php:527 1771 1787 msgid "List Icon" 1772 1788 msgstr "" … … 1812 1828 msgstr "" 1813 1829 1814 #: inc/Elements/Icon_List.php:347 inc/Elements/Pricing_Table.php:68 61830 #: inc/Elements/Icon_List.php:347 inc/Elements/Pricing_Table.php:688 1815 1831 msgid "Text Hover Color" 1816 1832 msgstr "" … … 1827 1843 #: inc/Elements/Promo-box.php:71 inc/Elements/Slider.php:64 1828 1844 #: inc/Elements/Staff_Member.php:74 inc/Elements/Teaser_Box.php:241 1829 #: inc/Elements/Testimonial.php:72 inc/Elements/Testimonial_Slider.php:7 41845 #: inc/Elements/Testimonial.php:72 inc/Elements/Testimonial_Slider.php:70 1830 1846 msgid "Image" 1831 1847 msgstr "" … … 1849 1865 #: inc/Elements/Image_Overlay.php:147 inc/Elements/Slider.php:74 1850 1866 #: inc/Elements/Social_Icon.php:82 inc/Elements/Testimonial.php:94 1851 #: inc/Elements/Testimonial_Slider.php:8 41867 #: inc/Elements/Testimonial_Slider.php:80 1852 1868 msgid "Link" 1853 1869 msgstr "" … … 1895 1911 1896 1912 #: inc/Elements/Image_Overlay.php:400 inc/Elements/Testimonial.php:304 1897 #: inc/Elements/Testimonial_Slider.php:40 91913 #: inc/Elements/Testimonial_Slider.php:405 1898 1914 msgid "Image Shadow" 1899 1915 msgstr "" … … 1948 1964 msgstr "" 1949 1965 1950 #: inc/Elements/Ninja_Forms.php:554 inc/Elements/Pricing_Table.php:73 31966 #: inc/Elements/Ninja_Forms.php:554 inc/Elements/Pricing_Table.php:735 1951 1967 #: inc/Elements/Teaser_Box.php:484 inc/Elements/WpForm.php:594 1952 1968 msgid "Button Bottom Spacing" … … 1966 1982 msgstr "" 1967 1983 1968 #: inc/Elements/Popular_Post.php:1801969 msgid "Blog Post Thumbnail"1970 msgstr ""1971 1972 1984 #: inc/Elements/Post_Carousel.php:26 1973 1985 msgid "DA: Post Carousel" … … 1983 1995 1984 1996 #: inc/Elements/Post_Carousel.php:122 inc/Elements/Products.php:184 1985 #: inc/Elements/Testimonial_Slider.php:2 301997 #: inc/Elements/Testimonial_Slider.php:226 1986 1998 msgid "No of Slide per Page" 1987 1999 msgstr "" … … 1992 2004 1993 2005 #: inc/Elements/Post_Carousel.php:135 inc/Elements/Slider.php:158 1994 #: inc/Elements/Testimonial_Slider.php:24 42006 #: inc/Elements/Testimonial_Slider.php:240 1995 2007 msgid "Animation Speed" 1996 2008 msgstr "" 1997 2009 1998 2010 #: inc/Elements/Post_Carousel.php:141 inc/Elements/Slider.php:164 1999 #: inc/Elements/Testimonial_Slider.php:2 502011 #: inc/Elements/Testimonial_Slider.php:246 2000 2012 msgid "Value in milliseconds. Default:300" 2001 2013 msgstr "" 2002 2014 2003 2015 #: inc/Elements/Post_Carousel.php:149 inc/Elements/Slider.php:172 2004 #: inc/Elements/Testimonial_Slider.php:25 82016 #: inc/Elements/Testimonial_Slider.php:254 2005 2017 msgid "Slider Autoplay?" 2006 2018 msgstr "" 2007 2019 2008 2020 #: inc/Elements/Post_Carousel.php:162 inc/Elements/Slider.php:185 2009 #: inc/Elements/Testimonial_Slider.php:2 712021 #: inc/Elements/Testimonial_Slider.php:267 2010 2022 msgid "Autoplay Speed" 2011 2023 msgstr "" 2012 2024 2013 2025 #: inc/Elements/Post_Carousel.php:171 inc/Elements/Slider.php:194 2014 #: inc/Elements/Testimonial_Slider.php:2 802026 #: inc/Elements/Testimonial_Slider.php:276 2015 2027 msgid "Value in milliseconds. Default:3000" 2016 2028 msgstr "" 2017 2029 2018 2030 #: inc/Elements/Post_Carousel.php:180 inc/Elements/Slider.php:203 2019 #: inc/Elements/Testimonial_Slider.php:28 92031 #: inc/Elements/Testimonial_Slider.php:285 2020 2032 msgid "Infinite Loop?" 2021 2033 msgstr "" … … 2046 2058 2047 2059 #: inc/Elements/Post_Carousel.php:365 inc/Elements/Products.php:257 2048 #: inc/Elements/Slider.php:348 inc/Elements/Testimonial_Slider.php:7 252060 #: inc/Elements/Slider.php:348 inc/Elements/Testimonial_Slider.php:719 2049 2061 msgid "Navigation" 2050 2062 msgstr "" 2051 2063 2052 2064 #: inc/Elements/Post_Carousel.php:373 inc/Elements/Products.php:266 2053 #: inc/Elements/Slider.php:355 inc/Elements/Testimonial_Slider.php:7 332065 #: inc/Elements/Slider.php:355 inc/Elements/Testimonial_Slider.php:727 2054 2066 msgid "Arrow Size" 2055 2067 msgstr "" 2056 2068 2057 #: inc/Elements/Post_Carousel.php:396 inc/Elements/Testimonial_Slider.php:7 752069 #: inc/Elements/Post_Carousel.php:396 inc/Elements/Testimonial_Slider.php:769 2058 2070 msgid "Arrow Colors" 2059 2071 msgstr "" 2060 2072 2061 2073 #: inc/Elements/Post_Carousel.php:410 inc/Elements/Products.php:288 2062 #: inc/Elements/Slider.php:378 inc/Elements/Testimonial_Slider.php:78 92074 #: inc/Elements/Slider.php:378 inc/Elements/Testimonial_Slider.php:783 2063 2075 msgid "Arrow Color" 2064 2076 msgstr "" 2065 2077 2066 2078 #: inc/Elements/Post_Carousel.php:525 inc/Elements/Products.php:333 2067 #: inc/Elements/Slider.php:424 inc/Elements/Testimonial_Slider.php:75 62079 #: inc/Elements/Slider.php:424 inc/Elements/Testimonial_Slider.php:750 2068 2080 msgid "Arrow Padding" 2069 2081 msgstr "" … … 2141 2153 msgstr "" 2142 2154 2143 #: inc/Elements/Pricing_Table.php:73 inc/Elements/Pricing_Table.php:35 32155 #: inc/Elements/Pricing_Table.php:73 inc/Elements/Pricing_Table.php:355 2144 2156 msgid "Table Title" 2145 2157 msgstr "" … … 2169 2181 msgstr "" 2170 2182 2171 #: inc/Elements/Pricing_Table.php:16 52183 #: inc/Elements/Pricing_Table.php:163 2172 2184 msgid "Pricing List Text" 2173 2185 msgstr "" 2174 2186 2175 #: inc/Elements/Pricing_Table.php:17 42187 #: inc/Elements/Pricing_Table.php:172 2176 2188 msgid "Pricing Table Item" 2177 2189 msgstr "" 2178 2190 2191 #: inc/Elements/Pricing_Table.php:177 2192 msgid "4 GB SSD Storage" 2193 msgstr "" 2194 2179 2195 #: inc/Elements/Pricing_Table.php:179 2180 msgid " 4 GB SSD Storage"2196 msgid "LiteSpeed Web Server" 2181 2197 msgstr "" 2182 2198 2183 2199 #: inc/Elements/Pricing_Table.php:181 2184 msgid " LiteSpeed Web Server"2200 msgid "4 Addon Domains" 2185 2201 msgstr "" 2186 2202 2187 2203 #: inc/Elements/Pricing_Table.php:183 2188 msgid " 4 Addon Domains"2204 msgid "FREE Weekly Backup" 2189 2205 msgstr "" 2190 2206 2191 2207 #: inc/Elements/Pricing_Table.php:185 2192 msgid "FREE Weekly Backup"2193 msgstr ""2194 2195 #: inc/Elements/Pricing_Table.php:1872196 2208 msgid "FREE SSL Life Time" 2197 2209 msgstr "" 2198 2210 2199 #: inc/Elements/Pricing_Table.php:19 92211 #: inc/Elements/Pricing_Table.php:197 2200 2212 msgid "Pricing Table Align" 2201 2213 msgstr "" 2202 2214 2203 #: inc/Elements/Pricing_Table.php:2 902215 #: inc/Elements/Pricing_Table.php:286 2204 2216 msgid "Table Header" 2205 2217 msgstr "" 2206 2218 2207 #: inc/Elements/Pricing_Table.php:3 212219 #: inc/Elements/Pricing_Table.php:317 2208 2220 msgid "Header Padding" 2209 2221 msgstr "" 2210 2222 2211 #: inc/Elements/Pricing_Table.php:33 32223 #: inc/Elements/Pricing_Table.php:335 2212 2224 msgid "Header Bottom Spacing" 2213 2225 msgstr "" 2214 2226 2215 #: inc/Elements/Pricing_Table.php:37 22227 #: inc/Elements/Pricing_Table.php:374 2216 2228 msgid "Separator Color" 2217 2229 msgstr "" 2218 2230 2219 #: inc/Elements/Pricing_Table.php:43 62231 #: inc/Elements/Pricing_Table.php:438 2220 2232 msgid "Table Pricing" 2221 2233 msgstr "" 2222 2234 2223 #: inc/Elements/Pricing_Table.php:44 42235 #: inc/Elements/Pricing_Table.php:446 2224 2236 msgid "Price Color" 2225 2237 msgstr "" 2226 2238 2227 #: inc/Elements/Pricing_Table.php:46 62239 #: inc/Elements/Pricing_Table.php:468 2228 2240 msgid "Price Text Color" 2229 2241 msgstr "" 2230 2242 2231 #: inc/Elements/Pricing_Table.php:50 02243 #: inc/Elements/Pricing_Table.php:502 2232 2244 msgid "Price Padding" 2233 2245 msgstr "" 2234 2246 2235 #: inc/Elements/Pricing_Table.php:51 12247 #: inc/Elements/Pricing_Table.php:513 2236 2248 msgid "Bottom Separator Color" 2237 2249 msgstr "" 2238 2250 2239 #: inc/Elements/Pricing_Table.php:58 12251 #: inc/Elements/Pricing_Table.php:583 2240 2252 msgid "Table List Spacing" 2241 2253 msgstr "" 2242 2254 2243 #: inc/Elements/Pricing_Table.php:5 892255 #: inc/Elements/Pricing_Table.php:591 2244 2256 msgid "Table Item Bottom Spacing" 2245 2257 msgstr "" 2246 2258 2247 #: inc/Elements/Pricing_Table.php:63 42259 #: inc/Elements/Pricing_Table.php:636 2248 2260 msgid "Table List Container Bottom Spacing" 2249 2261 msgstr "" 2250 2262 2251 #: inc/Elements/Pricing_Table.php:65 52263 #: inc/Elements/Pricing_Table.php:657 2252 2264 msgid "Table List Text" 2253 2265 msgstr "" 2254 2266 2255 #: inc/Elements/Pricing_Table.php:67 52267 #: inc/Elements/Pricing_Table.php:677 2256 2268 msgid "List Item Separator Color" 2257 2269 msgstr "" 2258 2270 2259 #: inc/Elements/Pricing_Table.php:7 182271 #: inc/Elements/Pricing_Table.php:720 2260 2272 msgid "Space between Button Text & Icon" 2261 2273 msgstr "" 2262 2274 2263 #: inc/Elements/Pricing_Table.php:9 182275 #: inc/Elements/Pricing_Table.php:920 2264 2276 msgid "Pricing Table Content" 2265 2277 msgstr "" … … 2335 2347 2336 2348 #: inc/Elements/Products.php:174 inc/Elements/Slider.php:150 2337 #: inc/Elements/Testimonial_Slider.php:2 222349 #: inc/Elements/Testimonial_Slider.php:218 2338 2350 msgid "Slider Navigation Settings" 2339 2351 msgstr "" … … 2352 2364 2353 2365 #: inc/Elements/Products.php:300 inc/Elements/Slider.php:390 2354 #: inc/Elements/Testimonial_Slider.php: 8012366 #: inc/Elements/Testimonial_Slider.php:795 2355 2367 msgid "Arrow Background Color" 2356 2368 msgstr "" 2357 2369 2358 2370 #: inc/Elements/Products.php:385 inc/Elements/Slider.php:491 2359 #: inc/Elements/Testimonial_Slider.php:8 132360 #: inc/Elements/Testimonial_Slider.php:8 622371 #: inc/Elements/Testimonial_Slider.php:807 2372 #: inc/Elements/Testimonial_Slider.php:856 2361 2373 msgid "Arrow Shadow" 2362 2374 msgstr "" … … 2570 2582 msgstr "" 2571 2583 2572 #: inc/Elements/Social_Icon.php: 5912584 #: inc/Elements/Social_Icon.php:603 2573 2585 msgid "Typography" 2574 2586 msgstr "" 2575 2587 2576 #: inc/Elements/Social_Icon.php:6 012588 #: inc/Elements/Social_Icon.php:613 2577 2589 msgid "Space between Name and Icon" 2578 2590 msgstr "" … … 2595 2607 2596 2608 #: inc/Elements/Staff_Member.php:110 inc/Elements/Testimonial.php:117 2597 #: inc/Elements/Testimonial_Slider.php:10 72609 #: inc/Elements/Testimonial_Slider.php:103 2598 2610 msgid "Developer" 2599 2611 msgstr "" … … 2646 2658 2647 2659 #: inc/Elements/Staff_Member.php:380 inc/Elements/Testimonial.php:344 2648 #: inc/Elements/Testimonial_Slider.php:44 82660 #: inc/Elements/Testimonial_Slider.php:442 2649 2661 msgid "Name Color" 2650 2662 msgstr "" 2651 2663 2652 2664 #: inc/Elements/Staff_Member.php:392 inc/Elements/Testimonial.php:355 2653 #: inc/Elements/Testimonial_Slider.php:45 92665 #: inc/Elements/Testimonial_Slider.php:453 2654 2666 msgid "Name Hover Color" 2655 2667 msgstr "" … … 2716 2728 2717 2729 #: inc/Elements/Subscription.php:301 inc/Elements/Testimonial.php:454 2718 #: inc/Elements/Testimonial_Slider.php:5 612730 #: inc/Elements/Testimonial_Slider.php:555 2719 2731 msgid "Text Bottom Spacing" 2720 2732 msgstr "" … … 2752 2764 msgstr "" 2753 2765 2754 #: inc/Elements/Tabs.php:196 inc/Elements/heading-with-separator.php:192 2766 #: inc/Elements/Tabs.php:196 inc/Elements/heading-with-separator - 2767 #: Copy.php:192 inc/Elements/heading-with-separator.php:189 2755 2768 msgid "Title Background Color" 2756 2769 msgstr "" … … 2860 2873 msgstr "" 2861 2874 2862 #: inc/Elements/Testimonial.php:97 inc/Elements/Testimonial_Slider.php:8 72875 #: inc/Elements/Testimonial.php:97 inc/Elements/Testimonial_Slider.php:83 2863 2876 msgid "https://softfirm.com" 2864 2877 msgstr "" 2865 2878 2866 2879 #: inc/Elements/Testimonial.php:106 inc/Elements/Testimonial.php:319 2867 #: inc/Elements/Testimonial_Slider.php:9 62868 #: inc/Elements/Testimonial_Slider.php:4 232880 #: inc/Elements/Testimonial_Slider.php:92 2881 #: inc/Elements/Testimonial_Slider.php:419 2869 2882 msgid "Reviewer Name" 2870 2883 msgstr "" 2871 2884 2872 #: inc/Elements/Testimonial.php:124 inc/Elements/Testimonial_Slider.php:11 42885 #: inc/Elements/Testimonial.php:124 inc/Elements/Testimonial_Slider.php:110 2873 2886 msgid "Show/Hide Organization" 2874 2887 msgstr "" 2875 2888 2876 #: inc/Elements/Testimonial.php:140 inc/Elements/Testimonial_Slider.php:1 302889 #: inc/Elements/Testimonial.php:140 inc/Elements/Testimonial_Slider.php:126 2877 2890 msgid "Organization" 2878 2891 msgstr "" 2879 2892 2880 #: inc/Elements/Testimonial.php:141 inc/Elements/Testimonial_Slider.php:1 312893 #: inc/Elements/Testimonial.php:141 inc/Elements/Testimonial_Slider.php:127 2881 2894 msgid "Softfirm" 2882 2895 msgstr "" 2883 2896 2884 2897 #: inc/Elements/Testimonial.php:156 inc/Elements/Testimonial.php:445 2885 #: inc/Elements/Testimonial_Slider.php:1 432886 #: inc/Elements/Testimonial_Slider.php:5 522898 #: inc/Elements/Testimonial_Slider.php:139 2899 #: inc/Elements/Testimonial_Slider.php:546 2887 2900 msgid "Reviewer Text" 2888 2901 msgstr "" 2889 2902 2890 #: inc/Elements/Testimonial.php:157 inc/Elements/Testimonial_Slider.php:14 42903 #: inc/Elements/Testimonial.php:157 inc/Elements/Testimonial_Slider.php:140 2891 2904 msgid "" 2892 2905 "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " … … 2894 2907 msgstr "" 2895 2908 2896 #: inc/Elements/Testimonial.php:164 inc/Elements/Testimonial_Slider.php: 2022909 #: inc/Elements/Testimonial.php:164 inc/Elements/Testimonial_Slider.php:198 2897 2910 msgid "Testimonial Layout" 2898 2911 msgstr "" … … 2914 2927 msgstr "" 2915 2928 2916 #: inc/Elements/Testimonial.php:182 inc/Elements/Testimonial_Slider.php:18 82929 #: inc/Elements/Testimonial.php:182 inc/Elements/Testimonial_Slider.php:184 2917 2930 msgid "Show/Hide Quote" 2918 2931 msgstr "" 2919 2932 2920 #: inc/Elements/Testimonial.php:202 inc/Elements/Testimonial_Slider.php:30 52933 #: inc/Elements/Testimonial.php:202 inc/Elements/Testimonial_Slider.php:301 2921 2934 msgid "Reviewer Image" 2922 2935 msgstr "" 2923 2936 2924 #: inc/Elements/Testimonial.php:209 inc/Elements/Testimonial_Slider.php:3 122937 #: inc/Elements/Testimonial.php:209 inc/Elements/Testimonial_Slider.php:308 2925 2938 msgid "Image Size" 2926 2939 msgstr "" 2927 2940 2928 #: inc/Elements/Testimonial.php:378 inc/Elements/Testimonial_Slider.php:4 822941 #: inc/Elements/Testimonial.php:378 inc/Elements/Testimonial_Slider.php:476 2929 2942 msgid "Reviewer Title" 2930 2943 msgstr "" 2931 2944 2932 #: inc/Elements/Testimonial.php:411 inc/Elements/Testimonial_Slider.php:51 62945 #: inc/Elements/Testimonial.php:411 inc/Elements/Testimonial_Slider.php:510 2933 2946 msgid "Reviewer Organizaiton" 2934 2947 msgstr "" 2935 2948 2936 #: inc/Elements/Testimonial.php:422 inc/Elements/Testimonial_Slider.php:52 92949 #: inc/Elements/Testimonial.php:422 inc/Elements/Testimonial_Slider.php:523 2937 2950 msgid "Organization Color" 2938 2951 msgstr "" 2939 2952 2940 #: inc/Elements/Testimonial.php:491 inc/Elements/Testimonial_Slider.php:59 82953 #: inc/Elements/Testimonial.php:491 inc/Elements/Testimonial_Slider.php:592 2941 2954 msgid "Testimonial Container" 2942 2955 msgstr "" … … 2946 2959 msgstr "" 2947 2960 2948 #: inc/Elements/Testimonial_Slider.php: 632961 #: inc/Elements/Testimonial_Slider.php:59 2949 2962 msgid "Testimonial Slider" 2950 2963 msgstr "" 2951 2964 2952 #: inc/Elements/Testimonial_Slider.php:1 532965 #: inc/Elements/Testimonial_Slider.php:149 2953 2966 msgid "Testimonial Items" 2954 2967 msgstr "" 2955 2968 2956 #: inc/Elements/Testimonial_Slider.php:23 62969 #: inc/Elements/Testimonial_Slider.php:232 2957 2970 msgid "Default:1" 2958 2971 msgstr "" … … 2995 3008 2996 3009 #: inc/Elements/Wording.php:56 2997 msgid " Wording"3010 msgid "Multi-Color Text" 2998 3011 msgstr "" 2999 3012 … … 3004 3017 3005 3018 #: inc/Elements/Wording.php:67 3006 msgid " Word1"3019 msgid "Definitive" 3007 3020 msgstr "" 3008 3021 3009 3022 #: inc/Elements/Wording.php:77 3010 msgid " Word2"3023 msgid "Addons" 3011 3024 msgstr "" 3012 3025 3013 3026 #: inc/Elements/Wording.php:86 3014 msgid "Word3" 3015 msgstr "" 3016 3017 #: inc/Elements/Wording.php:95 3018 msgid "Word4" 3027 msgid "For" 3019 3028 msgstr "" 3020 3029 … … 3168 3177 msgstr "" 3169 3178 3179 #: inc/Elements/heading-with-separator - Copy.php:31 3170 3180 #: inc/Elements/heading-with-separator.php:31 3171 3181 msgid "DA: Heading with Separator" 3172 3182 msgstr "" 3173 3183 3184 #: inc/Elements/heading-with-separator - Copy.php:61 3174 3185 #: inc/Elements/heading-with-separator.php:61 3175 3186 msgid "Heading with Separator" 3176 3187 msgstr "" 3177 3188 3189 #: inc/Elements/heading-with-separator - Copy.php:71 3178 3190 #: inc/Elements/heading-with-separator.php:71 3179 3191 msgid "Heading Text" 3180 3192 msgstr "" 3181 3193 3194 #: inc/Elements/heading-with-separator - Copy.php:72 3182 3195 #: inc/Elements/heading-with-separator.php:72 3183 3196 msgid "I am heading or text" 3184 3197 msgstr "" 3185 3198 3199 #: inc/Elements/heading-with-separator - Copy.php:96 3186 3200 #: inc/Elements/heading-with-separator.php:96 3187 3201 msgid "Show/Hide Separator" 3188 3202 msgstr "" 3189 3203 3190 #: inc/Elements/heading-with-separator.php:144 3204 #: inc/Elements/heading-with-separator - Copy.php:144 3205 #: inc/Elements/heading-with-separator.php:141 3191 3206 msgid "Heading" 3192 3207 msgstr "" 3193 3208 3194 #: inc/Elements/heading-with-separator.php:167 3209 #: inc/Elements/heading-with-separator - Copy.php:167 3210 #: inc/Elements/heading-with-separator.php:164 3195 3211 msgid "Title Colors" 3196 3212 msgstr "" 3197 3213 3198 #: inc/Elements/heading-with-separator.php:223 3214 #: inc/Elements/heading-with-separator - Copy.php:223 3215 #: inc/Elements/heading-with-separator.php:220 3199 3216 msgid "Title Background Hover Color" 3200 3217 msgstr "" 3201 3218 3202 #: inc/Elements/heading-with-separator.php:280 3219 #: inc/Elements/heading-with-separator - Copy.php:280 3220 #: inc/Elements/heading-with-separator.php:277 3203 3221 msgid "Heading Separator" 3204 3222 msgstr "" 3205 3223 3206 #: inc/Elements/heading-with-separator.php:287 3224 #: inc/Elements/heading-with-separator - Copy.php:287 3225 #: inc/Elements/heading-with-separator.php:284 3207 3226 msgid "separator Color" 3208 3227 msgstr "" 3209 3228 3210 #: inc/Elements/heading-with-separator.php:299 3229 #: inc/Elements/heading-with-separator - Copy.php:299 3230 #: inc/Elements/heading-with-separator.php:296 3211 3231 msgid "Separator Hover Color" 3212 3232 msgstr "" 3213 3233 3214 #: inc/Elements/heading-with-separator.php:311 3234 #: inc/Elements/heading-with-separator - Copy.php:311 3235 #: inc/Elements/heading-with-separator.php:308 3215 3236 msgid "Separator Width" 3216 3237 msgstr "" 3217 3238 3218 #: inc/Elements/heading-with-separator.php:326 3239 #: inc/Elements/heading-with-separator - Copy.php:326 3240 #: inc/Elements/heading-with-separator.php:323 3219 3241 msgid "Separator Height" 3220 3242 msgstr "" 3221 3243 3222 #: inc/Elements/heading-with-separator.php:341 3244 #: inc/Elements/heading-with-separator - Copy.php:341 3245 #: inc/Elements/heading-with-separator.php:338 3223 3246 msgid "Separator Bottom Spacing" 3224 3247 msgstr "" 3225 3248 3226 #: inc/Reuses/Da_Post.php:111 inc/Reuses/Da_Post.php: 4763249 #: inc/Reuses/Da_Post.php:111 inc/Reuses/Da_Post.php:585 3227 3250 #, php-format 3228 3251 msgid "Continue reading%s" 3229 3252 msgstr "" 3230 3253 3231 #: inc/Reuses/Da_Post.php:120 inc/Reuses/Da_Post.php: 4863254 #: inc/Reuses/Da_Post.php:120 inc/Reuses/Da_Post.php:595 3232 3255 msgid ", " 3233 3256 msgstr "" 3234 3257 3235 #: inc/Reuses/Da_Post.php:122 inc/Reuses/Da_Post.php: 4883258 #: inc/Reuses/Da_Post.php:122 inc/Reuses/Da_Post.php:597 3236 3259 #, php-format 3237 3260 msgid "Tagged %1$s" 3238 3261 msgstr "" 3239 3262 3240 #: inc/Reuses/Da_Post.php:512 3263 #: inc/Reuses/Da_Post.php:361 3264 msgid "Blog Post Thumbnail" 3265 msgstr "" 3266 3267 #: inc/Reuses/Da_Post.php:621 3241 3268 msgid "Post is not exist" 3242 3269 msgstr "" … … 3252 3279 msgstr "" 3253 3280 3254 #: inc/Reuses/Reuse.php: 480 inc/Reuses/Reuse.php:500 inc/Reuses/Reuse.php:5193281 #: inc/Reuses/Reuse.php:504 inc/Reuses/Reuse.php:524 inc/Reuses/Reuse.php:543 3255 3282 msgid "No Form found. Create New form " 3256 3283 msgstr "" 3257 3284 3258 #: inc/Reuses/Reuse.php: 481 inc/Reuses/Reuse.php:5203285 #: inc/Reuses/Reuse.php:505 inc/Reuses/Reuse.php:544 3259 3286 msgid "Click here" 3260 3287 msgstr "" 3261 3288 3262 #: inc/Reuses/Reuse.php:6 043289 #: inc/Reuses/Reuse.php:628 3263 3290 msgid "none" 3264 3291 msgstr "" 3265 3292 3266 #: inc/Reuses/Reuse.php:6 053293 #: inc/Reuses/Reuse.php:629 3267 3294 msgid "bounce" 3268 3295 msgstr "" 3269 3296 3270 #: inc/Reuses/Reuse.php:6 063297 #: inc/Reuses/Reuse.php:630 3271 3298 msgid "flash" 3272 3299 msgstr "" 3273 3300 3274 #: inc/Reuses/Reuse.php:6 073301 #: inc/Reuses/Reuse.php:631 3275 3302 msgid "pulse" 3276 3303 msgstr "" 3277 3304 3278 #: inc/Reuses/Reuse.php:6 083305 #: inc/Reuses/Reuse.php:632 3279 3306 msgid "rubberBand" 3280 3307 msgstr "" 3281 3308 3282 #: inc/Reuses/Reuse.php:6 093309 #: inc/Reuses/Reuse.php:633 3283 3310 msgid "shake" 3284 3311 msgstr "" 3285 3312 3286 #: inc/Reuses/Reuse.php:6 103313 #: inc/Reuses/Reuse.php:634 3287 3314 msgid "headShake" 3288 3315 msgstr "" 3289 3316 3290 #: inc/Reuses/Reuse.php:6 113317 #: inc/Reuses/Reuse.php:635 3291 3318 msgid "swing" 3292 3319 msgstr "" 3293 3320 3294 #: inc/Reuses/Reuse.php:6 123321 #: inc/Reuses/Reuse.php:636 3295 3322 msgid "tada" 3296 3323 msgstr "" 3297 3324 3298 #: inc/Reuses/Reuse.php:6 133325 #: inc/Reuses/Reuse.php:637 3299 3326 msgid "wobble" 3300 3327 msgstr "" 3301 3328 3302 #: inc/Reuses/Reuse.php:6 143329 #: inc/Reuses/Reuse.php:638 3303 3330 msgid "jello" 3304 3331 msgstr "" 3305 3332 3306 #: inc/Reuses/Reuse.php:6 153333 #: inc/Reuses/Reuse.php:639 3307 3334 msgid "bounceIn" 3308 3335 msgstr "" 3309 3336 3310 #: inc/Reuses/Reuse.php:6 163337 #: inc/Reuses/Reuse.php:640 3311 3338 msgid "bounceInDown" 3312 3339 msgstr "" 3313 3340 3314 #: inc/Reuses/Reuse.php:6 17 inc/Reuses/Reuse.php:6183341 #: inc/Reuses/Reuse.php:641 inc/Reuses/Reuse.php:642 3315 3342 msgid "bounceInLeft" 3316 3343 msgstr "" 3317 3344 3318 #: inc/Reuses/Reuse.php:6 193345 #: inc/Reuses/Reuse.php:643 3319 3346 msgid "bounceInUp" 3320 3347 msgstr "" 3321 3348 3322 #: inc/Reuses/Reuse.php:6 203349 #: inc/Reuses/Reuse.php:644 3323 3350 msgid "bounceOut" 3324 3351 msgstr "" 3325 3352 3326 #: inc/Reuses/Reuse.php:6 213353 #: inc/Reuses/Reuse.php:645 3327 3354 msgid "bounceOutDown" 3328 3355 msgstr "" 3329 3356 3330 #: inc/Reuses/Reuse.php:6 223357 #: inc/Reuses/Reuse.php:646 3331 3358 msgid "bounceOutLeft" 3332 3359 msgstr "" 3333 3360 3334 #: inc/Reuses/Reuse.php:6 233361 #: inc/Reuses/Reuse.php:647 3335 3362 msgid "bounceOutRight" 3336 3363 msgstr "" 3337 3364 3338 #: inc/Reuses/Reuse.php:6 243365 #: inc/Reuses/Reuse.php:648 3339 3366 msgid "bounceOutUp" 3340 3367 msgstr "" 3341 3368 3342 #: inc/Reuses/Reuse.php:6 253369 #: inc/Reuses/Reuse.php:649 3343 3370 msgid "fadeIn" 3344 3371 msgstr "" 3345 3372 3346 #: inc/Reuses/Reuse.php:6 263373 #: inc/Reuses/Reuse.php:650 3347 3374 msgid "fadeInDown" 3348 3375 msgstr "" 3349 3376 3350 #: inc/Reuses/Reuse.php:6 273377 #: inc/Reuses/Reuse.php:651 3351 3378 msgid "fadeInDownBig" 3352 3379 msgstr "" 3353 3380 3354 #: inc/Reuses/Reuse.php:6 283381 #: inc/Reuses/Reuse.php:652 3355 3382 msgid "fadeInLeft" 3356 3383 msgstr "" 3357 3384 3358 #: inc/Reuses/Reuse.php:6 293385 #: inc/Reuses/Reuse.php:653 3359 3386 msgid "fadeInLeftBig" 3360 3387 msgstr "" 3361 3388 3362 #: inc/Reuses/Reuse.php:6 303389 #: inc/Reuses/Reuse.php:654 3363 3390 msgid "fadeInRight" 3364 3391 msgstr "" 3365 3392 3366 #: inc/Reuses/Reuse.php:6 313393 #: inc/Reuses/Reuse.php:655 3367 3394 msgid "fadeInRightBig" 3368 3395 msgstr "" 3369 3396 3370 #: inc/Reuses/Reuse.php:6 323397 #: inc/Reuses/Reuse.php:656 3371 3398 msgid "fadeInUp" 3372 3399 msgstr "" 3373 3400 3374 #: inc/Reuses/Reuse.php:6 333401 #: inc/Reuses/Reuse.php:657 3375 3402 msgid "fadeInUpBig" 3376 3403 msgstr "" 3377 3404 3378 #: inc/Reuses/Reuse.php:6 343405 #: inc/Reuses/Reuse.php:658 3379 3406 msgid "fadeOut" 3380 3407 msgstr "" 3381 3408 3382 #: inc/Reuses/Reuse.php:6 353409 #: inc/Reuses/Reuse.php:659 3383 3410 msgid "fadeOutDown" 3384 3411 msgstr "" 3385 3412 3386 #: inc/Reuses/Reuse.php:6 363413 #: inc/Reuses/Reuse.php:660 3387 3414 msgid "fadeOutDownBig" 3388 3415 msgstr "" 3389 3416 3390 #: inc/Reuses/Reuse.php:6 373417 #: inc/Reuses/Reuse.php:661 3391 3418 msgid "fadeOutLeft" 3392 3419 msgstr "" 3393 3420 3394 #: inc/Reuses/Reuse.php:6 383421 #: inc/Reuses/Reuse.php:662 3395 3422 msgid "fadeOutLeftBig" 3396 3423 msgstr "" 3397 3424 3398 #: inc/Reuses/Reuse.php:6 393425 #: inc/Reuses/Reuse.php:663 3399 3426 msgid "fadeOutRight" 3400 3427 msgstr "" 3401 3428 3402 #: inc/Reuses/Reuse.php:6 403429 #: inc/Reuses/Reuse.php:664 3403 3430 msgid "fadeOutRightBig" 3404 3431 msgstr "" 3405 3432 3406 #: inc/Reuses/Reuse.php:6 413433 #: inc/Reuses/Reuse.php:665 3407 3434 msgid "fadeOutUp" 3408 3435 msgstr "" 3409 3436 3410 #: inc/Reuses/Reuse.php:6 423437 #: inc/Reuses/Reuse.php:666 3411 3438 msgid "fadeOutUpBig" 3412 3439 msgstr "" 3413 3440 3414 #: inc/Reuses/Reuse.php:6 433441 #: inc/Reuses/Reuse.php:667 3415 3442 msgid "flipInX" 3416 3443 msgstr "" 3417 3444 3418 #: inc/Reuses/Reuse.php:6 443445 #: inc/Reuses/Reuse.php:668 3419 3446 msgid "flipInY" 3420 3447 msgstr "" 3421 3448 3422 #: inc/Reuses/Reuse.php:6 453449 #: inc/Reuses/Reuse.php:669 3423 3450 msgid "flipOutX" 3424 3451 msgstr "" 3425 3452 3426 #: inc/Reuses/Reuse.php:6 463453 #: inc/Reuses/Reuse.php:670 3427 3454 msgid "flipOutY" 3428 3455 msgstr "" 3429 3456 3430 #: inc/Reuses/Reuse.php:6 473457 #: inc/Reuses/Reuse.php:671 3431 3458 msgid "lightSpeedIn" 3432 3459 msgstr "" 3433 3460 3434 #: inc/Reuses/Reuse.php:6 483461 #: inc/Reuses/Reuse.php:672 3435 3462 msgid "lightSpeedOut" 3436 3463 msgstr "" 3437 3464 3438 #: inc/Reuses/Reuse.php:6 493465 #: inc/Reuses/Reuse.php:673 3439 3466 msgid "rotateIn" 3440 3467 msgstr "" 3441 3468 3442 #: inc/Reuses/Reuse.php:6 503469 #: inc/Reuses/Reuse.php:674 3443 3470 msgid "rotateInDownLeft" 3444 3471 msgstr "" 3445 3472 3446 #: inc/Reuses/Reuse.php:6 513473 #: inc/Reuses/Reuse.php:675 3447 3474 msgid "rotateInDownRight" 3448 3475 msgstr "" 3449 3476 3450 #: inc/Reuses/Reuse.php:6 523477 #: inc/Reuses/Reuse.php:676 3451 3478 msgid "rotateInUpLeft" 3452 3479 msgstr "" 3453 3480 3454 #: inc/Reuses/Reuse.php:6 533481 #: inc/Reuses/Reuse.php:677 3455 3482 msgid "rotateInUpRight" 3456 3483 msgstr "" 3457 3484 3458 #: inc/Reuses/Reuse.php:6 543485 #: inc/Reuses/Reuse.php:678 3459 3486 msgid "rotateOut" 3460 3487 msgstr "" 3461 3488 3462 #: inc/Reuses/Reuse.php:6 553489 #: inc/Reuses/Reuse.php:679 3463 3490 msgid "rotateOutDownLeft" 3464 3491 msgstr "" 3465 3492 3466 #: inc/Reuses/Reuse.php:6 563493 #: inc/Reuses/Reuse.php:680 3467 3494 msgid "rotateOutDownRight" 3468 3495 msgstr "" 3469 3496 3470 #: inc/Reuses/Reuse.php:6 573497 #: inc/Reuses/Reuse.php:681 3471 3498 msgid "rotateOutUpLeft" 3472 3499 msgstr "" 3473 3500 3474 #: inc/Reuses/Reuse.php:6 583501 #: inc/Reuses/Reuse.php:682 3475 3502 msgid "rotateOutUpRight" 3476 3503 msgstr "" 3477 3504 3478 #: inc/Reuses/Reuse.php:6 593505 #: inc/Reuses/Reuse.php:683 3479 3506 msgid "hinge" 3480 3507 msgstr "" 3481 3508 3482 #: inc/Reuses/Reuse.php:6 603509 #: inc/Reuses/Reuse.php:684 3483 3510 msgid "jackInTheBox" 3484 3511 msgstr "" 3485 3512 3486 #: inc/Reuses/Reuse.php:6 613513 #: inc/Reuses/Reuse.php:685 3487 3514 msgid "rollIn" 3488 3515 msgstr "" 3489 3516 3490 #: inc/Reuses/Reuse.php:6 623517 #: inc/Reuses/Reuse.php:686 3491 3518 msgid "rollOut" 3492 3519 msgstr "" 3493 3520 3494 #: inc/Reuses/Reuse.php:6 633521 #: inc/Reuses/Reuse.php:687 3495 3522 msgid "zoomIn" 3496 3523 msgstr "" 3497 3524 3498 #: inc/Reuses/Reuse.php:6 643525 #: inc/Reuses/Reuse.php:688 3499 3526 msgid "zoomInDown" 3500 3527 msgstr "" 3501 3528 3502 #: inc/Reuses/Reuse.php:6 653529 #: inc/Reuses/Reuse.php:689 3503 3530 msgid "zoomInLeft" 3504 3531 msgstr "" 3505 3532 3506 #: inc/Reuses/Reuse.php:6 663533 #: inc/Reuses/Reuse.php:690 3507 3534 msgid "zoomInRight" 3508 3535 msgstr "" 3509 3536 3510 #: inc/Reuses/Reuse.php:6 673537 #: inc/Reuses/Reuse.php:691 3511 3538 msgid "zoomInUp" 3512 3539 msgstr "" 3513 3540 3514 #: inc/Reuses/Reuse.php:6 683541 #: inc/Reuses/Reuse.php:692 3515 3542 msgid "zoomOut" 3516 3543 msgstr "" 3517 3544 3518 #: inc/Reuses/Reuse.php:6 693545 #: inc/Reuses/Reuse.php:693 3519 3546 msgid "zoomOutDown" 3520 3547 msgstr "" 3521 3548 3522 #: inc/Reuses/Reuse.php:6 703549 #: inc/Reuses/Reuse.php:694 3523 3550 msgid "zoomOutLeft" 3524 3551 msgstr "" 3525 3552 3526 #: inc/Reuses/Reuse.php:6 713553 #: inc/Reuses/Reuse.php:695 3527 3554 msgid "zoomOutRight" 3528 3555 msgstr "" 3529 3556 3530 #: inc/Reuses/Reuse.php:6 723557 #: inc/Reuses/Reuse.php:696 3531 3558 msgid "zoomOutUp" 3532 3559 msgstr "" 3533 3560 3534 #: inc/Reuses/Reuse.php:6 733561 #: inc/Reuses/Reuse.php:697 3535 3562 msgid "slideInDown" 3536 3563 msgstr "" 3537 3564 3538 #: inc/Reuses/Reuse.php:6 743565 #: inc/Reuses/Reuse.php:698 3539 3566 msgid "slideInLeft" 3540 3567 msgstr "" 3541 3568 3542 #: inc/Reuses/Reuse.php:6 753569 #: inc/Reuses/Reuse.php:699 3543 3570 msgid "slideInRight" 3544 3571 msgstr "" 3545 3572 3546 #: inc/Reuses/Reuse.php: 6763573 #: inc/Reuses/Reuse.php:700 3547 3574 msgid "slideInUp" 3548 3575 msgstr "" 3549 3576 3550 #: inc/Reuses/Reuse.php: 6773577 #: inc/Reuses/Reuse.php:701 3551 3578 msgid "slideOutDown" 3552 3579 msgstr "" 3553 3580 3554 #: inc/Reuses/Reuse.php: 6783581 #: inc/Reuses/Reuse.php:702 3555 3582 msgid "slideOutLeft" 3556 3583 msgstr "" 3557 3584 3558 #: inc/Reuses/Reuse.php: 6793585 #: inc/Reuses/Reuse.php:703 3559 3586 msgid "slideOutRight" 3560 3587 msgstr "" 3561 3588 3562 #: inc/Reuses/Reuse.php: 6803589 #: inc/Reuses/Reuse.php:704 3563 3590 msgid "slideOutUp" 3564 3591 msgstr "" 3565 3592 3566 #: inc/Reuses/Reuse.php: 6813593 #: inc/Reuses/Reuse.php:705 3567 3594 msgid "None" 3568 3595 msgstr "" -
definitive-addons-for-elementor/trunk/readme.txt
r2708488 r2720175 5 5 Tested up to: 5.9.3 6 6 Requires PHP: 5.4 7 Stable tag: 1.5. 58 Version: 1.5. 57 Stable tag: 1.5.6 8 Version: 1.5.6 9 9 License: GPLv3 10 10 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 102 102 == Changelog == 103 103 104 = 1.5.6 = 105 many elements modified 106 few issues fixed 107 104 108 = 1.5.5 = 105 109 not all files committed in previous version
Note: See TracChangeset
for help on using the changeset viewer.