Plugin Directory

Changeset 2720175


Ignore:
Timestamp:
05/08/2022 01:15:54 PM (4 years ago)
Author:
khuda
Message:

Version 1.5.6

Location:
definitive-addons-for-elementor/trunk
Files:
23 edited

Legend:

Unmodified
Added
Removed
  • definitive-addons-for-elementor/trunk/css/dafe_style.css

    r2708457 r2720175  
    6969}
    7070
     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}
    7199/* Accordion */
    72100
  • definitive-addons-for-elementor/trunk/definitive_adons_elementor.php

    r2708488 r2720175  
    44 * Description: Advanced Widgets for Elementor Page Builder.
    55 * Plugin URI:  https://softfirm.net/
    6  * Version:     1.5.5
     6 * Version:     1.5.6
    77 * Author:      Softfirm
    88 * Author URI:  https://softfirm.net/definitive-addons/
     
    3131     * @var string The plugin version.
    3232     */
    33     const VERSION = '1.5.5';
     33    const VERSION = '1.5.6';
    3434
    3535    /**
  • definitive-addons-for-elementor/trunk/inc/Elements/Creative_Button.php

    r2708457 r2720175  
    495495   
    496496   
    497     protected function render( ) {
     497    protected function render() {
    498498       
    499499        $settings = $this->get_settings_for_display();
     
    507507        if ($icon_position == 'left'){
    508508            $add_icon_left = $settings['icon']['value'];
    509         }else {
     509        }
     510        if ($icon_position == 'right'){
    510511            $add_icon_right = $settings['icon']['value'];
    511512        }
    512513       
     514        $creative_link = '';
    513515        if ( ! empty( $settings['link']['url'] ) ) {
    514516            $this->add_link_attributes( 'creative_link', $settings['link'] );
     517            $creative_link = $this->get_render_attribute_string( 'creative_link' );
    515518        }
    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);
    534539       
    535540    }
  • definitive-addons-for-elementor/trunk/inc/Elements/Feature_list.php

    r2708457 r2720175  
    658658                $this->add_link_attributes( 'feature_list_link'.$key, $feature_list['link'] );
    659659            }
    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 );
    664665        $title = $feature_list['title'];
    665666        $feature_title = Reuse::dafe_get_linked_title($title_tag,$widget_link,$title,$title_class);
    666667        //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 );
    669670      $subtitle = $feature_list['subtitle'];
    670671      $feature_desc = Reuse::dafe_get_linked_desc($show=false,$subtitle_link='',$subtitle_class,$subtitle);
    671672      //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 );
    674675     
    675676     $content_output = $feature_title.$feature_desc;
    676677      $content_html = Reuse::dafe_get_element_content($content_class,$inner_class='',$content_output);
    677678      //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);
    682683        $inner_tag = 'span';
    683684        $inner_tag = Utils::validate_html_tag($inner_tag);
     
    686687     
    687688      //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 );
    692693     $container_inner = Reuse::dafe_get_container_start_close($container_class,$inner_class);
    693694           
  • definitive-addons-for-elementor/trunk/inc/Elements/Flip_Box.php

    r2708457 r2720175  
    350350           'flip_style_subtitle',
    351351            [
    352                 'label' => __( 'Flip Box Subtitle', 'definitive-addons-for-elementor' ),
     352                'label' =>__( 'Flip Box Subtitle', 'definitive-addons-for-elementor' ),
    353353                'tab'   => Controls_Manager::TAB_STYLE,
    354354            ]
     
    393393           'flip_style_text',
    394394            [
    395                 'label' => __( 'Flip Box Text', 'definitive-addons-for-elementor' ),
     395                'label' =>__( 'Flip Box Text', 'definitive-addons-for-elementor' ),
    396396                'tab'   => Controls_Manager::TAB_STYLE,
    397397            ]
     
    478478
    479479
    480     protected function render( ) {
     480    protected function render() {
    481481       
    482482      $settings = $this->get_settings_for_display();
     
    487487      $title_tag = $this->get_settings_for_display( 'title_tag' );
    488488      $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     
    489502     
    490503      //title
     
    515528       
    516529        $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       
    529544    }
    530545}
  • definitive-addons-for-elementor/trunk/inc/Elements/Icon_Box.php

    r2708457 r2720175  
    732732        if ( ! empty( $settings['link']['url'] ) ) {
    733733            $this->add_link_attributes( 'icon_box_link', $settings['link'] );
     734            $icon_box_link = $this->get_render_attribute_string( 'icon_box_link' );
    734735        }
    735736       
    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       
    742738       
    743739        //title
  • definitive-addons-for-elementor/trunk/inc/Elements/Icon_List.php

    r2708457 r2720175  
    421421            $add_icon_right = $icon_list['icon']['value'];
    422422        }
    423        
     423        $link_icon = '';
    424424        if ( ! empty( $icon_list['link']['url'] ) ) {
    425425            $this->add_link_attributes( 'icon_list_link'.$key, $icon_list['link'] );
     426            $link_icon = $this->get_render_attribute_string( 'icon_list_link'.$key );
    426427        }
    427428       
    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        }
    441451       
    442         <?php endforeach; ?>
     452        endforeach; ?>
     453   
    443454    </div>
    444455       
  • definitive-addons-for-elementor/trunk/inc/Elements/Popular_Post.php

    r2700212 r2720175  
    120120
    121121
    122     protected function render( ) {
     122    protected function render() {
    123123       
    124124    $settings = $this->get_settings_for_display();
    125125   
    126126    $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     
    127130   
    128       ?>
    129      
    130      
    131         <div class="nl_grid_row da-popular-post popular-post-grid col_gap_30">
    132 
    133    
    134             <?php
    135             $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' => 1
    152                 )
    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             <?php       
    224            
    225                     if ( $col_count == $col_no) {
    226                         $col_count = '0';
    227                     }   
    228 
    229             endwhile; ?>
    230         </div>
    231            
    232         <?php
    233        
    234 
    235         endif;
    236         wp_reset_postdata();
    237    
    238      
    239131    }
    240132}
  • definitive-addons-for-elementor/trunk/inc/Elements/Pricing_Table.php

    r2708457 r2720175  
    152152                    'library' => 'fa-solid',
    153153                ],
    154                
    155                
    156                
     154
    157155            ]
    158156        );
     
    277275       
    278276
    279 
    280            
    281277        $this->end_controls_section();
    282278
     
    322318                'type' => Controls_Manager::DIMENSIONS,
    323319                'size_units' => [ 'px', 'em', '%' ],
     320                'default'    => [
     321                    'top'    => '10',
     322                    'right'  => '10',
     323                    'bottom' => '0',
     324                    'left'   => '10'
     325                ],
    324326                'selectors' => [
    325327                    '{{WRAPPER}} .table-header' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
     
    10401042   
    10411043   
    1042     protected function render( ) {
     1044    protected function render() {
    10431045       
    10441046        $settings = $this->get_settings_for_display();
     
    10521054        $add_icon_left = '';
    10531055        $add_icon_right = '';
     1056        $this->add_render_attribute('container_class', 'class', ['pricing-table-container',$pricing_table_alignment]);
     1057       
    10541058
    10551059        ?>
    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'); ?>>
    10761111      <?php
    1077       foreach ( $settings['pricing_tables'] as $pricing_table) :
     1112      foreach ( $settings['pricing_tables'] as $key => $pricing_table) :
    10781113
    10791114        if ($icon_position == 'left'){
    10801115            $add_icon_left = $pricing_table['icon']['value'];
    1081         }else {
     1116        } else {
    10821117            $add_icon_right = $pricing_table['icon']['value'];
    10831118        }
    10841119       
    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; ?>
    10931132    </div>
    10941133    <?php
    1095    
     1134    $pricing_link = '';
    10961135    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   
    10991151    ?>
    11001152   
    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   
    11111154   
    11121155</div> 
  • definitive-addons-for-elementor/trunk/inc/Elements/Promo-box.php

    r2708457 r2720175  
    457457            $show_hide_corner = 'no';
    458458        }
     459        $promo_link = '';
    459460        if ( ! empty( $settings['link']['url'] ) ) {
    460461            $this->add_link_attributes( 'promo_box_link', $settings['link'] );
     462            $promo_link = $this->get_render_attribute_string( 'promo_box_link' );
    461463        }
    462464        // title
    463465        $title_tag = 'h5';
    464         $promo_link = $this->get_render_attribute_string( 'promo_box_link' );
     466       
    465467        $this->add_render_attribute( 'title_class', 'class', 'promo-box-title' );
    466468        $title_class = $this->get_render_attribute_string( 'title_class' );
     
    471473        $promo_img = Group_Control_Image_Size::get_attachment_image_html( $settings, 'thumbnail', 'image' );
    472474        $promobox_img = Reuse::dafe_get_image_with_link($image_link,$promo_link,$promo_img);
     475       
    473476        //span
    474477         
  • definitive-addons-for-elementor/trunk/inc/Elements/Skillbar.php

    r2708457 r2720175  
    271271            <span class="title" style="height:<?php echo esc_attr($bar_height['size']) ?>px;line-height:<?php echo esc_attr($bar_height['size']) ?>px;">
    272272           
    273             <?php $this->print_unescaped_setting( $settings['skill_text']); ?></span>
     273            <?php $this->print_unescaped_setting('skill_text'); ?></span>
    274274
    275275        <?php } ?>
  • definitive-addons-for-elementor/trunk/inc/Elements/Slider.php

    r2708457 r2720175  
    678678        //$nav_position = $this->get_settings_for_display('nav_position');
    679679   
    680        
    681        
    682    
    683680        if ($show_hide_ovl != 'yes'){
    684681            $show_hide_ovl = 'no';
     
    695692        ] );
    696693   
    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' ); ?>>
    699698        <div <?php $this->print_render_attribute_string( 'definitive-slick' ); ?>>
    700699
    701700            <?php foreach ( $settings['slick_slides'] as $key => $slide ) {
    702                     $slider_image = '';
     701                   
     702                    $slider_image = $widget_link = '';
    703703                    $slider_image = $slide['slider_image']['url'];
     704                   
    704705                    if ( ! empty( $slide['link']['url'] ) ) {
    705706                        $this->add_link_attributes( 'slider_link'.$key, $slide['link'] );
    706                        
     707                        $widget_link = $this->get_render_attribute_string( 'slider_link'.$key );
    707708                    }
     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       
    708718        //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 );
    712722      $title_tag = 'h2';
    713723     $title_tag = Utils::validate_html_tag($title_tag);
    714724     $linked_title = Reuse::dafe_get_linked_title($title_tag,$widget_link,$slide['title'],$title_class);
    715725      //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 );
    718728      $subtitle = Reuse::dafe_get_linked_desc($show=false,$subtitle_link='',$subtitle_class,$slide['subtitle']);
    719729      //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 );
    724734     
    725735      $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       
    726745        //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 
    752756        </div>
    753        
    754        
     757
    755758    </div>
    756759   
    757760
    758761        <?php
    759     }
     762   
    760763}
     764}
  • definitive-addons-for-elementor/trunk/inc/Elements/Social_Icon.php

    r2708457 r2720175  
    154154                'type'  => Controls_Manager::COLOR,
    155155                '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}};',
    158158
    159159                ],
     
    170170
    171171                '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}};',
    173173                ],
    174174                'condition'      => ['single_icon_style' => 'yes'],
     
    185185                'style_transfer' => true,
    186186                '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}};',
    188188                ]
    189189            ]
     
    204204                'type'           => Controls_Manager::COLOR,
    205205                '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}};',
    207207                ],
    208208                'condition'      => ['single_icon_style' => 'yes'],
     
    216216                'type'           => Controls_Manager::COLOR,
    217217                '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}};',
    219219                ],
    220220                'condition'      => ['single_icon_style' => 'yes'],
     
    230230               
    231231                '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}};',
    233233                ]
    234234            ]
     
    329329            [
    330330                'name' => 'dafe_social_container_border',
    331                 'selector' => '{{WRAPPER}} .dafe-social-icons-container',
     331                'selector' => '{{WRAPPER}}  .dafe-social-icons-container',
    332332            ]
    333333        );
     
    340340                'size_units' => [ 'px', '%' ],
    341341                '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}};',
    343343                ],
    344344            ]
     
    352352                'size_units' => [ 'px', '%' ],
    353353                '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}};',
    355355                ],
    356356            ]
     
    389389
    390390                'selectors'      => [
    391                     '{{WRAPPER}} .dafe-social-icons-container .dafe-icon-container .icon'  => 'color: {{VALUE}};',
     391                    '{{WRAPPER}} .dafe-icon-container .dafe-icon'  => 'color: {{VALUE}};',
    392392                   
    393393                ],
     
    403403                'type'  => Controls_Manager::COLOR,
    404404                '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}};',
    408408
    409409                ],
     
    418418                'type'      => Controls_Manager::COLOR,
    419419                'selectors' => [
    420                     '{{WRAPPER}} .dafe-social-icons-container .dafe-icon-container' => 'border-color: {{VALUE}};',
     420                    '{{WRAPPER}} .dafe-icon-container .dafe-icon' => 'border-color: {{VALUE}};',
    421421                ]
    422422            ]
     
    438438                'type'           => Controls_Manager::COLOR,
    439439                '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}};',
    441441                   
    442442                ],
     
    450450                'type'           => Controls_Manager::COLOR,
    451451                '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}};',
    453453                ],
    454454               
     
    462462                'type'      => Controls_Manager::COLOR,
    463463                '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}};',
    465465                ]
    466466            ]
     
    486486                ],
    487487                'selectors' => [
    488                     '{{WRAPPER}} .dafe-social-icons-container .dafe-icon-container i'   => 'font-size: {{SIZE}}{{UNIT}};',
     488                    '{{WRAPPER}} .dafe-icon-container .dafe-icon i'   => 'font-size: {{SIZE}}{{UNIT}};',
    489489                ],
    490490            ]
     
    507507                ],
    508508                '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}};',
    510510                   
    511511                ],
     
    526526                ],
    527527                '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}};',
    529529                ],
    530530            ]
     
    535535            [
    536536                'name'      => 'dafe_social_icon_border',
    537                 'selector'  => '{{WRAPPER}} .dafe-social-icons-container .dafe-icon-container',
     537                'selector'  => '{{WRAPPER}} .dafe-icon-container .dafe-icon',
    538538                'separator' => 'before',
    539539            ]
     
    547547                'size_units' => ['px', '%'],
    548548                '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}};',
    550550                ],
    551551            ]
     
    557557                'name'     => 'dafe_social_icon_shadow',
    558558
    559                 'selector' => '{{WRAPPER}} .dafe-social-icons-container .dafe-icon-container',
     559                'selector' => '{{WRAPPER}} .dafe-icon-container .dafe-icon',
    560560            ]
    561561        );
     
    584584            ]
    585585        );
     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        );
    586598
    587599        $this->add_group_control(
     
    591603                'label'    => __('Typography', 'definitive-addons-for-elementor'),
    592604               
    593                 'selector' => '{{WRAPPER}}  .dafe-social-icons-container .dafe-icon-name'
     605                'selector' => '{{WRAPPER}} .dafe-social-icons-container .dafe-icon-name'
    594606            ]
    595607
     
    619631        <div class="dafe-social-icons-container">
    620632           
    621                         <?php foreach ( $settings['dafe_social_icon_repeater'] as $key => $social_icon ) :  ?>
     633                        <?php foreach ( $settings['dafe_social_icon_repeater'] as $key => $social_icon ) :
    622634                           
    623                         <?php   if ( ! empty( $social_icon['social_icon_link']['url'] ) ) {
     635                   
     636                        $link_attr = '';
     637                        if ( ! empty( $social_icon['social_icon_link']['url'] ) ) {
    624638                            $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);
    629662                               
    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       
    645666        <?php
    646667    }
  • definitive-addons-for-elementor/trunk/inc/Elements/Staff_Member.php

    r2708457 r2720175  
    8383            [
    8484                'name' => 'thumbnail',
    85                 'default' => 'thumbnail',
     85                'default' => 'full',
    8686                'separator' => 'before',
    8787                'exclude' => [
     
    257257                'default' => [
    258258                    'unit' => '%',
    259                     'size' => 40,
     259                    'size' => 100,
    260260                ],
    261261                'range'      => [
  • definitive-addons-for-elementor/trunk/inc/Elements/Teaser_Box.php

    r2708457 r2720175  
    7171            [
    7272                'name' => 'thumbnail',
    73                 'default' => 'thumbnail',
     73                'default' => 'large',
    7474                'separator' => 'before',
    7575                'exclude' => [
     
    252252                'default' => [
    253253                    'unit' => '%',
    254                     'size' => 40,
     254                    'size' => 100,
    255255                ],
    256256                'range'      => [
  • definitive-addons-for-elementor/trunk/inc/Elements/Testimonial_Slider.php

    r2708457 r2720175  
    4545
    4646    public function get_keywords() {
    47         return [ 'testimonial', 'image', 'review','slide' ];
     47        return [ 'testimonial', 'image','review','slide' ];
    4848    }
    4949   
     
    5151        return [ 'definitive-addons' ];
    5252    }
    53    
    54    
    55    
    56    
    5753
    5854    protected function register_controls() {
     
    425421            ]
    426422        );
    427 
    428        
    429423
    430424         $this->add_responsive_control(
     
    960954
    961955        $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 );
    964958        $up_image = $down_image = '';
    965959        $show = 'true';
     
    971965        }
    972966        //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 );
    975969        $author_name = Reuse::dafe_get_span_text($slide['name'],$title_class);
    976970        //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 );
    979973        $author_title = Reuse::dafe_get_span_text($slide['title'],$position_class);
    980974        //organization
    981975        $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 );
    984978       
    985979        $author_org = Reuse::dafe_get_title($html_tag,$slide['organization'],$org_class);
     
    987981        // reviewer text
    988982
    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 );
    991985       
    992986        $review_txt = Reuse::dafe_get_quote_text($settings['show_hide_quote'],$quote_class,$slide['reviewer_text']);
    993987       
    994988        //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 );
    997991        $author_container = Reuse::dafe_get_container_start_close($author_class,$inner_class='');
    998992       
    999993        //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 );
    1002996       
    1003997        $desc_container = Reuse::dafe_get_container_start_close($desc_class,$inner_class='');
    1004998       
    1005999        //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 );
    10081002        $author_container = Reuse::dafe_get_container_start_close($content_class,$inner_class='');
    10091003        $author_details = $author_container[0].$author_detail.$desc_container[0].$review_txt.$desc_container[1].$author_container[1];
    10101004        //container
    1011         $this->add_render_attribute( 'container_class', 'class',
     1005        $this->add_render_attribute( 'container_class'.$key, 'class',
    10121006        ['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 );
    10161010        $container = Reuse::dafe_get_container_start_close($container_class,$inner_class);
    10171011
  • definitive-addons-for-elementor/trunk/inc/Elements/Type.php

    r2700212 r2720175  
    189189        ] );
    190190       
    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,
    196194           
    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       
    200205    }
    201206   
  • definitive-addons-for-elementor/trunk/inc/Elements/Wording.php

    r2708457 r2720175  
    5454            'dafe_section_heading',
    5555            [
    56                 'label' => __( 'Wording', 'definitive-addons-for-elementor' ),
     56                'label' => __( 'Multi-Color Text', 'definitive-addons-for-elementor' ),
    5757                'tab' => Controls_Manager::TAB_CONTENT,
    5858            ]
     
    6565                'label_block' => true,
    6666                'label' => __( 'Enter one or more word', 'definitive-addons-for-elementor' ),
    67                 'default' => __( 'Word1', 'definitive-addons-for-elementor' )
     67                'default' => __( 'Definitive', 'definitive-addons-for-elementor' )
    6868            ]
    6969        );
     
    7575                'label_block' => true,
    7676                'label' =>__( 'Enter one or more word', 'definitive-addons-for-elementor' ),
    77                 'default' =>__( 'Word2', 'definitive-addons-for-elementor' )
     77                'default' =>__( 'Addons', 'definitive-addons-for-elementor' )
    7878            ]
    7979        );
     
    8484                'label_block' => true,
    8585                'label' =>__( 'Enter one or more word', 'definitive-addons-for-elementor' ),
    86                 'default' =>__( 'Word3', 'definitive-addons-for-elementor' )
     86                'default' =>__( 'For', 'definitive-addons-for-elementor' )
    8787            ]
    8888        );
     
    9393                'label_block' => true,
    9494                'label' =>__( 'Enter one or more word', 'definitive-addons-for-elementor' ),
    95                 'default' =>__( 'Word4', 'definitive-addons-for-elementor' )
     95                'default' =>__( 'Elementor', 'definitive-addons-for-elementor' )
    9696            ]
    9797        );
     
    556556        $span_txt1 = Reuse::dafe_get_span_text($settings['word1'],$param['word1']);
    557557        $span_txt2 = Reuse::dafe_get_span_text($settings['word2'],$param['word2']);
    558         $span_txt3 = Reuse::dafe_get_span_text($settings['word2'],$param['word3']);
    559         $span_txt4 = Reuse::dafe_get_span_text($settings['word2'],$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']);
    560560        $span_txt = $span_txt1.$span_txt2.$span_txt3.$span_txt4;
    561561        $container = Reuse::dafe_get_container_start_close($param['container'],$inner_class='');
  • definitive-addons-for-elementor/trunk/inc/Elements/heading-with-separator.php

    r2708457 r2720175  
    126126                ],
    127127                'default' => 'center',
    128                 'selectors' => [
    129                     '{{WRAPPER}} .font-heading' => 'text-align: {{VALUE}};',
    130                     '{{WRAPPER}} .separator' => 'text-align: {{VALUE}};',
    131                 ],
     128               
    132129               
    133130               
     
    288285                'type' => Controls_Manager::COLOR,
    289286                'selectors' => [
    290                     '{{WRAPPER}} .separator' => 'border-color: {{VALUE}}',
     287                    '{{WRAPPER}} .da-separator' => 'border-color: {{VALUE}}',
    291288                ],
    292289                'default' =>'#6EC1E4'
     
    300297                'type' => Controls_Manager::COLOR,
    301298                'selectors' => [
    302                     '{{WRAPPER}} .separator:hover' => 'border-color: {{VALUE}}',
     299                    '{{WRAPPER}} .da-separator:hover' => 'border-color: {{VALUE}}',
    303300                ],
    304301                'default' =>'#6EC1D4'
     
    316313                ],
    317314                'selectors' => [
    318                     '{{WRAPPER}} .separator' => 'width: {{SIZE}}%;',
     315                    '{{WRAPPER}} .da-widget-heading .da-separator' => 'width: {{SIZE}}%;',
    319316                ],
    320317            ]
     
    331328                ],
    332329                'selectors' => [
    333                     '{{WRAPPER}} .separator' => 'border-width: {{SIZE}}{{UNIT}};',
     330                    '{{WRAPPER}} .da-separator' => 'border-width: {{SIZE}}{{UNIT}};',
    334331                ],
    335332            ]
     
    343340                'size_units' => ['px'],
    344341                'selectors' => [
    345                     '{{WRAPPER}} .separator' => 'margin-bottom: {{SIZE}}{{UNIT}};',
     342                    '{{WRAPPER}} .da-separator' => 'margin-bottom: {{SIZE}}{{UNIT}};',
    346343                ],
    347344            ]
     
    368365       
    369366        if ($show_hide_sep != 'yes'){
    370             $separator_styles .= 'display:none;';
     367            $show_hide_sep .= 'no';
    371368        }
    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 ='';
    396369   
    397370        if($title_tag == "") {
     
    400373       
    401374        //title
    402       $this->add_render_attribute( 'title_class', 'class', 'font-heading' );
     375      $this->add_render_attribute( 'title_class', 'class', ['font-heading',$heading_alignment]);
    403376      $title_class = $this->get_render_attribute_string( 'title_class' );
    404377      $title_tag = Utils::validate_html_tag($title_tag);
     
    409382        ?>
    410383
    411         <div class="widget-heading">
     384        <div class="da-widget-heading">
    412385   
    413386         <?php Utils::print_unescaped_internal_string( $heading_title); ?>
    414387       
    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>
    416389        </div>
    417390
  • definitive-addons-for-elementor/trunk/inc/Reuses/Da_Post.php

    r2708488 r2720175  
    309309    }
    310310   
     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   
    311420    // Post Grid
    312421   
  • definitive-addons-for-elementor/trunk/inc/Reuses/Reuse.php

    r2708457 r2720175  
    214214
    215215    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)) :
    218219           
    219220            $output = sprintf('<span %1$s>%2$s</span>',$title_class,$title);
    220221       
    221         elseif (empty($title_class)):
     222        elseif (empty($title_class) && !empty($title)):
    222223           
    223224            $output = sprintf('<span>%1$s</span>',$title);
    224225       
    225         elseif (empty($title)):
     226        elseif (empty($title) && !empty($title_class)):
    226227           
    227228            $output = sprintf('<span %1$s></span>',$title_class);
     
    233234   
    234235    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;
    242244       
    243245    }
     
    306308   
    307309   
    308     public static function dafe_get_linked_button($box_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);
    314316       
    315317        endif;
     
    322324        $output = '';
    323325
    324         if ($btn_txt) :
     326        if (!empty($btn_txt)) :
    325327            $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);
    326350        endif;
    327351        return $output;
     
    431455        $output = '';
    432456
    433         if ( $subtitle ) :
     457        if ( !empty($subtitle) ) :
    434458           
    435459            $output = sprintf('<p %1$s>%2$s</p>',$subtitle_class,$subtitle);
     
    456480        $output = '';
    457481
    458         if ( $subtitle ) :
     482        if ( !empty($subtitle) ) :
    459483           
    460484            $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  
    33msgstr ""
    44"Project-Id-Version: definitive-addons-for-elementor\n"
    5 "POT-Creation-Date: 2022-04-12 14:34+0600\n"
     5"POT-Creation-Date: 2022-05-08 18:56+0600\n"
    66"PO-Revision-Date: 2020-03-12 14:48+0600\n"
    77"Last-Translator: \n"
     
    3030
    3131#: definitive_adons_elementor.php:211 definitive_adons_elementor.php:235
     32#: inc/Elements/Wording.php:95
    3233msgid "Elementor"
    3334msgstr ""
     
    5960#: inc/Elements/Post_Carousel.php:100 inc/Elements/Post_Grid.php:178
    6061#: inc/Elements/Slider.php:87 inc/Elements/Tabs.php:62
    61 #: inc/Elements/Testimonial.php:116 inc/Elements/Testimonial_Slider.php:106
     62#: inc/Elements/Testimonial.php:116 inc/Elements/Testimonial_Slider.php:102
    6263msgid "Title"
    6364msgstr ""
     
    8586#: inc/Elements/Accordion.php:85 inc/Elements/CTA.php:169
    8687#: inc/Elements/CTA.php:171 inc/Elements/Creative_Button.php:93
    87 #: inc/Elements/Creative_Button.php:94 inc/Elements/Pricing_Table.php:249
    88 #: inc/Elements/Pricing_Table.php:251 inc/Elements/Slider.php:107
     88#: inc/Elements/Creative_Button.php:94 inc/Elements/Pricing_Table.php:247
     89#: inc/Elements/Pricing_Table.php:249 inc/Elements/Slider.php:107
    8990#: inc/Elements/Slider.php:108 inc/Elements/Tabs.php:82
    9091#: inc/Elements/Teaser_Box.php:196
     
    9899
    99100#: inc/Elements/Accordion.php:98 inc/Elements/CTA.php:177
    100 #: inc/Elements/Creative_Button.php:101 inc/Elements/Pricing_Table.php:257
     101#: inc/Elements/Creative_Button.php:101 inc/Elements/Pricing_Table.php:255
    101102#: inc/Elements/Tabs.php:95 inc/Elements/Teaser_Box.php:146
    102103msgid "Button Link"
     
    170171#: inc/Elements/Icon_Box.php:282 inc/Elements/Icon_Box.php:611
    171172#: inc/Elements/Post_Carousel.php:403 inc/Elements/Post_Grid.php:501
    172 #: inc/Elements/Post_Grid.php:637 inc/Elements/Pricing_Table.php:768
    173 #: inc/Elements/Pricing_Table.php:946 inc/Elements/Promo-box.php:175
     173#: 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
    174175#: inc/Elements/Promo-box.php:350 inc/Elements/Social_Icon.php:146
    175176#: inc/Elements/Social_Icon.php:380 inc/Elements/Staff_Member.php:628
     
    177178#: inc/Elements/Tabs.php:334 inc/Elements/Tabs.php:719
    178179#: inc/Elements/Teaser_Box.php:518 inc/Elements/Teaser_Box.php:675
    179 #: inc/Elements/Testimonial_Slider.php:632
    180 #: inc/Elements/Testimonial_Slider.php:782
    181 #: inc/Elements/heading-with-separator.php:174
     180#: 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
    182183msgid "Normal"
    183184msgstr ""
     
    189190#: inc/Elements/Filterable_Portfolio.php:381
    190191#: inc/Elements/Filterable_Portfolio.php:765 inc/Elements/Post_Grid.php:509
    191 #: inc/Elements/Pricing_Table.php:361 inc/Elements/Social_Icon.php:153
     192#: inc/Elements/Pricing_Table.php:363 inc/Elements/Social_Icon.php:153
    192193#: inc/Elements/Social_Icon.php:203 inc/Elements/Social_Icon.php:387
    193194#: inc/Elements/Social_Icon.php:437 inc/Elements/Staff_Member.php:456
     
    206207#: inc/Elements/Filterable_Portfolio.php:905 inc/Elements/Icon_Box.php:618
    207208#: inc/Elements/Post_Carousel.php:422 inc/Elements/Post_Carousel.php:475
    208 #: inc/Elements/Post_Grid.php:519 inc/Elements/Pricing_Table.php:298
    209 #: inc/Elements/Pricing_Table.php:383 inc/Elements/Pricing_Table.php:488
    210 #: inc/Elements/Pricing_Table.php:785 inc/Elements/Promo-box.php:357
     209#: 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
    211212#: inc/Elements/Social_Icon.php:168 inc/Elements/Social_Icon.php:215
    212213#: inc/Elements/Social_Icon.php:318 inc/Elements/Social_Icon.php:402
     
    227228#: inc/Elements/Icon_Box.php:653 inc/Elements/Post_Carousel.php:457
    228229#: inc/Elements/Post_Grid.php:550 inc/Elements/Post_Grid.php:675
    229 #: inc/Elements/Pricing_Table.php:817 inc/Elements/Pricing_Table.php:985
     230#: inc/Elements/Pricing_Table.php:819 inc/Elements/Pricing_Table.php:987
    230231#: inc/Elements/Promo-box.php:214 inc/Elements/Promo-box.php:388
    231232#: inc/Elements/Social_Icon.php:196 inc/Elements/Social_Icon.php:430
     
    233234#: inc/Elements/Subscription.php:220 inc/Elements/Tabs.php:405
    234235#: inc/Elements/Tabs.php:757 inc/Elements/Teaser_Box.php:568
    235 #: inc/Elements/Teaser_Box.php:714 inc/Elements/Testimonial_Slider.php:671
    236 #: inc/Elements/Testimonial_Slider.php:833
    237 #: inc/Elements/heading-with-separator.php:205
     236#: 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
    238239msgid "Hover"
    239240msgstr ""
     
    249250#: inc/Elements/Social_Icon.php:182 inc/Elements/Social_Icon.php:227
    250251#: inc/Elements/Social_Icon.php:417 inc/Elements/Social_Icon.php:461
    251 #: inc/Elements/Tabs.php:783 inc/Elements/Testimonial_Slider.php:698
    252 #: inc/Elements/Testimonial_Slider.php:872
     252#: inc/Elements/Tabs.php:783 inc/Elements/Testimonial_Slider.php:692
     253#: inc/Elements/Testimonial_Slider.php:866
    253254msgid "Border Color"
    254255msgstr ""
    255256
    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
    258260msgid "Title Padding"
    259261msgstr ""
     
    262264#: inc/Elements/Category_List.php:198 inc/Elements/Counter.php:192
    263265#: inc/Elements/Feature_list.php:218 inc/Elements/Icon_Box.php:227
    264 #: inc/Elements/Icon_List.php:208 inc/Elements/Pricing_Table.php:533
     266#: inc/Elements/Icon_List.php:208 inc/Elements/Pricing_Table.php:535
    265267#: inc/Elements/Social_Icon.php:475 inc/Elements/Staff_Member.php:558
    266268#: inc/Elements/Tabs.php:269
     
    272274#: inc/Elements/Creative_Button.php:400 inc/Elements/Feature_list.php:276
    273275#: inc/Elements/Icon_Box.php:303 inc/Elements/Icon_List.php:230
    274 #: inc/Elements/Pricing_Table.php:555 inc/Elements/Staff_Member.php:636
     276#: inc/Elements/Pricing_Table.php:557 inc/Elements/Staff_Member.php:636
    275277#: inc/Elements/Tabs.php:292
    276278msgid "Icon Color"
     
    280282#: inc/Elements/Category_List.php:233 inc/Elements/Creative_Button.php:429
    281283#: inc/Elements/Icon_Box.php:347 inc/Elements/Icon_List.php:242
    282 #: inc/Elements/Pricing_Table.php:567 inc/Elements/Staff_Member.php:688
     284#: inc/Elements/Pricing_Table.php:569 inc/Elements/Staff_Member.php:688
    283285#: inc/Elements/Tabs.php:304
    284286msgid "Icon Hover Color"
     
    287289#: inc/Elements/Accordion.php:440 inc/Elements/Accordion.php:512
    288290#: inc/Elements/Testimonial.php:250 inc/Elements/Testimonial.php:329
    289 #: inc/Elements/Testimonial_Slider.php:335
    290 #: inc/Elements/Testimonial_Slider.php:433
     291#: inc/Elements/Testimonial_Slider.php:331
     292#: inc/Elements/Testimonial_Slider.php:427
    291293msgid "Right Spacing"
    292294msgstr ""
    293295
    294296#: inc/Elements/Accordion.php:457 inc/Elements/Testimonial.php:268
    295 #: inc/Elements/Testimonial_Slider.php:353
     297#: inc/Elements/Testimonial_Slider.php:349
    296298msgid "Left Spacing"
    297299msgstr ""
     
    348350#: inc/Elements/Accordion.php:724 inc/Elements/Contact_form_7.php:703
    349351#: inc/Elements/Creative_Button.php:342 inc/Elements/Ninja_Forms.php:616
    350 #: inc/Elements/Pricing_Table.php:749 inc/Elements/Tabs.php:621
     352#: inc/Elements/Pricing_Table.php:751 inc/Elements/Tabs.php:621
    351353#: inc/Elements/Teaser_Box.php:499 inc/Elements/WpForm.php:657
    352354msgid "Button Padding"
     
    370372#: inc/Elements/Feature_list.php:565 inc/Elements/Filterable_Portfolio.php:878
    371373#: inc/Elements/Flip_Box.php:456 inc/Elements/Icon_Box.php:633
    372 #: inc/Elements/Post_Grid.php:655 inc/Elements/Pricing_Table.php:965
     374#: inc/Elements/Post_Grid.php:655 inc/Elements/Pricing_Table.php:967
    373375#: inc/Elements/Tabs.php:736 inc/Elements/Teaser_Box.php:694
    374 #: inc/Elements/Testimonial.php:539 inc/Elements/Testimonial_Slider.php:651
     376#: inc/Elements/Testimonial.php:539 inc/Elements/Testimonial_Slider.php:645
    375377msgid "Container Shadow"
    376378msgstr ""
     
    428430#: inc/Elements/Ninja_Forms.php:147 inc/Elements/Pricing_Table.php:80
    429431#: 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
    431434msgid "Title HTML Tag"
    432435msgstr ""
     
    438441#: inc/Elements/Products.php:75 inc/Elements/Subscription.php:83
    439442#: inc/Elements/Teaser_Box.php:111 inc/Elements/WpForm.php:139
     443#: inc/Elements/heading-with-separator - Copy.php:83
    440444#: inc/Elements/heading-with-separator.php:83
    441445msgid "H1"
     
    448452#: inc/Elements/Products.php:76 inc/Elements/Subscription.php:84
    449453#: inc/Elements/Teaser_Box.php:115 inc/Elements/WpForm.php:140
     454#: inc/Elements/heading-with-separator - Copy.php:84
    450455#: inc/Elements/heading-with-separator.php:84
    451456msgid "H2"
     
    458463#: inc/Elements/Products.php:77 inc/Elements/Subscription.php:85
    459464#: inc/Elements/Teaser_Box.php:119 inc/Elements/WpForm.php:141
     465#: inc/Elements/heading-with-separator - Copy.php:85
    460466#: inc/Elements/heading-with-separator.php:85
    461467msgid "H3"
     
    468474#: inc/Elements/Products.php:78 inc/Elements/Subscription.php:86
    469475#: inc/Elements/Teaser_Box.php:123 inc/Elements/WpForm.php:142
     476#: inc/Elements/heading-with-separator - Copy.php:86
    470477#: inc/Elements/heading-with-separator.php:86
    471478msgid "H4"
     
    478485#: inc/Elements/Products.php:79 inc/Elements/Subscription.php:87
    479486#: inc/Elements/Teaser_Box.php:127 inc/Elements/WpForm.php:143
     487#: inc/Elements/heading-with-separator - Copy.php:87
    480488#: inc/Elements/heading-with-separator.php:87
    481489msgid "H5"
     
    488496#: inc/Elements/Products.php:80 inc/Elements/Subscription.php:88
    489497#: inc/Elements/Teaser_Box.php:131 inc/Elements/WpForm.php:144
     498#: inc/Elements/heading-with-separator - Copy.php:88
    490499#: inc/Elements/heading-with-separator.php:88
    491500msgid "H6"
     
    503512
    504513#: inc/Elements/CTA.php:188 inc/Elements/Creative_Button.php:357
    505 #: inc/Elements/Pricing_Table.php:268 inc/Elements/Slider.php:114
     514#: inc/Elements/Pricing_Table.php:266 inc/Elements/Slider.php:114
    506515msgid "Button Icon"
    507516msgstr ""
     
    551560#: inc/Elements/CTA.php:369 inc/Elements/Contact_form_7.php:781
    552561#: inc/Elements/Creative_Button.php:275 inc/Elements/Post_Carousel.php:464
    553 #: inc/Elements/Post_Grid.php:557 inc/Elements/Pricing_Table.php:824
     562#: inc/Elements/Post_Grid.php:557 inc/Elements/Pricing_Table.php:826
    554563#: inc/Elements/Products.php:311 inc/Elements/Slider.php:402
    555564#: inc/Elements/Staff_Member.php:466 inc/Elements/Subscription.php:227
    556 #: inc/Elements/Teaser_Box.php:575 inc/Elements/Testimonial_Slider.php:840
     565#: inc/Elements/Teaser_Box.php:575 inc/Elements/Testimonial_Slider.php:834
    557566#: inc/Elements/WpForm.php:628
    558567msgid "Hover Color"
     
    562571#: inc/Elements/Contact_form_7.php:791 inc/Elements/Creative_Button.php:286
    563572#: inc/Elements/Post_Grid.php:567 inc/Elements/Post_Grid.php:682
    564 #: inc/Elements/Pricing_Table.php:309 inc/Elements/Pricing_Table.php:835
    565 #: inc/Elements/Pricing_Table.php:992 inc/Elements/Products.php:322
     573#: inc/Elements/Pricing_Table.php:305 inc/Elements/Pricing_Table.php:837
     574#: inc/Elements/Pricing_Table.php:994 inc/Elements/Products.php:322
    566575#: inc/Elements/Slider.php:413 inc/Elements/Staff_Member.php:699
    567576#: inc/Elements/Subscription.php:238 inc/Elements/Teaser_Box.php:587
    568 #: inc/Elements/Testimonial_Slider.php:851 inc/Elements/WpForm.php:638
     577#: inc/Elements/Testimonial_Slider.php:845 inc/Elements/WpForm.php:638
    569578msgid "Hover Background Color"
    570579msgstr ""
     
    575584#: inc/Elements/Filterable_Portfolio.php:918 inc/Elements/Icon_Box.php:683
    576585#: inc/Elements/Post_Carousel.php:500 inc/Elements/Post_Grid.php:580
    577 #: inc/Elements/Post_Grid.php:694 inc/Elements/Pricing_Table.php:1004
     586#: inc/Elements/Post_Grid.php:694 inc/Elements/Pricing_Table.php:1006
    578587#: inc/Elements/Staff_Member.php:710 inc/Elements/Subscription.php:249
    579588#: inc/Elements/Tabs.php:773 inc/Elements/Teaser_Box.php:599
    580 #: inc/Elements/Teaser_Box.php:732 inc/Elements/Testimonial_Slider.php:689
     589#: inc/Elements/Teaser_Box.php:732 inc/Elements/Testimonial_Slider.php:683
    581590msgid "Hover Shadow"
    582591msgstr ""
     
    589598#: inc/Elements/CTA.php:442 inc/Elements/Creative_Button.php:462
    590599#: inc/Elements/Creative_Button.php:479 inc/Elements/Icon_List.php:294
    591 #: inc/Elements/Icon_List.php:309 inc/Elements/Pricing_Table.php:603
    592 #: inc/Elements/Pricing_Table.php:618
     600#: inc/Elements/Icon_List.php:309 inc/Elements/Pricing_Table.php:605
     601#: inc/Elements/Pricing_Table.php:620
    593602msgid "Space between Icon & Text"
    594603msgstr ""
     
    601610#: inc/Elements/Feature_list.php:415 inc/Elements/Icon_Box.php:447
    602611#: 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
    604614msgid "Title Bottom Spacing"
    605615msgstr ""
     
    615625#: inc/Elements/Slider.php:277 inc/Elements/Tabs.php:185
    616626#: 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
    619630msgid "Title Color"
    620631msgstr ""
     
    627638#: inc/Elements/Post_Grid.php:313 inc/Elements/Promo-box.php:290
    628639#: 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
    630642msgid "Title Hover Color"
    631643msgstr ""
     
    642654msgstr ""
    643655
    644 #: inc/Elements/CTA.php:567 inc/Elements/Pricing_Table.php:710
     656#: inc/Elements/CTA.php:567 inc/Elements/Pricing_Table.php:712
    645657#: inc/Elements/Slider.php:504
    646658msgid "Button"
     
    657669#: inc/Elements/CTA.php:611 inc/Elements/Contact_form_7.php:716
    658670#: inc/Elements/Creative_Button.php:212 inc/Elements/Post_Grid.php:494
    659 #: inc/Elements/Pricing_Table.php:761 inc/Elements/Subscription.php:164
     671#: inc/Elements/Pricing_Table.php:763 inc/Elements/Subscription.php:164
    660672#: inc/Elements/Teaser_Box.php:511
    661673msgid "Button Colors"
     
    664676#: inc/Elements/CTA.php:625 inc/Elements/Creative_Button.php:226
    665677#: 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
    670683msgid "Text Color"
    671684msgstr ""
     
    673686#: inc/Elements/CTA.php:648 inc/Elements/Contact_form_7.php:754
    674687#: inc/Elements/Filterable_Portfolio.php:737 inc/Elements/Post_Grid.php:530
    675 #: inc/Elements/Pricing_Table.php:797 inc/Elements/Subscription.php:200
     688#: inc/Elements/Pricing_Table.php:799 inc/Elements/Subscription.php:200
    676689msgid "Button Shadow"
    677690msgstr ""
    678691
    679 #: inc/Elements/CTA.php:698 inc/Elements/Pricing_Table.php:846
     692#: inc/Elements/CTA.php:698 inc/Elements/Pricing_Table.php:848
    680693msgid "Button Hover Shadow"
    681694msgstr ""
     
    683696#: inc/Elements/CTA.php:708 inc/Elements/Contact_form_7.php:812
    684697#: inc/Elements/Creative_Button.php:306 inc/Elements/Icon_Box.php:672
    685 #: inc/Elements/Post_Grid.php:590 inc/Elements/Pricing_Table.php:856
    686 #: inc/Elements/Pricing_Table.php:1014 inc/Elements/Staff_Member.php:720
     698#: 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
    687700#: inc/Elements/Staff_Member.php:876 inc/Elements/Subscription.php:259
    688701#: inc/Elements/Teaser_Box.php:609 inc/Elements/Teaser_Box.php:743
     
    695708#: inc/Elements/Filterable_Portfolio.php:814 inc/Elements/Icon_Box.php:696
    696709#: inc/Elements/Post_Carousel.php:513 inc/Elements/Post_Grid.php:718
    697 #: inc/Elements/Pricing_Table.php:894 inc/Elements/Pricing_Table.php:1027
     710#: inc/Elements/Pricing_Table.php:896 inc/Elements/Pricing_Table.php:1029
    698711#: inc/Elements/Products.php:357 inc/Elements/Promo-box.php:256
    699712#: inc/Elements/Promo-box.php:429 inc/Elements/Social_Icon.php:545
     
    702715#: inc/Elements/Tabs.php:797 inc/Elements/Teaser_Box.php:280
    703716#: inc/Elements/Teaser_Box.php:623 inc/Elements/Teaser_Box.php:758
    704 #: inc/Elements/Testimonial.php:239 inc/Elements/Testimonial_Slider.php:397
    705 #: inc/Elements/Testimonial_Slider.php:711
    706 #: inc/Elements/Testimonial_Slider.php:887
     717#: 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
    707720msgid "Border Radius"
    708721msgstr ""
    709722
    710 #: inc/Elements/CTA.php:735 inc/Elements/Pricing_Table.php:872
     723#: inc/Elements/CTA.php:735 inc/Elements/Pricing_Table.php:874
    711724msgid "Button Icon Size"
    712725msgstr ""
     
    723736#: inc/Elements/Feature_list.php:540 inc/Elements/Filterable_Portfolio.php:853
    724737#: inc/Elements/Icon_Box.php:604 inc/Elements/Post_Grid.php:630
    725 #: inc/Elements/Pricing_Table.php:939 inc/Elements/Promo-box.php:343
     738#: inc/Elements/Pricing_Table.php:941 inc/Elements/Promo-box.php:343
    726739#: inc/Elements/Staff_Member.php:800 inc/Elements/Tabs.php:712
    727 #: inc/Elements/Teaser_Box.php:668 inc/Elements/Testimonial_Slider.php:625
     740#: inc/Elements/Teaser_Box.php:668 inc/Elements/Testimonial_Slider.php:619
    728741msgid "Container Colors"
    729742msgstr ""
     
    871884#: inc/Elements/Category_List.php:371 inc/Elements/Contact_form_7.php:212
    872885#: inc/Elements/Icon_Box.php:589 inc/Elements/Ninja_Forms.php:229
    873 #: inc/Elements/Pricing_Table.php:926 inc/Elements/Promo-box.php:330
     886#: inc/Elements/Pricing_Table.php:928 inc/Elements/Promo-box.php:330
    874887#: inc/Elements/Social_Icon.php:350 inc/Elements/Staff_Member.php:787
    875888#: inc/Elements/Tabs.php:692 inc/Elements/Teaser_Box.php:656
    876 #: inc/Elements/Testimonial.php:499 inc/Elements/Testimonial_Slider.php:606
     889#: inc/Elements/Testimonial.php:499 inc/Elements/Testimonial_Slider.php:600
    877890#: inc/Elements/WpForm.php:216
    878891msgid "Container Padding"
     
    947960#: inc/Elements/Teaser_Box.php:86 inc/Elements/Teaser_Box.php:161
    948961#: 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
    954968msgid "Yes"
    955969msgstr ""
     
    972986#: inc/Elements/Teaser_Box.php:87 inc/Elements/Teaser_Box.php:162
    973987#: 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
    979994msgid "No"
    980995msgstr ""
     
    9911006#: inc/Elements/Contact_form_7.php:141 inc/Elements/Ninja_Forms.php:158
    9921007#: 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
    9941010msgid "Span"
    9951011msgstr ""
     
    10241040#: inc/Elements/Icon_List.php:134 inc/Elements/Icon_List.php:161
    10251041#: inc/Elements/Ninja_Forms.php:197 inc/Elements/Post_Grid.php:111
    1026 #: inc/Elements/Post_Grid.php:458 inc/Elements/Pricing_Table.php:205
    1027 #: inc/Elements/Pricing_Table.php:232 inc/Elements/Social_Icon.php:283
     1042#: 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
    10281044#: inc/Elements/Staff_Member.php:135 inc/Elements/Subscription.php:113
    10291045#: inc/Elements/Teaser_Box.php:214 inc/Elements/Type.php:92
    10301046#: inc/Elements/Wording.php:140 inc/Elements/WpForm.php:184
     1047#: inc/Elements/heading-with-separator - Copy.php:115
    10311048#: inc/Elements/heading-with-separator.php:115
    10321049msgid "Left"
     
    10401057#: inc/Elements/Icon_List.php:138 inc/Elements/Ninja_Forms.php:201
    10411058#: inc/Elements/Post_Grid.php:115 inc/Elements/Post_Grid.php:462
    1042 #: inc/Elements/Pricing_Table.php:209 inc/Elements/Social_Icon.php:287
     1059#: inc/Elements/Pricing_Table.php:207 inc/Elements/Social_Icon.php:287
    10431060#: inc/Elements/Staff_Member.php:139 inc/Elements/Subscription.php:117
    10441061#: inc/Elements/Teaser_Box.php:218 inc/Elements/Type.php:96
    10451062#: inc/Elements/Wording.php:144 inc/Elements/WpForm.php:188
     1063#: inc/Elements/heading-with-separator - Copy.php:119
    10461064#: inc/Elements/heading-with-separator.php:119
    10471065msgid "Center"
     
    10551073#: inc/Elements/Icon_List.php:142 inc/Elements/Icon_List.php:166
    10561074#: inc/Elements/Ninja_Forms.php:205 inc/Elements/Post_Grid.php:119
    1057 #: inc/Elements/Post_Grid.php:466 inc/Elements/Pricing_Table.php:213
    1058 #: inc/Elements/Pricing_Table.php:237 inc/Elements/Social_Icon.php:291
     1075#: 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
    10591077#: inc/Elements/Staff_Member.php:143 inc/Elements/Subscription.php:121
    10601078#: inc/Elements/Teaser_Box.php:222 inc/Elements/Type.php:100
    10611079#: inc/Elements/Wording.php:148 inc/Elements/WpForm.php:192
     1080#: inc/Elements/heading-with-separator - Copy.php:123
    10621081#: inc/Elements/heading-with-separator.php:123
    10631082msgid "Right"
     
    12171236#: inc/Elements/Staff_Member.php:441 inc/Elements/Teaser_Box.php:347
    12181237#: inc/Elements/Teaser_Box.php:425 inc/Elements/Testimonial.php:286
    1219 #: inc/Elements/Testimonial_Slider.php:371
     1238#: inc/Elements/Testimonial_Slider.php:367
    12201239msgid "Bottom Spacing"
    12211240msgstr ""
     
    12531272#: inc/Elements/Staff_Member.php:129 inc/Elements/Subscription.php:107
    12541273#: 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
    12561276msgid "Set Alignment"
    12571277msgstr ""
     
    13231343
    13241344#: inc/Elements/Creative_Button.php:140 inc/Elements/Icon_List.php:155
    1325 #: inc/Elements/Pricing_Table.php:226
     1345#: inc/Elements/Pricing_Table.php:224
    13261346msgid "Icon Position"
    13271347msgstr ""
     
    15761596#: inc/Elements/Filterable_Portfolio.php:512
    15771597#: inc/Elements/Post_Carousel.php:537 inc/Elements/Products.php:369
    1578 #: inc/Elements/Slider.php:458 inc/Elements/Testimonial_Slider.php:898
     1598#: inc/Elements/Slider.php:458 inc/Elements/Testimonial_Slider.php:892
    15791599msgid "Top Spacing"
    15801600msgstr ""
     
    16431663#: inc/Elements/Flip_Box.php:84 inc/Elements/Staff_Member.php:99
    16441664#: inc/Elements/Teaser_Box.php:100 inc/Elements/Testimonial.php:107
    1645 #: inc/Elements/Testimonial_Slider.php:97
     1665#: inc/Elements/Testimonial_Slider.php:93
    16461666msgid "John Doe"
    16471667msgstr ""
     
    17071727msgstr ""
    17081728
    1709 #: inc/Elements/Flip_Box.php:522
    1710 msgid "Avatar"
    1711 msgstr ""
    1712 
    17131729#: inc/Elements/Icon_Box.php:30
    17141730msgid "DA: Icon Box"
     
    17681784
    17691785#: inc/Elements/Icon_List.php:71 inc/Elements/Icon_List.php:200
    1770 #: inc/Elements/Pricing_Table.php:148 inc/Elements/Pricing_Table.php:525
     1786#: inc/Elements/Pricing_Table.php:148 inc/Elements/Pricing_Table.php:527
    17711787msgid "List Icon"
    17721788msgstr ""
     
    18121828msgstr ""
    18131829
    1814 #: inc/Elements/Icon_List.php:347 inc/Elements/Pricing_Table.php:686
     1830#: inc/Elements/Icon_List.php:347 inc/Elements/Pricing_Table.php:688
    18151831msgid "Text Hover Color"
    18161832msgstr ""
     
    18271843#: inc/Elements/Promo-box.php:71 inc/Elements/Slider.php:64
    18281844#: inc/Elements/Staff_Member.php:74 inc/Elements/Teaser_Box.php:241
    1829 #: inc/Elements/Testimonial.php:72 inc/Elements/Testimonial_Slider.php:74
     1845#: inc/Elements/Testimonial.php:72 inc/Elements/Testimonial_Slider.php:70
    18301846msgid "Image"
    18311847msgstr ""
     
    18491865#: inc/Elements/Image_Overlay.php:147 inc/Elements/Slider.php:74
    18501866#: inc/Elements/Social_Icon.php:82 inc/Elements/Testimonial.php:94
    1851 #: inc/Elements/Testimonial_Slider.php:84
     1867#: inc/Elements/Testimonial_Slider.php:80
    18521868msgid "Link"
    18531869msgstr ""
     
    18951911
    18961912#: inc/Elements/Image_Overlay.php:400 inc/Elements/Testimonial.php:304
    1897 #: inc/Elements/Testimonial_Slider.php:409
     1913#: inc/Elements/Testimonial_Slider.php:405
    18981914msgid "Image Shadow"
    18991915msgstr ""
     
    19481964msgstr ""
    19491965
    1950 #: inc/Elements/Ninja_Forms.php:554 inc/Elements/Pricing_Table.php:733
     1966#: inc/Elements/Ninja_Forms.php:554 inc/Elements/Pricing_Table.php:735
    19511967#: inc/Elements/Teaser_Box.php:484 inc/Elements/WpForm.php:594
    19521968msgid "Button Bottom Spacing"
     
    19661982msgstr ""
    19671983
    1968 #: inc/Elements/Popular_Post.php:180
    1969 msgid "Blog Post Thumbnail"
    1970 msgstr ""
    1971 
    19721984#: inc/Elements/Post_Carousel.php:26
    19731985msgid "DA: Post Carousel"
     
    19831995
    19841996#: inc/Elements/Post_Carousel.php:122 inc/Elements/Products.php:184
    1985 #: inc/Elements/Testimonial_Slider.php:230
     1997#: inc/Elements/Testimonial_Slider.php:226
    19861998msgid "No of Slide per Page"
    19871999msgstr ""
     
    19922004
    19932005#: inc/Elements/Post_Carousel.php:135 inc/Elements/Slider.php:158
    1994 #: inc/Elements/Testimonial_Slider.php:244
     2006#: inc/Elements/Testimonial_Slider.php:240
    19952007msgid "Animation Speed"
    19962008msgstr ""
    19972009
    19982010#: inc/Elements/Post_Carousel.php:141 inc/Elements/Slider.php:164
    1999 #: inc/Elements/Testimonial_Slider.php:250
     2011#: inc/Elements/Testimonial_Slider.php:246
    20002012msgid "Value in milliseconds. Default:300"
    20012013msgstr ""
    20022014
    20032015#: inc/Elements/Post_Carousel.php:149 inc/Elements/Slider.php:172
    2004 #: inc/Elements/Testimonial_Slider.php:258
     2016#: inc/Elements/Testimonial_Slider.php:254
    20052017msgid "Slider Autoplay?"
    20062018msgstr ""
    20072019
    20082020#: inc/Elements/Post_Carousel.php:162 inc/Elements/Slider.php:185
    2009 #: inc/Elements/Testimonial_Slider.php:271
     2021#: inc/Elements/Testimonial_Slider.php:267
    20102022msgid "Autoplay Speed"
    20112023msgstr ""
    20122024
    20132025#: inc/Elements/Post_Carousel.php:171 inc/Elements/Slider.php:194
    2014 #: inc/Elements/Testimonial_Slider.php:280
     2026#: inc/Elements/Testimonial_Slider.php:276
    20152027msgid "Value in milliseconds. Default:3000"
    20162028msgstr ""
    20172029
    20182030#: inc/Elements/Post_Carousel.php:180 inc/Elements/Slider.php:203
    2019 #: inc/Elements/Testimonial_Slider.php:289
     2031#: inc/Elements/Testimonial_Slider.php:285
    20202032msgid "Infinite Loop?"
    20212033msgstr ""
     
    20462058
    20472059#: inc/Elements/Post_Carousel.php:365 inc/Elements/Products.php:257
    2048 #: inc/Elements/Slider.php:348 inc/Elements/Testimonial_Slider.php:725
     2060#: inc/Elements/Slider.php:348 inc/Elements/Testimonial_Slider.php:719
    20492061msgid "Navigation"
    20502062msgstr ""
    20512063
    20522064#: inc/Elements/Post_Carousel.php:373 inc/Elements/Products.php:266
    2053 #: inc/Elements/Slider.php:355 inc/Elements/Testimonial_Slider.php:733
     2065#: inc/Elements/Slider.php:355 inc/Elements/Testimonial_Slider.php:727
    20542066msgid "Arrow Size"
    20552067msgstr ""
    20562068
    2057 #: inc/Elements/Post_Carousel.php:396 inc/Elements/Testimonial_Slider.php:775
     2069#: inc/Elements/Post_Carousel.php:396 inc/Elements/Testimonial_Slider.php:769
    20582070msgid "Arrow Colors"
    20592071msgstr ""
    20602072
    20612073#: inc/Elements/Post_Carousel.php:410 inc/Elements/Products.php:288
    2062 #: inc/Elements/Slider.php:378 inc/Elements/Testimonial_Slider.php:789
     2074#: inc/Elements/Slider.php:378 inc/Elements/Testimonial_Slider.php:783
    20632075msgid "Arrow Color"
    20642076msgstr ""
    20652077
    20662078#: inc/Elements/Post_Carousel.php:525 inc/Elements/Products.php:333
    2067 #: inc/Elements/Slider.php:424 inc/Elements/Testimonial_Slider.php:756
     2079#: inc/Elements/Slider.php:424 inc/Elements/Testimonial_Slider.php:750
    20682080msgid "Arrow Padding"
    20692081msgstr ""
     
    21412153msgstr ""
    21422154
    2143 #: inc/Elements/Pricing_Table.php:73 inc/Elements/Pricing_Table.php:353
     2155#: inc/Elements/Pricing_Table.php:73 inc/Elements/Pricing_Table.php:355
    21442156msgid "Table Title"
    21452157msgstr ""
     
    21692181msgstr ""
    21702182
    2171 #: inc/Elements/Pricing_Table.php:165
     2183#: inc/Elements/Pricing_Table.php:163
    21722184msgid "Pricing List Text"
    21732185msgstr ""
    21742186
    2175 #: inc/Elements/Pricing_Table.php:174
     2187#: inc/Elements/Pricing_Table.php:172
    21762188msgid "Pricing Table Item"
    21772189msgstr ""
    21782190
     2191#: inc/Elements/Pricing_Table.php:177
     2192msgid "4 GB SSD Storage"
     2193msgstr ""
     2194
    21792195#: inc/Elements/Pricing_Table.php:179
    2180 msgid "4 GB SSD Storage"
     2196msgid "LiteSpeed Web Server"
    21812197msgstr ""
    21822198
    21832199#: inc/Elements/Pricing_Table.php:181
    2184 msgid "LiteSpeed Web Server"
     2200msgid "4 Addon Domains"
    21852201msgstr ""
    21862202
    21872203#: inc/Elements/Pricing_Table.php:183
    2188 msgid "4 Addon Domains"
     2204msgid "FREE Weekly Backup"
    21892205msgstr ""
    21902206
    21912207#: inc/Elements/Pricing_Table.php:185
    2192 msgid "FREE Weekly Backup"
    2193 msgstr ""
    2194 
    2195 #: inc/Elements/Pricing_Table.php:187
    21962208msgid "FREE SSL Life Time"
    21972209msgstr ""
    21982210
    2199 #: inc/Elements/Pricing_Table.php:199
     2211#: inc/Elements/Pricing_Table.php:197
    22002212msgid "Pricing Table Align"
    22012213msgstr ""
    22022214
    2203 #: inc/Elements/Pricing_Table.php:290
     2215#: inc/Elements/Pricing_Table.php:286
    22042216msgid "Table Header"
    22052217msgstr ""
    22062218
    2207 #: inc/Elements/Pricing_Table.php:321
     2219#: inc/Elements/Pricing_Table.php:317
    22082220msgid "Header Padding"
    22092221msgstr ""
    22102222
    2211 #: inc/Elements/Pricing_Table.php:333
     2223#: inc/Elements/Pricing_Table.php:335
    22122224msgid "Header Bottom Spacing"
    22132225msgstr ""
    22142226
    2215 #: inc/Elements/Pricing_Table.php:372
     2227#: inc/Elements/Pricing_Table.php:374
    22162228msgid "Separator Color"
    22172229msgstr ""
    22182230
    2219 #: inc/Elements/Pricing_Table.php:436
     2231#: inc/Elements/Pricing_Table.php:438
    22202232msgid "Table Pricing"
    22212233msgstr ""
    22222234
    2223 #: inc/Elements/Pricing_Table.php:444
     2235#: inc/Elements/Pricing_Table.php:446
    22242236msgid "Price Color"
    22252237msgstr ""
    22262238
    2227 #: inc/Elements/Pricing_Table.php:466
     2239#: inc/Elements/Pricing_Table.php:468
    22282240msgid "Price Text Color"
    22292241msgstr ""
    22302242
    2231 #: inc/Elements/Pricing_Table.php:500
     2243#: inc/Elements/Pricing_Table.php:502
    22322244msgid "Price Padding"
    22332245msgstr ""
    22342246
    2235 #: inc/Elements/Pricing_Table.php:511
     2247#: inc/Elements/Pricing_Table.php:513
    22362248msgid "Bottom Separator Color"
    22372249msgstr ""
    22382250
    2239 #: inc/Elements/Pricing_Table.php:581
     2251#: inc/Elements/Pricing_Table.php:583
    22402252msgid "Table List Spacing"
    22412253msgstr ""
    22422254
    2243 #: inc/Elements/Pricing_Table.php:589
     2255#: inc/Elements/Pricing_Table.php:591
    22442256msgid "Table Item Bottom Spacing"
    22452257msgstr ""
    22462258
    2247 #: inc/Elements/Pricing_Table.php:634
     2259#: inc/Elements/Pricing_Table.php:636
    22482260msgid "Table List Container Bottom Spacing"
    22492261msgstr ""
    22502262
    2251 #: inc/Elements/Pricing_Table.php:655
     2263#: inc/Elements/Pricing_Table.php:657
    22522264msgid "Table List Text"
    22532265msgstr ""
    22542266
    2255 #: inc/Elements/Pricing_Table.php:675
     2267#: inc/Elements/Pricing_Table.php:677
    22562268msgid "List Item Separator Color"
    22572269msgstr ""
    22582270
    2259 #: inc/Elements/Pricing_Table.php:718
     2271#: inc/Elements/Pricing_Table.php:720
    22602272msgid "Space between Button Text & Icon"
    22612273msgstr ""
    22622274
    2263 #: inc/Elements/Pricing_Table.php:918
     2275#: inc/Elements/Pricing_Table.php:920
    22642276msgid "Pricing Table Content"
    22652277msgstr ""
     
    23352347
    23362348#: inc/Elements/Products.php:174 inc/Elements/Slider.php:150
    2337 #: inc/Elements/Testimonial_Slider.php:222
     2349#: inc/Elements/Testimonial_Slider.php:218
    23382350msgid "Slider Navigation Settings"
    23392351msgstr ""
     
    23522364
    23532365#: inc/Elements/Products.php:300 inc/Elements/Slider.php:390
    2354 #: inc/Elements/Testimonial_Slider.php:801
     2366#: inc/Elements/Testimonial_Slider.php:795
    23552367msgid "Arrow Background Color"
    23562368msgstr ""
    23572369
    23582370#: inc/Elements/Products.php:385 inc/Elements/Slider.php:491
    2359 #: inc/Elements/Testimonial_Slider.php:813
    2360 #: inc/Elements/Testimonial_Slider.php:862
     2371#: inc/Elements/Testimonial_Slider.php:807
     2372#: inc/Elements/Testimonial_Slider.php:856
    23612373msgid "Arrow Shadow"
    23622374msgstr ""
     
    25702582msgstr ""
    25712583
    2572 #: inc/Elements/Social_Icon.php:591
     2584#: inc/Elements/Social_Icon.php:603
    25732585msgid "Typography"
    25742586msgstr ""
    25752587
    2576 #: inc/Elements/Social_Icon.php:601
     2588#: inc/Elements/Social_Icon.php:613
    25772589msgid "Space between Name and Icon"
    25782590msgstr ""
     
    25952607
    25962608#: inc/Elements/Staff_Member.php:110 inc/Elements/Testimonial.php:117
    2597 #: inc/Elements/Testimonial_Slider.php:107
     2609#: inc/Elements/Testimonial_Slider.php:103
    25982610msgid "Developer"
    25992611msgstr ""
     
    26462658
    26472659#: inc/Elements/Staff_Member.php:380 inc/Elements/Testimonial.php:344
    2648 #: inc/Elements/Testimonial_Slider.php:448
     2660#: inc/Elements/Testimonial_Slider.php:442
    26492661msgid "Name Color"
    26502662msgstr ""
    26512663
    26522664#: inc/Elements/Staff_Member.php:392 inc/Elements/Testimonial.php:355
    2653 #: inc/Elements/Testimonial_Slider.php:459
     2665#: inc/Elements/Testimonial_Slider.php:453
    26542666msgid "Name Hover Color"
    26552667msgstr ""
     
    27162728
    27172729#: inc/Elements/Subscription.php:301 inc/Elements/Testimonial.php:454
    2718 #: inc/Elements/Testimonial_Slider.php:561
     2730#: inc/Elements/Testimonial_Slider.php:555
    27192731msgid "Text Bottom Spacing"
    27202732msgstr ""
     
    27522764msgstr ""
    27532765
    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
    27552768msgid "Title Background Color"
    27562769msgstr ""
     
    28602873msgstr ""
    28612874
    2862 #: inc/Elements/Testimonial.php:97 inc/Elements/Testimonial_Slider.php:87
     2875#: inc/Elements/Testimonial.php:97 inc/Elements/Testimonial_Slider.php:83
    28632876msgid "https://softfirm.com"
    28642877msgstr ""
    28652878
    28662879#: inc/Elements/Testimonial.php:106 inc/Elements/Testimonial.php:319
    2867 #: inc/Elements/Testimonial_Slider.php:96
    2868 #: inc/Elements/Testimonial_Slider.php:423
     2880#: inc/Elements/Testimonial_Slider.php:92
     2881#: inc/Elements/Testimonial_Slider.php:419
    28692882msgid "Reviewer Name"
    28702883msgstr ""
    28712884
    2872 #: inc/Elements/Testimonial.php:124 inc/Elements/Testimonial_Slider.php:114
     2885#: inc/Elements/Testimonial.php:124 inc/Elements/Testimonial_Slider.php:110
    28732886msgid "Show/Hide Organization"
    28742887msgstr ""
    28752888
    2876 #: inc/Elements/Testimonial.php:140 inc/Elements/Testimonial_Slider.php:130
     2889#: inc/Elements/Testimonial.php:140 inc/Elements/Testimonial_Slider.php:126
    28772890msgid "Organization"
    28782891msgstr ""
    28792892
    2880 #: inc/Elements/Testimonial.php:141 inc/Elements/Testimonial_Slider.php:131
     2893#: inc/Elements/Testimonial.php:141 inc/Elements/Testimonial_Slider.php:127
    28812894msgid "Softfirm"
    28822895msgstr ""
    28832896
    28842897#: inc/Elements/Testimonial.php:156 inc/Elements/Testimonial.php:445
    2885 #: inc/Elements/Testimonial_Slider.php:143
    2886 #: inc/Elements/Testimonial_Slider.php:552
     2898#: inc/Elements/Testimonial_Slider.php:139
     2899#: inc/Elements/Testimonial_Slider.php:546
    28872900msgid "Reviewer Text"
    28882901msgstr ""
    28892902
    2890 #: inc/Elements/Testimonial.php:157 inc/Elements/Testimonial_Slider.php:144
     2903#: inc/Elements/Testimonial.php:157 inc/Elements/Testimonial_Slider.php:140
    28912904msgid ""
    28922905"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod "
     
    28942907msgstr ""
    28952908
    2896 #: inc/Elements/Testimonial.php:164 inc/Elements/Testimonial_Slider.php:202
     2909#: inc/Elements/Testimonial.php:164 inc/Elements/Testimonial_Slider.php:198
    28972910msgid "Testimonial Layout"
    28982911msgstr ""
     
    29142927msgstr ""
    29152928
    2916 #: inc/Elements/Testimonial.php:182 inc/Elements/Testimonial_Slider.php:188
     2929#: inc/Elements/Testimonial.php:182 inc/Elements/Testimonial_Slider.php:184
    29172930msgid "Show/Hide Quote"
    29182931msgstr ""
    29192932
    2920 #: inc/Elements/Testimonial.php:202 inc/Elements/Testimonial_Slider.php:305
     2933#: inc/Elements/Testimonial.php:202 inc/Elements/Testimonial_Slider.php:301
    29212934msgid "Reviewer Image"
    29222935msgstr ""
    29232936
    2924 #: inc/Elements/Testimonial.php:209 inc/Elements/Testimonial_Slider.php:312
     2937#: inc/Elements/Testimonial.php:209 inc/Elements/Testimonial_Slider.php:308
    29252938msgid "Image Size"
    29262939msgstr ""
    29272940
    2928 #: inc/Elements/Testimonial.php:378 inc/Elements/Testimonial_Slider.php:482
     2941#: inc/Elements/Testimonial.php:378 inc/Elements/Testimonial_Slider.php:476
    29292942msgid "Reviewer Title"
    29302943msgstr ""
    29312944
    2932 #: inc/Elements/Testimonial.php:411 inc/Elements/Testimonial_Slider.php:516
     2945#: inc/Elements/Testimonial.php:411 inc/Elements/Testimonial_Slider.php:510
    29332946msgid "Reviewer Organizaiton"
    29342947msgstr ""
    29352948
    2936 #: inc/Elements/Testimonial.php:422 inc/Elements/Testimonial_Slider.php:529
     2949#: inc/Elements/Testimonial.php:422 inc/Elements/Testimonial_Slider.php:523
    29372950msgid "Organization Color"
    29382951msgstr ""
    29392952
    2940 #: inc/Elements/Testimonial.php:491 inc/Elements/Testimonial_Slider.php:598
     2953#: inc/Elements/Testimonial.php:491 inc/Elements/Testimonial_Slider.php:592
    29412954msgid "Testimonial Container"
    29422955msgstr ""
     
    29462959msgstr ""
    29472960
    2948 #: inc/Elements/Testimonial_Slider.php:63
     2961#: inc/Elements/Testimonial_Slider.php:59
    29492962msgid "Testimonial Slider"
    29502963msgstr ""
    29512964
    2952 #: inc/Elements/Testimonial_Slider.php:153
     2965#: inc/Elements/Testimonial_Slider.php:149
    29532966msgid "Testimonial Items"
    29542967msgstr ""
    29552968
    2956 #: inc/Elements/Testimonial_Slider.php:236
     2969#: inc/Elements/Testimonial_Slider.php:232
    29572970msgid "Default:1"
    29582971msgstr ""
     
    29953008
    29963009#: inc/Elements/Wording.php:56
    2997 msgid "Wording"
     3010msgid "Multi-Color Text"
    29983011msgstr ""
    29993012
     
    30043017
    30053018#: inc/Elements/Wording.php:67
    3006 msgid "Word1"
     3019msgid "Definitive"
    30073020msgstr ""
    30083021
    30093022#: inc/Elements/Wording.php:77
    3010 msgid "Word2"
     3023msgid "Addons"
    30113024msgstr ""
    30123025
    30133026#: inc/Elements/Wording.php:86
    3014 msgid "Word3"
    3015 msgstr ""
    3016 
    3017 #: inc/Elements/Wording.php:95
    3018 msgid "Word4"
     3027msgid "For"
    30193028msgstr ""
    30203029
     
    31683177msgstr ""
    31693178
     3179#: inc/Elements/heading-with-separator - Copy.php:31
    31703180#: inc/Elements/heading-with-separator.php:31
    31713181msgid "DA: Heading with Separator"
    31723182msgstr ""
    31733183
     3184#: inc/Elements/heading-with-separator - Copy.php:61
    31743185#: inc/Elements/heading-with-separator.php:61
    31753186msgid "Heading with Separator"
    31763187msgstr ""
    31773188
     3189#: inc/Elements/heading-with-separator - Copy.php:71
    31783190#: inc/Elements/heading-with-separator.php:71
    31793191msgid "Heading Text"
    31803192msgstr ""
    31813193
     3194#: inc/Elements/heading-with-separator - Copy.php:72
    31823195#: inc/Elements/heading-with-separator.php:72
    31833196msgid "I am heading or text"
    31843197msgstr ""
    31853198
     3199#: inc/Elements/heading-with-separator - Copy.php:96
    31863200#: inc/Elements/heading-with-separator.php:96
    31873201msgid "Show/Hide Separator"
    31883202msgstr ""
    31893203
    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
    31913206msgid "Heading"
    31923207msgstr ""
    31933208
    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
    31953211msgid "Title Colors"
    31963212msgstr ""
    31973213
    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
    31993216msgid "Title Background Hover Color"
    32003217msgstr ""
    32013218
    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
    32033221msgid "Heading Separator"
    32043222msgstr ""
    32053223
    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
    32073226msgid "separator Color"
    32083227msgstr ""
    32093228
    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
    32113231msgid "Separator Hover Color"
    32123232msgstr ""
    32133233
    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
    32153236msgid "Separator Width"
    32163237msgstr ""
    32173238
    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
    32193241msgid "Separator Height"
    32203242msgstr ""
    32213243
    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
    32233246msgid "Separator Bottom Spacing"
    32243247msgstr ""
    32253248
    3226 #: inc/Reuses/Da_Post.php:111 inc/Reuses/Da_Post.php:476
     3249#: inc/Reuses/Da_Post.php:111 inc/Reuses/Da_Post.php:585
    32273250#, php-format
    32283251msgid "Continue reading%s"
    32293252msgstr ""
    32303253
    3231 #: inc/Reuses/Da_Post.php:120 inc/Reuses/Da_Post.php:486
     3254#: inc/Reuses/Da_Post.php:120 inc/Reuses/Da_Post.php:595
    32323255msgid ", "
    32333256msgstr ""
    32343257
    3235 #: inc/Reuses/Da_Post.php:122 inc/Reuses/Da_Post.php:488
     3258#: inc/Reuses/Da_Post.php:122 inc/Reuses/Da_Post.php:597
    32363259#, php-format
    32373260msgid "Tagged %1$s"
    32383261msgstr ""
    32393262
    3240 #: inc/Reuses/Da_Post.php:512
     3263#: inc/Reuses/Da_Post.php:361
     3264msgid "Blog Post Thumbnail"
     3265msgstr ""
     3266
     3267#: inc/Reuses/Da_Post.php:621
    32413268msgid "Post is not exist"
    32423269msgstr ""
     
    32523279msgstr ""
    32533280
    3254 #: inc/Reuses/Reuse.php:480 inc/Reuses/Reuse.php:500 inc/Reuses/Reuse.php:519
     3281#: inc/Reuses/Reuse.php:504 inc/Reuses/Reuse.php:524 inc/Reuses/Reuse.php:543
    32553282msgid "No Form found. Create New form "
    32563283msgstr ""
    32573284
    3258 #: inc/Reuses/Reuse.php:481 inc/Reuses/Reuse.php:520
     3285#: inc/Reuses/Reuse.php:505 inc/Reuses/Reuse.php:544
    32593286msgid "Click here"
    32603287msgstr ""
    32613288
    3262 #: inc/Reuses/Reuse.php:604
     3289#: inc/Reuses/Reuse.php:628
    32633290msgid "none"
    32643291msgstr ""
    32653292
    3266 #: inc/Reuses/Reuse.php:605
     3293#: inc/Reuses/Reuse.php:629
    32673294msgid "bounce"
    32683295msgstr ""
    32693296
    3270 #: inc/Reuses/Reuse.php:606
     3297#: inc/Reuses/Reuse.php:630
    32713298msgid "flash"
    32723299msgstr ""
    32733300
    3274 #: inc/Reuses/Reuse.php:607
     3301#: inc/Reuses/Reuse.php:631
    32753302msgid "pulse"
    32763303msgstr ""
    32773304
    3278 #: inc/Reuses/Reuse.php:608
     3305#: inc/Reuses/Reuse.php:632
    32793306msgid "rubberBand"
    32803307msgstr ""
    32813308
    3282 #: inc/Reuses/Reuse.php:609
     3309#: inc/Reuses/Reuse.php:633
    32833310msgid "shake"
    32843311msgstr ""
    32853312
    3286 #: inc/Reuses/Reuse.php:610
     3313#: inc/Reuses/Reuse.php:634
    32873314msgid "headShake"
    32883315msgstr ""
    32893316
    3290 #: inc/Reuses/Reuse.php:611
     3317#: inc/Reuses/Reuse.php:635
    32913318msgid "swing"
    32923319msgstr ""
    32933320
    3294 #: inc/Reuses/Reuse.php:612
     3321#: inc/Reuses/Reuse.php:636
    32953322msgid "tada"
    32963323msgstr ""
    32973324
    3298 #: inc/Reuses/Reuse.php:613
     3325#: inc/Reuses/Reuse.php:637
    32993326msgid "wobble"
    33003327msgstr ""
    33013328
    3302 #: inc/Reuses/Reuse.php:614
     3329#: inc/Reuses/Reuse.php:638
    33033330msgid "jello"
    33043331msgstr ""
    33053332
    3306 #: inc/Reuses/Reuse.php:615
     3333#: inc/Reuses/Reuse.php:639
    33073334msgid "bounceIn"
    33083335msgstr ""
    33093336
    3310 #: inc/Reuses/Reuse.php:616
     3337#: inc/Reuses/Reuse.php:640
    33113338msgid "bounceInDown"
    33123339msgstr ""
    33133340
    3314 #: inc/Reuses/Reuse.php:617 inc/Reuses/Reuse.php:618
     3341#: inc/Reuses/Reuse.php:641 inc/Reuses/Reuse.php:642
    33153342msgid "bounceInLeft"
    33163343msgstr ""
    33173344
    3318 #: inc/Reuses/Reuse.php:619
     3345#: inc/Reuses/Reuse.php:643
    33193346msgid "bounceInUp"
    33203347msgstr ""
    33213348
    3322 #: inc/Reuses/Reuse.php:620
     3349#: inc/Reuses/Reuse.php:644
    33233350msgid "bounceOut"
    33243351msgstr ""
    33253352
    3326 #: inc/Reuses/Reuse.php:621
     3353#: inc/Reuses/Reuse.php:645
    33273354msgid "bounceOutDown"
    33283355msgstr ""
    33293356
    3330 #: inc/Reuses/Reuse.php:622
     3357#: inc/Reuses/Reuse.php:646
    33313358msgid "bounceOutLeft"
    33323359msgstr ""
    33333360
    3334 #: inc/Reuses/Reuse.php:623
     3361#: inc/Reuses/Reuse.php:647
    33353362msgid "bounceOutRight"
    33363363msgstr ""
    33373364
    3338 #: inc/Reuses/Reuse.php:624
     3365#: inc/Reuses/Reuse.php:648
    33393366msgid "bounceOutUp"
    33403367msgstr ""
    33413368
    3342 #: inc/Reuses/Reuse.php:625
     3369#: inc/Reuses/Reuse.php:649
    33433370msgid "fadeIn"
    33443371msgstr ""
    33453372
    3346 #: inc/Reuses/Reuse.php:626
     3373#: inc/Reuses/Reuse.php:650
    33473374msgid "fadeInDown"
    33483375msgstr ""
    33493376
    3350 #: inc/Reuses/Reuse.php:627
     3377#: inc/Reuses/Reuse.php:651
    33513378msgid "fadeInDownBig"
    33523379msgstr ""
    33533380
    3354 #: inc/Reuses/Reuse.php:628
     3381#: inc/Reuses/Reuse.php:652
    33553382msgid "fadeInLeft"
    33563383msgstr ""
    33573384
    3358 #: inc/Reuses/Reuse.php:629
     3385#: inc/Reuses/Reuse.php:653
    33593386msgid "fadeInLeftBig"
    33603387msgstr ""
    33613388
    3362 #: inc/Reuses/Reuse.php:630
     3389#: inc/Reuses/Reuse.php:654
    33633390msgid "fadeInRight"
    33643391msgstr ""
    33653392
    3366 #: inc/Reuses/Reuse.php:631
     3393#: inc/Reuses/Reuse.php:655
    33673394msgid "fadeInRightBig"
    33683395msgstr ""
    33693396
    3370 #: inc/Reuses/Reuse.php:632
     3397#: inc/Reuses/Reuse.php:656
    33713398msgid "fadeInUp"
    33723399msgstr ""
    33733400
    3374 #: inc/Reuses/Reuse.php:633
     3401#: inc/Reuses/Reuse.php:657
    33753402msgid "fadeInUpBig"
    33763403msgstr ""
    33773404
    3378 #: inc/Reuses/Reuse.php:634
     3405#: inc/Reuses/Reuse.php:658
    33793406msgid "fadeOut"
    33803407msgstr ""
    33813408
    3382 #: inc/Reuses/Reuse.php:635
     3409#: inc/Reuses/Reuse.php:659
    33833410msgid "fadeOutDown"
    33843411msgstr ""
    33853412
    3386 #: inc/Reuses/Reuse.php:636
     3413#: inc/Reuses/Reuse.php:660
    33873414msgid "fadeOutDownBig"
    33883415msgstr ""
    33893416
    3390 #: inc/Reuses/Reuse.php:637
     3417#: inc/Reuses/Reuse.php:661
    33913418msgid "fadeOutLeft"
    33923419msgstr ""
    33933420
    3394 #: inc/Reuses/Reuse.php:638
     3421#: inc/Reuses/Reuse.php:662
    33953422msgid "fadeOutLeftBig"
    33963423msgstr ""
    33973424
    3398 #: inc/Reuses/Reuse.php:639
     3425#: inc/Reuses/Reuse.php:663
    33993426msgid "fadeOutRight"
    34003427msgstr ""
    34013428
    3402 #: inc/Reuses/Reuse.php:640
     3429#: inc/Reuses/Reuse.php:664
    34033430msgid "fadeOutRightBig"
    34043431msgstr ""
    34053432
    3406 #: inc/Reuses/Reuse.php:641
     3433#: inc/Reuses/Reuse.php:665
    34073434msgid "fadeOutUp"
    34083435msgstr ""
    34093436
    3410 #: inc/Reuses/Reuse.php:642
     3437#: inc/Reuses/Reuse.php:666
    34113438msgid "fadeOutUpBig"
    34123439msgstr ""
    34133440
    3414 #: inc/Reuses/Reuse.php:643
     3441#: inc/Reuses/Reuse.php:667
    34153442msgid "flipInX"
    34163443msgstr ""
    34173444
    3418 #: inc/Reuses/Reuse.php:644
     3445#: inc/Reuses/Reuse.php:668
    34193446msgid "flipInY"
    34203447msgstr ""
    34213448
    3422 #: inc/Reuses/Reuse.php:645
     3449#: inc/Reuses/Reuse.php:669
    34233450msgid "flipOutX"
    34243451msgstr ""
    34253452
    3426 #: inc/Reuses/Reuse.php:646
     3453#: inc/Reuses/Reuse.php:670
    34273454msgid "flipOutY"
    34283455msgstr ""
    34293456
    3430 #: inc/Reuses/Reuse.php:647
     3457#: inc/Reuses/Reuse.php:671
    34313458msgid "lightSpeedIn"
    34323459msgstr ""
    34333460
    3434 #: inc/Reuses/Reuse.php:648
     3461#: inc/Reuses/Reuse.php:672
    34353462msgid "lightSpeedOut"
    34363463msgstr ""
    34373464
    3438 #: inc/Reuses/Reuse.php:649
     3465#: inc/Reuses/Reuse.php:673
    34393466msgid "rotateIn"
    34403467msgstr ""
    34413468
    3442 #: inc/Reuses/Reuse.php:650
     3469#: inc/Reuses/Reuse.php:674
    34433470msgid "rotateInDownLeft"
    34443471msgstr ""
    34453472
    3446 #: inc/Reuses/Reuse.php:651
     3473#: inc/Reuses/Reuse.php:675
    34473474msgid "rotateInDownRight"
    34483475msgstr ""
    34493476
    3450 #: inc/Reuses/Reuse.php:652
     3477#: inc/Reuses/Reuse.php:676
    34513478msgid "rotateInUpLeft"
    34523479msgstr ""
    34533480
    3454 #: inc/Reuses/Reuse.php:653
     3481#: inc/Reuses/Reuse.php:677
    34553482msgid "rotateInUpRight"
    34563483msgstr ""
    34573484
    3458 #: inc/Reuses/Reuse.php:654
     3485#: inc/Reuses/Reuse.php:678
    34593486msgid "rotateOut"
    34603487msgstr ""
    34613488
    3462 #: inc/Reuses/Reuse.php:655
     3489#: inc/Reuses/Reuse.php:679
    34633490msgid "rotateOutDownLeft"
    34643491msgstr ""
    34653492
    3466 #: inc/Reuses/Reuse.php:656
     3493#: inc/Reuses/Reuse.php:680
    34673494msgid "rotateOutDownRight"
    34683495msgstr ""
    34693496
    3470 #: inc/Reuses/Reuse.php:657
     3497#: inc/Reuses/Reuse.php:681
    34713498msgid "rotateOutUpLeft"
    34723499msgstr ""
    34733500
    3474 #: inc/Reuses/Reuse.php:658
     3501#: inc/Reuses/Reuse.php:682
    34753502msgid "rotateOutUpRight"
    34763503msgstr ""
    34773504
    3478 #: inc/Reuses/Reuse.php:659
     3505#: inc/Reuses/Reuse.php:683
    34793506msgid "hinge"
    34803507msgstr ""
    34813508
    3482 #: inc/Reuses/Reuse.php:660
     3509#: inc/Reuses/Reuse.php:684
    34833510msgid "jackInTheBox"
    34843511msgstr ""
    34853512
    3486 #: inc/Reuses/Reuse.php:661
     3513#: inc/Reuses/Reuse.php:685
    34873514msgid "rollIn"
    34883515msgstr ""
    34893516
    3490 #: inc/Reuses/Reuse.php:662
     3517#: inc/Reuses/Reuse.php:686
    34913518msgid "rollOut"
    34923519msgstr ""
    34933520
    3494 #: inc/Reuses/Reuse.php:663
     3521#: inc/Reuses/Reuse.php:687
    34953522msgid "zoomIn"
    34963523msgstr ""
    34973524
    3498 #: inc/Reuses/Reuse.php:664
     3525#: inc/Reuses/Reuse.php:688
    34993526msgid "zoomInDown"
    35003527msgstr ""
    35013528
    3502 #: inc/Reuses/Reuse.php:665
     3529#: inc/Reuses/Reuse.php:689
    35033530msgid "zoomInLeft"
    35043531msgstr ""
    35053532
    3506 #: inc/Reuses/Reuse.php:666
     3533#: inc/Reuses/Reuse.php:690
    35073534msgid "zoomInRight"
    35083535msgstr ""
    35093536
    3510 #: inc/Reuses/Reuse.php:667
     3537#: inc/Reuses/Reuse.php:691
    35113538msgid "zoomInUp"
    35123539msgstr ""
    35133540
    3514 #: inc/Reuses/Reuse.php:668
     3541#: inc/Reuses/Reuse.php:692
    35153542msgid "zoomOut"
    35163543msgstr ""
    35173544
    3518 #: inc/Reuses/Reuse.php:669
     3545#: inc/Reuses/Reuse.php:693
    35193546msgid "zoomOutDown"
    35203547msgstr ""
    35213548
    3522 #: inc/Reuses/Reuse.php:670
     3549#: inc/Reuses/Reuse.php:694
    35233550msgid "zoomOutLeft"
    35243551msgstr ""
    35253552
    3526 #: inc/Reuses/Reuse.php:671
     3553#: inc/Reuses/Reuse.php:695
    35273554msgid "zoomOutRight"
    35283555msgstr ""
    35293556
    3530 #: inc/Reuses/Reuse.php:672
     3557#: inc/Reuses/Reuse.php:696
    35313558msgid "zoomOutUp"
    35323559msgstr ""
    35333560
    3534 #: inc/Reuses/Reuse.php:673
     3561#: inc/Reuses/Reuse.php:697
    35353562msgid "slideInDown"
    35363563msgstr ""
    35373564
    3538 #: inc/Reuses/Reuse.php:674
     3565#: inc/Reuses/Reuse.php:698
    35393566msgid "slideInLeft"
    35403567msgstr ""
    35413568
    3542 #: inc/Reuses/Reuse.php:675
     3569#: inc/Reuses/Reuse.php:699
    35433570msgid "slideInRight"
    35443571msgstr ""
    35453572
    3546 #: inc/Reuses/Reuse.php:676
     3573#: inc/Reuses/Reuse.php:700
    35473574msgid "slideInUp"
    35483575msgstr ""
    35493576
    3550 #: inc/Reuses/Reuse.php:677
     3577#: inc/Reuses/Reuse.php:701
    35513578msgid "slideOutDown"
    35523579msgstr ""
    35533580
    3554 #: inc/Reuses/Reuse.php:678
     3581#: inc/Reuses/Reuse.php:702
    35553582msgid "slideOutLeft"
    35563583msgstr ""
    35573584
    3558 #: inc/Reuses/Reuse.php:679
     3585#: inc/Reuses/Reuse.php:703
    35593586msgid "slideOutRight"
    35603587msgstr ""
    35613588
    3562 #: inc/Reuses/Reuse.php:680
     3589#: inc/Reuses/Reuse.php:704
    35633590msgid "slideOutUp"
    35643591msgstr ""
    35653592
    3566 #: inc/Reuses/Reuse.php:681
     3593#: inc/Reuses/Reuse.php:705
    35673594msgid "None"
    35683595msgstr ""
  • definitive-addons-for-elementor/trunk/readme.txt

    r2708488 r2720175  
    55Tested up to: 5.9.3
    66Requires PHP: 5.4
    7 Stable tag: 1.5.5
    8 Version: 1.5.5
     7Stable tag: 1.5.6
     8Version: 1.5.6
    99License: GPLv3
    1010License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    102102== Changelog ==
    103103
     104= 1.5.6 =
     105many elements modified
     106few issues fixed
     107
    104108= 1.5.5 =
    105109not all files committed in previous version
Note: See TracChangeset for help on using the changeset viewer.