Changeset 2686404
- Timestamp:
- 03/01/2022 08:27:50 AM (4 years ago)
- Location:
- definitive-addons-for-elementor/trunk
- Files:
-
- 13 edited
-
css/dafe_style.css (modified) (2 diffs)
-
definitive_adons_elementor.php (modified) (2 diffs)
-
inc/Elements/Category_Box.php (modified) (2 diffs)
-
inc/Elements/Category_List.php (modified) (6 diffs)
-
inc/Elements/Counter.php (modified) (15 diffs)
-
inc/Elements/Filterable_Portfolio.php (modified) (4 diffs)
-
inc/Elements/Icon_Box.php (modified) (25 diffs)
-
inc/Elements/Promo-box.php (modified) (9 diffs)
-
inc/Elements/Staff_Member.php (modified) (16 diffs)
-
inc/Elements/heading-with-separator.php (modified) (9 diffs)
-
inc/Reuses/Reuse.php (modified) (4 diffs)
-
languages/definitive-addons-for-elementor.pot (modified) (41 diffs)
-
readme.txt (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
definitive-addons-for-elementor/trunk/css/dafe_style.css
r2681173 r2686404 591 591 /* */ 592 592 593 /* Icon Box */ 594 .dafe-icon-box-entry .dafe-icon-container { 595 text-align:center;display:inline-block; 596 } 597 .dafe-icon-box-desc { 598 text-align:center; 599 } 600 .dafe-icon-box-entry.left,.dafe-icon-box-desc.left { 601 text-align:left; 602 } 603 .dafe-icon-box-entry.center,.dafe-icon-box-desc.center { 604 text-align:center; 605 } 606 .dafe-icon-box-entry.right,.dafe-icon-box-desc.right { 607 text-align:right; 608 } 609 /************/ 593 610 594 611 /* Counter */ … … 600 617 font-size:28px; 601 618 } 602 619 .counter-content .counter-text.block { 620 display:block; 621 } 622 .counter-container .icon-container { 623 text-align:center;display:inline-block; 624 } 625 626 .counter-container.left { 627 text-align:left; 628 } 629 .counter-container.center { 630 text-align:center; 631 } 632 .counter-container.right { 633 text-align:right; 634 } 603 635 /* Counter End */ 604 636 -
definitive-addons-for-elementor/trunk/definitive_adons_elementor.php
r2681173 r2686404 4 4 * Description: Advanced Widgets for Elementor Page Builder. 5 5 * Plugin URI: https://softfirm.net/ 6 * Version: 1.4.1 56 * Version: 1.4.16 7 7 * Author: Softfirm 8 8 * Author URI: https://softfirm.net/definitive-addons/ … … 31 31 * @var string The plugin version. 32 32 */ 33 const VERSION = '1.4.1 5';33 const VERSION = '1.4.16'; 34 34 35 35 /** -
definitive-addons-for-elementor/trunk/inc/Elements/Category_Box.php
r2675151 r2686404 8 8 namespace Definitive_Addons_Elementor\Elements; 9 9 use Elementor\Group_Control_Background; 10 use Elementor\Group_Control_Box_Shadow; 11 use Elementor\Group_Control_Text_Shadow; 12 use Elementor\Group_Control_Text_Stroke; 10 13 use Elementor\Repeater; 11 14 use Elementor\Controls_Manager; … … 80 83 ] 81 84 ); 85 86 87 $this->add_control( 88 'ovl_background', 89 [ 90 'label' => __( 'Overlay Background Color', 'definitive-addons-for-elementor' ), 91 'type' => Controls_Manager::COLOR, 92 'selectors' => [ 93 '{{WRAPPER}} .product-cat-box-title a,{{WRAPPER}} .product-category-box-text' => 'background-color: {{VALUE}}', 94 ], 95 ] 96 ); 97 98 $this->add_control( 99 'ovl_hvr_background', 100 [ 101 'label' => __( 'Overlay Background Hover Color', 'definitive-addons-for-elementor' ), 102 'type' => Controls_Manager::COLOR, 103 'selectors' => [ 104 '{{WRAPPER}} .product-category-box-text:hover,{{WRAPPER}} .product-category-box-text:hover .product-cat-box-title a' => 'background-color: {{VALUE}}', 105 ], 106 ] 107 ); 108 109 $this->add_responsive_control( 110 'dafe_cat_ovl_paddings', 111 [ 112 'label' => __( 'Overlay Padding', 'definitive-addons-for-elementor' ), 113 'type' => Controls_Manager::DIMENSIONS, 114 'size_units' => [ 'px', '%' ], 115 'selectors' => [ 116 '{{WRAPPER}} .product-category-box-text' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}}; overflow: hidden;', 117 ], 118 ] 119 ); 120 121 $this->add_group_control( 122 Group_Control_Box_Shadow::get_type(), 123 [ 124 'label' => __( 'Overlay Shadow', 'definitive-addons-for-elementor' ), 125 'name' => 'dafe_icon_box_shadow', 126 127 'selector' => '{{WRAPPER}} .dafe-icon-box-entry', 128 ] 129 ); 130 131 132 133 134 $this->end_controls_section(); 135 136 // Overlay Title style 137 138 $this->start_controls_section( 139 'overlay_section_title_style', 140 [ 141 'label' => __( 'Title Style', 'definitive-addons-for-elementor' ), 142 'tab' => Controls_Manager::TAB_STYLE, 143 ] 144 ); 82 145 83 146 $this->add_control( 84 147 'title_color', 85 148 [ 86 'label' => __( 'Text Color', 'definitive-addons-for-elementor' ), 87 'type' => Controls_Manager::COLOR, 88 'selectors' => [ 89 '{{WRAPPER}} .product-cat-box-title a,{{WRAPPER}} .box-product-count a' => 'color: {{VALUE}}', 90 ], 91 ] 92 ); 93 $this->add_group_control( 94 Group_Control_Background::get_type(), 95 [ 96 'name' => 'ovl_background', 97 'selector' => '{{WRAPPER}} .product-cat-box-title a,{{WRAPPER}} .product-category-box-text', 98 'exclude' => [ 99 'image' 100 ] 101 ] 102 ); 103 $this->add_group_control( 149 'label' => __( 'Title Color', 'definitive-addons-for-elementor' ), 150 'type' => Controls_Manager::COLOR, 151 'selectors' => [ 152 '{{WRAPPER}} .product-cat-box-title a' => 'color: {{VALUE}}', 153 ], 154 ] 155 ); 156 157 $this->add_control( 158 'title_hover_color', 159 [ 160 'label' => __( 'Title Hover Color', 'definitive-addons-for-elementor' ), 161 'type' => Controls_Manager::COLOR, 162 'selectors' => [ 163 '{{WRAPPER}} .product-cat-box-title a:hover' => 'color: {{VALUE}}', 164 ], 165 ] 166 ); 167 168 $this->add_group_control( 104 169 Group_Control_Typography::get_type(), 105 170 [ 106 171 'name' => 'title_fonts', 107 'selector' => '{{WRAPPER}} .product-cat-box-title a ,{{WRAPPER}} .box-product-count',172 'selector' => '{{WRAPPER}} .product-cat-box-title a', 108 173 109 174 ] 110 175 ); 111 112 176 177 $this->add_group_control( 178 Group_Control_Text_Shadow::get_type(), 179 [ 180 181 'name' => 'dafe_title_text_shadow', 182 183 'selector' => '{{WRAPPER}} .product-cat-box-title a', 184 ] 185 ); 186 187 188 $this->add_group_control( 189 Group_Control_Text_Stroke::get_type(), 190 [ 191 192 'name' => 'ovl_title_stroke', 193 'selector' => '{{WRAPPER}} .product-cat-box-title a', 194 ] 195 ); 196 197 113 198 $this->end_controls_section(); 199 200 // Overlay Count style 201 202 $this->start_controls_section( 203 'overlay_section_count_style', 204 [ 205 'label' => __( 'Count Style', 'definitive-addons-for-elementor' ), 206 'tab' => Controls_Manager::TAB_STYLE, 207 ] 208 ); 209 210 $this->add_control( 211 'count_color', 212 [ 213 'label' => __( 'Count Color', 'definitive-addons-for-elementor' ), 214 'type' => Controls_Manager::COLOR, 215 'selectors' => [ 216 '{{WRAPPER}} .box-product-count a' => 'color: {{VALUE}}', 217 ], 218 ] 219 ); 220 221 $this->add_control( 222 'count_hover_color', 223 [ 224 'label' => __( 'Count Hover Color', 'definitive-addons-for-elementor' ), 225 'type' => Controls_Manager::COLOR, 226 'selectors' => [ 227 '{{WRAPPER}} .box-product-count a:hover' => 'color: {{VALUE}}', 228 ], 229 ] 230 ); 231 232 $this->add_group_control( 233 Group_Control_Typography::get_type(), 234 [ 235 'name' => 'count_fonts', 236 'selector' => '{{WRAPPER}} .box-product-count', 237 238 ] 239 ); 240 241 242 $this->add_group_control( 243 Group_Control_Text_Shadow::get_type(), 244 [ 245 246 'name' => 'dafe_count_text_shadow', 247 248 'selector' => '{{WRAPPER}} .box-product-count', 249 ] 250 ); 251 252 253 $this->add_group_control( 254 Group_Control_Text_Stroke::get_type(), 255 [ 256 257 'name' => 'ovl_count_stroke', 258 'selector' => '{{WRAPPER}} .box-product-count', 259 ] 260 ); 261 $this->end_controls_section(); 262 // Image style 263 264 $this->start_controls_section( 265 'overlay_section_image_style', 266 [ 267 'label' => __( 'Image Style', 'definitive-addons-for-elementor' ), 268 'tab' => Controls_Manager::TAB_STYLE, 269 ] 270 ); 271 272 273 $this->add_group_control( 274 Group_Control_Border::get_type(), 275 [ 276 277 'name' => 'cat_image_border', 278 'selector' => '{{WRAPPER}} .product-category-box img', 279 ] 280 ); 281 282 $this->add_group_control( 283 Group_Control_Box_Shadow::get_type(), 284 [ 285 'name' => 'cat_image_shadow', 286 287 'selector' => '{{WRAPPER}} .product-category-box img', 288 ] 289 ); 290 $this->end_controls_section(); 291 114 292 115 293 -
definitive-addons-for-elementor/trunk/inc/Elements/Category_List.php
r2675151 r2686404 11 11 use Elementor\Controls_Manager; 12 12 use Elementor\Group_Control_Border; 13 use Elementor\Group_Control_Box_Shadow; 13 14 use Elementor\Group_Control_Image_Size; 14 15 use Elementor\Group_Control_Typography; … … 285 286 ] 286 287 ); 288 289 $this->add_control( 290 'inner_background_hover_color', 291 [ 292 'label' => __( 'Inner Background Hover Color', 'definitive-addons-for-elementor' ), 293 'type' => Controls_Manager::COLOR, 294 'selectors' => [ 295 '{{WRAPPER}} .category_repeaters:hover' => 'background-color: {{VALUE}}', 296 ], 297 ] 298 ); 299 300 287 301 $this->add_group_control( 288 302 Group_Control_Border::get_type(), … … 304 318 ] 305 319 ); 320 321 $this->add_control( 322 'inner_border_hover_color', 323 [ 324 'label' => __( 'Inner Border Hover Color', 'definitive-addons-for-elementor' ), 325 'type' => Controls_Manager::COLOR, 326 'selectors' => [ 327 '{{WRAPPER}} .category_repeaters:hover' => 'border-color: {{VALUE}}', 328 ], 329 ] 330 ); 331 332 $this->add_control( 333 'inner_rotate', 334 [ 335 'label' =>__( 'Rotate', 'definitive-addons-for-elementor' ), 336 'type' => Controls_Manager::SLIDER, 337 'default' => [ 338 'size' => 0, 339 'unit' => 'deg', 340 ], 341 'selectors' => [ 342 '{{WRAPPER}} .category_repeaters' => 'transform: rotate({{SIZE}}{{UNIT}});', 343 ], 344 ] 345 ); 346 347 $this->add_control( 348 'inner_hvr_animation', 349 [ 350 'label' => __( 'Inner Hover Animation', 'definitive-addons-for-elementor' ), 351 'type' => Controls_Manager::HOVER_ANIMATION, 352 353 354 ] 355 ); 356 306 357 $this->end_controls_section(); 307 358 … … 338 389 ] 339 390 ); 391 $this->add_control( 392 'container_bg_hover_color', 393 [ 394 'label' => __( 'Container Background Hover Color', 'definitive-addons-for-elementor' ), 395 'type' => Controls_Manager::COLOR, 396 'selectors' => [ 397 '{{WRAPPER}} .category_list:hover' => 'background-color: {{VALUE}}', 398 ], 399 ] 400 ); 340 401 $this->add_group_control( 341 402 Group_Control_Border::get_type(), … … 357 418 ] 358 419 ); 420 $this->add_control( 421 'container_border_hover_color', 422 [ 423 'label' => __( 'Container Border Hover Color', 'definitive-addons-for-elementor' ), 424 'type' => Controls_Manager::COLOR, 425 'selectors' => [ 426 '{{WRAPPER}} .category_list:hover' => 'border-color: {{VALUE}}', 427 ], 428 ] 429 ); 430 $this->add_group_control( 431 Group_Control_Box_Shadow::get_type(), 432 [ 433 'label' => __( 'Container Box Shadow', 'definitive-addons-for-elementor' ), 434 'name' => 'cat_list_shadow', 435 436 'selector' => '{{WRAPPER}} .category_list', 437 ] 438 ); 439 440 $this->add_group_control( 441 Group_Control_Box_Shadow::get_type(), 442 [ 443 'label' => __( 'Container Hover Box Shadow', 'definitive-addons-for-elementor' ), 444 'name' => 'cat_hvr_list_shadow', 445 446 'selector' => '{{WRAPPER}} .category_list:hover', 447 ] 448 ); 359 449 $this->end_controls_section(); 360 450 … … 368 458 <div class="category_list"> 369 459 370 <div class="category_repeaters ">460 <div class="category_repeaters elementor-animation-<?php echo esc_attr($settings['inner_hvr_animation'] ); ?>"> 371 461 372 462 <?php foreach ( $settings['cat_repeaters'] as $cat_icon ) : ?> -
definitive-addons-for-elementor/trunk/inc/Elements/Counter.php
r2675151 r2686404 8 8 namespace Definitive_Addons_Elementor\Elements; 9 9 use Elementor\Group_Control_Background; 10 use Elementor\Group_Control_Box_Shadow; 11 use Elementor\Group_Control_Text_Shadow; 12 use Elementor\Group_Control_Text_Stroke; 10 13 use Elementor\Repeater; 11 14 use Elementor\Controls_Manager; … … 107 110 108 111 $this->add_control( 112 'counter_val_position', 113 [ 114 'label' =>__( 'Counter Value Position', 'definitive-addons-for-elementor' ), 115 'type' => Controls_Manager::SELECT2, 116 'label_block' => true, 117 'options' => [ 118 'inline' =>__( 'Inline', 'definitive-addons-for-elementor' ), 119 'block' =>__( 'Block', 'definitive-addons-for-elementor' ) 120 ], 121 'default' => 'inline', 122 123 ] 124 ); 125 126 127 $this->add_control( 109 128 'counter_alignment', 110 129 [ … … 116 135 'left' => [ 117 136 'title' =>__( 'Left', 'definitive-addons-for-elementor' ), 118 'icon' => ' fa fa-align-left',137 'icon' => 'eicon-text-align-left', 119 138 ], 120 139 'center' => [ 121 140 'title' =>__( 'Center', 'definitive-addons-for-elementor' ), 122 'icon' => ' fa fa-align-center',141 'icon' => 'eicon-text-align-center', 123 142 ], 124 143 'right' => [ 125 144 'title' =>__( 'Right', 'definitive-addons-for-elementor' ), 126 'icon' => ' fa fa-align-right',145 'icon' => 'eicon-text-align-right', 127 146 ], 128 147 ], … … 136 155 137 156 // 138 139 $this->start_controls_section( 140 'counter_section_style_entry', 141 [ 142 'label' => __( 'Counter Item Style', 'definitive-addons-for-elementor' ), 143 'tab' => Controls_Manager::TAB_STYLE, 144 ] 145 ); 146 $this->add_control( 147 'counter_bg_shadow_style', 148 [ 149 'label' =>__( 'Background Shadow Style', 'definitive-addons-for-elementor' ), 150 'type' => Controls_Manager::SELECT2, 151 'label_block' => true, 152 'options' => array( 153 'none' =>__( 'None', 'definitive-addons-for-elementor' ), 154 'style1' =>__( 'Style1', 'definitive-addons-for-elementor' ), 155 'style2' =>__( 'Style2', 'definitive-addons-for-elementor' ), 156 'style3' =>__( 'Style3', 'definitive-addons-for-elementor' )), 157 'default' =>'style3', 158 159 ] 160 ); 161 $this->end_controls_section(); 162 157 163 158 $this->start_controls_section( 164 159 'counter_section_style_icon', … … 260 255 'icon_hover_color', 261 256 [ 262 'label' => __( 'Icon Hover Color', 'definitive-addons-for-elementor' ),257 'label' => __('Icon Hover Color', 'definitive-addons-for-elementor' ), 263 258 'type' => Controls_Manager::COLOR, 264 259 'selectors' => [ … … 323 318 324 319 $this->start_controls_section( 325 ' _section_style_value',320 'section_style_value', 326 321 [ 327 322 'label' => __( 'Counter Value', 'definitive-addons-for-elementor' ), … … 330 325 ); 331 326 332 327 333 328 $this->add_control( 334 329 'counter_val_color', … … 351 346 ); 352 347 348 $this->add_group_control( 349 Group_Control_Text_Shadow::get_type(), 350 [ 351 352 'name' => 'counter_val_shadow', 353 354 'selector' => '{{WRAPPER}} .counter-val', 355 ] 356 ); 357 358 359 $this->add_group_control( 360 Group_Control_Text_Stroke::get_type(), 361 [ 362 363 'name' => 'counter_val_stroke', 364 'selector' => '{{WRAPPER}} .counter-val', 365 ] 366 ); 367 353 368 $this->add_responsive_control( 354 369 'counter_val_spacing', … … 368 383 369 384 $this->start_controls_section( 370 ' _section_style_title',385 'section_style_title', 371 386 [ 372 387 'label' => __( 'Counter Text', 'definitive-addons-for-elementor' ), … … 385 400 ] 386 401 ); 402 403 404 $this->add_control( 405 'text_hvr_color', 406 [ 407 'label' => __( 'Counter Text Hover Color', 'definitive-addons-for-elementor' ), 408 'type' => Controls_Manager::COLOR, 409 'selectors' => [ 410 '{{WRAPPER}} .counter-text:hover' => 'color: {{VALUE}}', 411 ], 412 ] 413 ); 414 415 $this->add_group_control( 416 Group_Control_Text_Shadow::get_type(), 417 [ 418 419 'name' => 'counter_text_shadow', 420 421 'selector' => '{{WRAPPER}} .counter-text', 422 ] 423 ); 424 425 426 $this->add_group_control( 427 Group_Control_Text_Stroke::get_type(), 428 [ 429 430 'name' => 'counter_text_stroke', 431 'selector' => '{{WRAPPER}} .counter-text', 432 ] 433 ); 387 434 388 435 $this->add_responsive_control( … … 409 456 410 457 $this->start_controls_section( 411 ' _section_style_content',458 'section_style_content', 412 459 [ 413 460 'label' => __( 'Counter Content', 'definitive-addons-for-elementor' ), … … 439 486 ); 440 487 488 $this->add_control( 489 'content_bg_hvr_color', 490 [ 491 'label' => __( 'Counter Background Hover Color', 'definitive-addons-for-elementor' ), 492 'type' => Controls_Manager::COLOR, 493 'selectors' => [ 494 '{{WRAPPER}} .counter-container:hover' => 'background-color: {{VALUE}}', 495 ], 496 ] 497 ); 498 441 499 442 500 $this->add_group_control( … … 459 517 ] 460 518 ); 519 520 $this->add_control( 521 'content_border_hvr_color', 522 [ 523 'label' => __( 'Counter Border Hover Color', 'definitive-addons-for-elementor' ), 524 'type' => Controls_Manager::COLOR, 525 'selectors' => [ 526 '{{WRAPPER}} .counter-container:hover' => 'border-color: {{VALUE}}', 527 ], 528 ] 529 ); 530 531 $this->add_control( 532 'container_rotate', 533 [ 534 'label' =>__( 'Rotate', 'definitive-addons-for-elementor' ), 535 'type' => Controls_Manager::SLIDER, 536 'default' => [ 537 'size' => 0, 538 'unit' => 'deg', 539 ], 540 'selectors' => [ 541 '{{WRAPPER}} .counter-container' => 'transform: rotate({{SIZE}}{{UNIT}});', 542 ], 543 ] 544 ); 545 546 $this->add_group_control( 547 Group_Control_Box_Shadow::get_type(), 548 [ 549 'label' => __( 'Container Box Shadow', 'definitive-addons-for-elementor' ), 550 'name' => 'container_shadow', 551 552 'selector' => '{{WRAPPER}} .counter-container', 553 ] 554 ); 555 556 $this->add_group_control( 557 Group_Control_Box_Shadow::get_type(), 558 [ 559 'label' => __( 'Container Hover Box Shadow', 'definitive-addons-for-elementor' ), 560 'name' => 'container_hvr_shadow', 561 562 'selector' => '{{WRAPPER}} .counter-container:hover', 563 ] 564 ); 565 461 566 $this->end_controls_section(); 462 567 … … 468 573 protected function render() { 469 574 $settings = $this->get_settings_for_display(); 470 471 $icon_styles =''; 472 575 473 576 $counter_alignment = $this->get_settings_for_display( 'counter_alignment' ); 474 $shadow_style = $this->get_settings_for_display('counter_bg_shadow_style'); 475 $container_styles = 'text-align:'.$counter_alignment.';'; 577 476 578 $counter_icon = $settings['counter_icon']['value']; 477 478 $icon_styles .="text-align:center;display:inline-block;"; 579 479 580 $id = uniqid(); 480 581 ?> 481 582 482 <div class="counter-container <?php echo esc_attr($shadow_style); ?>" style="<?php echo esc_attr($container_styles)?>">583 <div class="counter-container style3 <?php echo esc_attr($counter_alignment); ?>"> 483 584 <?php if ($counter_icon){ ?> 484 <div class="icon-container" style="<?php echo esc_attr($icon_styles) ?>">585 <div class="icon-container"> 485 586 486 587 <i class="<?php echo esc_attr($counter_icon); ?> icon"> </i> … … 491 592 <div class="counter-content"> 492 593 <span id="<?php echo esc_attr($id) ?>" class="counter-val" data-startval="<?php echo esc_attr($settings['counter_start_val']) ?>" data-endval="<?php echo esc_attr($settings['counter_end_val']) ?>"></span> 493 <span class="counter-text ">594 <span class="counter-text <?php echo esc_attr($settings['counter_val_position']); ?>"> 494 595 495 596 <?php echo esc_html($settings['counter_text']); ?> -
definitive-addons-for-elementor/trunk/inc/Elements/Filterable_Portfolio.php
r2675151 r2686404 194 194 'left' => [ 195 195 'title' =>__( 'Left', 'definitive-addons-for-elementor' ), 196 'icon' => ' fa fa-align-left',196 'icon' => 'eicon-h-align-left', 197 197 ], 198 198 'center' => [ 199 199 'title' =>__( 'Center', 'definitive-addons-for-elementor' ), 200 'icon' => ' fa fa-align-center',200 'icon' => 'eicon-h-align-center', 201 201 ], 202 202 'right' => [ 203 203 'title' =>__( 'Right', 'definitive-addons-for-elementor' ), 204 'icon' => ' fa fa-align-right',204 'icon' => 'eicon-h-align-right', 205 205 ], 206 206 ], … … 278 278 'left' => [ 279 279 'title' =>__( 'Left', 'definitive-addons-for-elementor' ), 280 'icon' => ' fa fa-align-left',280 'icon' => 'eicon-h-align-left', 281 281 ], 282 282 'center' => [ 283 283 'title' =>__( 'Center', 'definitive-addons-for-elementor' ), 284 'icon' => ' fa fa-align-center',284 'icon' => 'eicon-h-align-center', 285 285 ], 286 286 'right' => [ 287 287 'title' =>__( 'Right', 'definitive-addons-for-elementor' ), 288 'icon' => ' fa fa-align-right',288 'icon' => 'eicon-h-align-right', 289 289 ], 290 290 ], … … 618 618 'options' => [ 619 619 620 'left p' => [620 'left' => [ 621 621 'title' =>__( 'Left', 'definitive-addons-for-elementor' ), 622 'icon' => ' fa fa-align-left',622 'icon' => 'eicon-text-align-left', 623 623 ], 624 'center p' => [624 'center' => [ 625 625 'title' =>__( 'Center', 'definitive-addons-for-elementor' ), 626 'icon' => ' fa fa-align-center',626 'icon' => 'eicon-text-align-center', 627 627 ], 628 'right p' => [628 'right' => [ 629 629 'title' =>__( 'Right', 'definitive-addons-for-elementor' ), 630 'icon' => ' fa fa-align-right',630 'icon' => 'eicon-text-align-right', 631 631 ], 632 'justify p' => [632 'justify' => [ 633 633 'title' =>__( 'Justify', 'definitive-addons-for-elementor' ), 634 'icon' => ' fa fa-align-justify',634 'icon' => 'eicon-text-align-justify', 635 635 ], 636 636 ], … … 874 874 875 875 <?php if ( 'yes' === $enable_post_title ) : ?> 876 <h4 class="portfolio-title-down"><a href="<?php echothe_permalink(); ?>" title="<?php the_title_attribute();?>">876 <h4 class="portfolio-title-down"><a href="<?php the_permalink(); ?>" title="<?php the_title_attribute();?>"> 877 877 <?php the_title(); ?></a> 878 878 </h4> -
definitive-addons-for-elementor/trunk/inc/Elements/Icon_Box.php
r2675151 r2686404 6 6 7 7 namespace Definitive_Addons_Elementor\Elements; 8 9 use Elementor\Controls_Manager; 10 use Elementor\Group_Control_Box_Shadow; 11 use Elementor\Group_Control_Typography; 12 use Elementor\Group_Control_Text_Shadow; 13 use Elementor\Group_Control_Text_Stroke; 14 use Elementor\Icons_Manager; 15 16 use Elementor\Group_Control_Border; 8 17 use Elementor\Group_Control_Background; 9 use Elementor\Controls_Manager;10 use Elementor\Group_Control_Border;11 18 use Elementor\Group_Control_Image_Size; 12 use Elementor\Group_Control_Typography;13 19 use Elementor\Utils; 14 20 use \Elementor\Widget_Base; … … 83 89 'separator' => 'before', 84 90 'type' => Controls_Manager::URL, 85 'placeholder' => 'https://softfirm.net/',91 'placeholder' => __('https://softfirm.net/', 'definitive-addons-for-elementor' ), 86 92 'dynamic' => [ 87 93 'active' => true, … … 104 110 [ 105 111 'label' => __( 'Title HTML Tag', 'definitive-addons-for-elementor' ), 106 'type' => Controls_Manager:: CHOOSE,112 'type' => Controls_Manager::SELECT, 107 113 108 114 'options' => [ 109 'h1' => [ 110 'title' => __( 'H1', 'definitive-addons-for-elementor' ), 111 'icon' => 'eicon-editor-h1' 112 ], 113 'h2' => [ 114 'title' => __( 'H2', 'definitive-addons-for-elementor' ), 115 'icon' => 'eicon-editor-h2' 116 ], 117 'h3' => [ 118 'title' => __( 'H3', 'definitive-addons-for-elementor' ), 119 'icon' => 'eicon-editor-h3' 120 ], 121 'h4' => [ 122 'title' => __( 'H4', 'definitive-addons-for-elementor' ), 123 'icon' => 'eicon-editor-h4' 124 ], 125 'h5' => [ 126 'title' => __( 'H5', 'definitive-addons-for-elementor' ), 127 'icon' => 'eicon-editor-h5' 128 ], 129 'h6' => [ 130 'title' => __( 'H6', 'definitive-addons-for-elementor' ), 131 'icon' => 'eicon-editor-h6' 132 ] 133 ], 115 'h1' => 'H1', 116 'h2' => 'H2', 117 'h3' => 'H3', 118 'h4' => 'H4', 119 'h5' => 'H5', 120 'h6' => 'H6', 121 'div' => 'div', 122 'span' => 'span', 123 'p' => 'p', 124 ], 134 125 'default' => 'h4', 135 126 'toggle' => false, … … 149 140 150 141 151 142 $this->add_control( 143 'enable_desc_link', 144 [ 145 'label' => __('Enable Link on Text?', 'definitive-addons-for-elementor'), 146 'type' => Controls_Manager::SWITCHER, 147 'separator' => 'before', 148 'label_on' => __('Yes', 'definitive-addons-for-elementor'), 149 'label_off' => __('No', 'definitive-addons-for-elementor'), 150 'return_value' => 'yes', 151 'default' => 'no', 152 153 ] 154 ); 152 155 153 156 $this->end_controls_section(); … … 156 159 157 160 // style 161 /* 162 * Icon box container style 163 */ 158 164 159 165 $this->start_controls_section( … … 175 181 'left' => [ 176 182 'title' =>__( 'Left', 'definitive-addons-for-elementor' ), 177 'icon' => ' fa fa-align-left',183 'icon' => 'eicon-text-align-left', 178 184 ], 179 185 'center' => [ 180 186 'title' =>__( 'Center', 'definitive-addons-for-elementor' ), 181 'icon' => ' fa fa-align-center',187 'icon' => 'eicon-text-align-center', 182 188 ], 183 189 'right' => [ 184 190 'title' =>__( 'Right', 'definitive-addons-for-elementor' ), 185 'icon' => ' fa fa-align-right',191 'icon' => 'eicon-text-align-right', 186 192 ], 187 193 ], … … 190 196 ] 191 197 ); 192 $this->add_control( 193 'icon_box_bg_shadow_style', 194 [ 195 'label' =>__( 'Background Shadow Style', 'definitive-addons-for-elementor' ), 196 'type' => Controls_Manager::SELECT2, 197 'label_block' => true, 198 'options' => array( 199 'none' =>__( 'None', 'definitive-addons-for-elementor' ), 200 'style1' =>__( 'Style1', 'definitive-addons-for-elementor' ), 201 'style2' =>__( 'Style2', 'definitive-addons-for-elementor' ), 202 'style3' =>__( 'Style3', 'definitive-addons-for-elementor' )), 203 'default' => 'style3', 204 205 ] 206 ); 198 199 $this->add_control( 200 'dafe_icon_box_bg_color', 201 [ 202 'label' => __('Background Color', 'definitive-addons-for-elementor'), 203 'type' => Controls_Manager::COLOR, 204 'default' => '#eeeeee', 205 'selectors' => [ 206 207 '{{WRAPPER}} .dafe-icon-box-entry' => 'background-color: {{VALUE}};', 208 209 ], 210 211 ] 212 ); 213 214 215 216 $this->add_control( 217 'dafe_icon_box_hvr_bg_color', 218 [ 219 'label' => __('Background Hover Color', 'definitive-addons-for-elementor'), 220 'type' => Controls_Manager::COLOR, 221 'selectors' => [ 222 '{{WRAPPER}} .dafe-icon-box-entry:hover' => 'background-color: {{VALUE}};', 223 ], 224 225 ] 226 ); 227 228 $this->add_group_control( 229 Group_Control_Border::get_type(), 230 [ 231 'name' => 'dafe_icon_box_container_border', 232 'selector' => '{{WRAPPER}} .dafe-icon-box-entry', 233 ] 234 ); 235 236 $this->add_responsive_control( 237 'dafe_icon_box_container_border_radius', 238 [ 239 'label' => __( 'Container Border Radius', 'definitive-addons-for-elementor' ), 240 'type' => Controls_Manager::DIMENSIONS, 241 'size_units' => [ 'px', '%' ], 242 'selectors' => [ 243 '{{WRAPPER}} .dafe-icon-box-entry' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}}; overflow: hidden;', 244 ], 245 ] 246 ); 247 248 249 250 $this->add_control( 251 'dafe_icon_box_hover_border_color', 252 [ 253 'label' => __('Border Hover Color', 'definitive-addons-for-elementor'), 254 'type' => Controls_Manager::COLOR, 255 'selectors' => [ 256 '{{WRAPPER}} .dafe-icon-box-entry:hover' => 'border-color: {{VALUE}};', 257 ] 258 ] 259 ); 260 261 262 $this->add_responsive_control( 263 'content_padding', 264 [ 265 'label' => __( 'Container Padding', 'definitive-addons-for-elementor' ), 266 'type' => Controls_Manager::DIMENSIONS, 267 'size_units' => [ 'px', 'em', '%' ], 268 'default'=>['top' =>'10','right' =>'10','bottom' =>'10','left' =>'10'], 269 270 'selectors' => [ 271 '{{WRAPPER}} .dafe-icon-box-entry' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', 272 ], 273 ] 274 ); 275 276 $this->add_group_control( 277 Group_Control_Box_Shadow::get_type(), 278 [ 279 'label' => __( 'Container Shadow', 'definitive-addons-for-elementor' ), 280 'name' => 'dafe_icon_box_shadow', 281 282 'selector' => '{{WRAPPER}} .dafe-icon-box-entry', 283 ] 284 ); 285 286 $this->add_group_control( 287 Group_Control_Box_Shadow::get_type(), 288 [ 289 'label' => __( 'Container Hover Shadow', 'definitive-addons-for-elementor' ), 290 'name' => 'dafe_icon_box_hvr_shadow', 291 292 'selector' => '{{WRAPPER}} .dafe-icon-box-entry:hover', 293 ] 294 ); 295 296 297 298 $this->add_control( 299 'dafe_icon_box_hvr_animation', 300 [ 301 'label' => __( 'Icon Hover Animation', 'definitive-addons-for-elementor' ), 302 'type' => Controls_Manager::HOVER_ANIMATION, 303 304 305 ] 306 ); 307 308 207 309 $this->end_controls_section(); 208 310 311 /* 312 * Icon style 313 */ 314 209 315 $this->start_controls_section( 210 316 'icon_box_section_style_icon', … … 231 337 ], 232 338 'selectors' => [ 233 '{{WRAPPER}} . icon-container' => 'font-size: {{SIZE}}{{UNIT}};',339 '{{WRAPPER}} .dafe-icon-box-entry .dafe-icon-container .icon' => 'font-size: {{SIZE}}{{UNIT}};', 234 340 ], 235 341 ] … … 251 357 ], 252 358 'selectors' => [ 253 '{{WRAPPER}} . icon-container' => 'height: {{SIZE}}{{UNIT}};',254 '{{WRAPPER}} . icon-container .icon' => 'line-height: {{SIZE}}{{UNIT}};',359 '{{WRAPPER}} .dafe-icon-box-entry .dafe-icon-container' => 'height: {{SIZE}}{{UNIT}};', 360 '{{WRAPPER}} .dafe-icon-box-entry .dafe-icon-container .icon' => 'line-height: {{SIZE}}{{UNIT}};', 255 361 ], 256 362 ] … … 272 378 ], 273 379 'selectors' => [ 274 '{{WRAPPER}} .icon-container' => 'width: {{SIZE}}{{UNIT}};', 275 ], 276 ] 277 ); 380 '{{WRAPPER}} .dafe-icon-box-entry .dafe-icon-container' => 'width: {{SIZE}}{{UNIT}};', 381 ], 382 ] 383 ); 384 385 $this->add_control( 386 'icon_rotate', 387 [ 388 'label' =>__( 'Rotate', 'definitive-addons-for-elementor' ), 389 'type' => Controls_Manager::SLIDER, 390 'default' => [ 391 'size' => 0, 392 'unit' => 'deg', 393 ], 394 'selectors' => [ 395 '{{WRAPPER}} .dafe-icon-box-entry .dafe-icon-container .icon' => 'transform: rotate({{SIZE}}{{UNIT}});', 396 ], 397 ] 398 ); 278 399 279 400 $this->add_group_control( … … 281 402 [ 282 403 'name' => 'icon_background', 283 'selector' => '{{WRAPPER}} . icon-container',404 'selector' => '{{WRAPPER}} .dafe-icon-box-entry .dafe-icon-container', 284 405 'exclude' => [ 285 406 'image' … … 295 416 296 417 'selectors' => [ 297 '{{WRAPPER}} . icon-container .icon' => 'color: {{VALUE}}',418 '{{WRAPPER}} .dafe-icon-box-entry .dafe-icon-container .icon' => 'color: {{VALUE}}', 298 419 ], 299 420 ] … … 306 427 'type' => Controls_Manager::COLOR, 307 428 'selectors' => [ 308 '{{WRAPPER}} . icon-container:hover .icon' => 'color: {{VALUE}};',429 '{{WRAPPER}} .dafe-icon-box-entry .dafe-icon-container:hover .icon' => 'color: {{VALUE}};', 309 430 ], 310 431 ] … … 317 438 'type' => Controls_Manager::COLOR, 318 439 'selectors' => [ 319 '{{WRAPPER}} . icon-container:hover' => 'background-color: {{VALUE}};',440 '{{WRAPPER}} .dafe-icon-box-entry .dafe-icon-container:hover' => 'background-color: {{VALUE}};', 320 441 ], 321 442 ] … … 327 448 [ 328 449 'name' => 'icon_border', 329 'selector' => '{{WRAPPER}} . icon-container',450 'selector' => '{{WRAPPER}} .dafe-icon-box-entry .dafe-icon-container', 330 451 ] 331 452 ); … … 340 461 'size_units' => [ 'px', '%' ], 341 462 'selectors' => [ 342 '{{WRAPPER}} .icon-container' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}}; overflow: hidden;', 343 ], 344 ] 345 ); 463 '{{WRAPPER}} .dafe-icon-box-entry .dafe-icon-container' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}}; overflow: hidden;', 464 ], 465 ] 466 ); 467 468 $this->add_group_control( 469 Group_Control_Box_Shadow::get_type(), 470 [ 471 'name' => 'dafe_icon_shadow', 472 473 'selector' => '{{WRAPPER}} .dafe-icon-box-entry .dafe-icon-container', 474 ] 475 ); 476 477 478 479 $this->add_control( 480 'dafe_icon_hvr_animation', 481 [ 482 'label' => __( 'Icon Hover Animation', 'definitive-addons-for-elementor' ), 483 'type' => Controls_Manager::HOVER_ANIMATION, 484 485 486 ] 487 ); 346 488 347 489 $this->add_responsive_control( … … 352 494 'size_units' => ['px'], 353 495 'selectors' => [ 354 '{{WRAPPER}} . icon-container' => 'margin-bottom: {{SIZE}}{{UNIT}};',496 '{{WRAPPER}} .dafe-icon-box-entry .dafe-icon-container' => 'margin-bottom: {{SIZE}}{{UNIT}};', 355 497 ], 356 498 'default' => [ … … 363 505 364 506 $this->end_controls_section(); 365 507 508 509 /* 510 * Icon box title style 511 */ 366 512 367 513 368 514 $this->start_controls_section( 369 ' _section_style_title',515 'section_style_title', 370 516 [ 371 517 'label' => __( 'Icon Box Title', 'definitive-addons-for-elementor' ), … … 382 528 'size_units' => ['px'], 383 529 'selectors' => [ 384 '{{WRAPPER}} . icon-box-title' => 'margin-bottom: {{SIZE}}{{UNIT}};',530 '{{WRAPPER}} .dafe-icon-box-title' => 'margin-bottom: {{SIZE}}{{UNIT}};', 385 531 ], 386 532 ] … … 393 539 'type' => Controls_Manager::COLOR, 394 540 'selectors' => [ 395 '{{WRAPPER}} .icon-box-title' => 'color: {{VALUE}}', 541 '{{WRAPPER}} .dafe-icon-box-title' => 'color: {{VALUE}}', 542 ], 543 ] 544 ); 545 546 $this->add_control( 547 'title_hvr_color', 548 [ 549 'label' => __( 'Title Hover Color', 'definitive-addons-for-elementor' ), 550 'type' => Controls_Manager::COLOR, 551 'selectors' => [ 552 '{{WRAPPER}} .dafe-icon-box-title:hover' => 'color: {{VALUE}}', 396 553 ], 397 554 ] … … 402 559 [ 403 560 'name' => 'title_font', 404 'selector' => '{{WRAPPER}} . icon-box-title',561 'selector' => '{{WRAPPER}} .dafe-icon-box-title', 405 562 406 563 ] 407 564 ); 408 565 566 $this->add_group_control( 567 Group_Control_Text_Stroke::get_type(), 568 [ 569 'name' => 'title_stroke', 570 'selector' => '{{WRAPPER}} .dafe-icon-box-title', 571 ] 572 ); 573 574 $this->add_group_control( 575 Group_Control_Text_Shadow::get_type(), 576 [ 577 'name' => 'title_shadow', 578 'selector' => '{{WRAPPER}} .dafe-icon-box-title', 579 ] 580 ); 581 409 582 $this->end_controls_section(); 410 583 584 /* 585 * Icon box description style 586 */ 587 411 588 $this->start_controls_section( 412 ' _section_style_subtitle',589 'section_style_subtitle', 413 590 [ 414 591 'label' => __( 'Icon Box Description', 'definitive-addons-for-elementor' ), … … 427 604 ], 428 605 'selectors' => [ 429 '{{WRAPPER}} . icon-box-desc' => 'margin-bottom: {{SIZE}}{{UNIT}};',606 '{{WRAPPER}} .dafe-icon-box-desc' => 'margin-bottom: {{SIZE}}{{UNIT}};', 430 607 ], 431 608 ] … … 440 617 'default' => '#54595F', 441 618 'selectors' => [ 442 '{{WRAPPER}} . icon-box-desc' => 'color: {{VALUE}}',619 '{{WRAPPER}} .dafe-icon-box-desc' => 'color: {{VALUE}}', 443 620 ], 444 621 ] … … 449 626 [ 450 627 'name' => 'subtitle_font', 451 'selector' => '{{WRAPPER}} . icon-box-desc',628 'selector' => '{{WRAPPER}} .dafe-icon-box-desc', 452 629 453 630 ] 454 631 ); 632 633 $this->add_group_control( 634 Group_Control_Text_Stroke::get_type(), 635 [ 636 'name' => 'subtitle_stroke', 637 'selector' => '{{WRAPPER}} .dafe-icon-box-desc', 638 ] 639 ); 640 641 $this->add_group_control( 642 Group_Control_Text_Shadow::get_type(), 643 [ 644 'name' => 'subtitle_shadow', 645 'selector' => '{{WRAPPER}} .dafe-icon-box-desc', 646 ] 647 ); 455 648 456 649 $this->end_controls_section(); 457 $this->start_controls_section( 458 '_section_style_content', 459 [ 460 'label' => __( 'Icon Box Content', 'definitive-addons-for-elementor' ), 461 'tab' => Controls_Manager::TAB_STYLE, 462 ] 463 ); 464 465 $this->add_responsive_control( 466 'content_padding', 467 [ 468 'label' => __( 'Content Padding', 'definitive-addons-for-elementor' ), 469 'type' => Controls_Manager::DIMENSIONS, 470 'size_units' => [ 'px', 'em', '%' ], 471 'default'=>['top' =>'10','right' =>'10','bottom' =>'10','left' =>'10'], 472 473 'selectors' => [ 474 '{{WRAPPER}} .icon-box-entry' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', 475 ], 476 ] 477 ); 478 479 $this->add_group_control( 480 Group_Control_Background::get_type(), 481 [ 482 'name' => 'content_background', 483 'selector' => '{{WRAPPER}} .icon-box-entry', 484 'exclude' => [ 485 'image' 486 ] 487 ] 488 ); 489 490 $this->add_group_control( 491 Group_Control_Border::get_type(), 492 [ 493 'name' => 'content_border', 494 'selector' => '{{WRAPPER}} .icon-box-entry', 495 ] 496 ); 497 498 $this->add_responsive_control( 499 'iconbox_border_radius', 500 [ 501 'label' =>__( 'Content Border Radius', 'definitive-addons-for-elementor' ), 502 'type' => Controls_Manager::DIMENSIONS, 503 'size_units' => [ 'px', '%' ], 504 'selectors' => [ 505 '{{WRAPPER}} .icon-box-entry' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}}; overflow: hidden;', 506 ], 507 ] 508 ); 509 510 $this->end_controls_section(); 650 651 511 652 } 512 653 513 654 protected function render() { 655 514 656 $settings = $this->get_settings_for_display(); 515 657 $link = $this->get_settings_for_display( 'link' ); 516 $icon_height = $this->get_settings_for_display( 'icon_height' );658 517 659 $title_tag = $this->get_settings_for_display( 'title_tag' ); 518 $shadow_style = $this->get_settings_for_display('icon_box_bg_shadow_style'); 519 520 $icon_box_alignment = $this->get_settings_for_display( 'icon_box_alignment' ); 521 $container_styles = 'text-align:'.$icon_box_alignment.';'; 522 $icon_container_styles = 'text-align:center;display:inline-block;'; 660 661 523 662 524 663 ?> 525 664 526 <div class="icon-box-entry <?php echo esc_attr($shadow_style); ?>" style="<?php echo esc_attr($container_styles) ?>"> 527 <div class="icon-box-item"> 665 <div class="dafe-icon-box-entry <?php echo esc_attr($settings['icon_box_alignment'] ); ?> elementor-animation-<?php echo esc_attr($settings['dafe_icon_box_hvr_animation'] ); ?>"> 666 <a href="<?php echo esc_url($link['url']); ?>" target="<?php echo esc_attr($link['is_external']); ?>"> 667 668 <div class="dafe-icon-box-item"> 528 669 <a href="<?php echo esc_url($link['url']); ?>" target="<?php echo esc_attr($link['is_external']); ?>"> 529 <div class=" icon-container" style="<?php echo esc_attr($icon_container_styles); ?>">670 <div class="dafe-icon-container elementor-animation-<?php echo esc_attr($settings['dafe_icon_hvr_animation'] ); ?>"> 530 671 531 672 <i class="<?php echo esc_attr($settings['new_icon_id']['value']); ?> icon"> </i> … … 534 675 </a> 535 676 536 <div class=" icon-box-content">677 <div class="dafe-icon-box-content"> 537 678 <?php if ( $settings['title'] ) : ?> 538 <<?php echo esc_attr($title_tag); ?> class="icon-box-title"><?php echo esc_html( $settings['title'] ); ?></<?php echo esc_attr($title_tag); ?>> 539 <?php endif; ?> 679 <a href="<?php echo esc_url($link['url']); ?>" target="<?php echo esc_attr($link['is_external']); ?>"> 680 681 <<?php echo esc_attr($title_tag); ?> class="dafe-icon-box-title"><?php echo esc_html( $settings['title'] ); ?></<?php echo esc_attr($title_tag); ?>> 682 </a> 683 <?php endif; ?> 684 <?php if ($settings['enable_desc_link'] == 'yes') { ?> 540 685 <?php if ( $settings['subtitle'] ) : ?> 541 <p class="icon-box-desc" style="<?php echo esc_attr($container_styles) ?>"><?php echo esc_html( $settings['subtitle'] ); ?></p> 542 <?php endif; ?> 686 <a href="<?php echo esc_url($link['url']); ?>" target="<?php echo esc_attr($link['is_external']); ?>"> 687 688 <p class="dafe-icon-box-desc <?php echo esc_attr($settings['icon_box_alignment'] ); ?>"><?php echo esc_html( $settings['subtitle'] ); ?></p> 689 </a> 690 <?php endif; ?> 691 <?php } else { ?> 692 <?php if ( $settings['subtitle'] ) : ?> 693 694 <p class="dafe-icon-box-desc" style="<?php echo esc_attr($container_styles) ?>"><?php echo esc_html( $settings['subtitle'] ); ?></p> 695 696 <?php endif; ?> 697 <?php } ?> 543 698 </div> 544 699 545 700 </div> 701 </a> 546 702 </div> 547 703 -
definitive-addons-for-elementor/trunk/inc/Elements/Promo-box.php
r2675151 r2686404 9 9 use Elementor\Group_Control_Background; 10 10 use Elementor\Controls_Manager; 11 use Elementor\Group_Control_Box_Shadow; 12 use Elementor\Group_Control_Text_Shadow; 11 13 use Elementor\Group_Control_Border; 12 14 use Elementor\Group_Control_Image_Size; … … 27 29 return __( 'DA: Promo Box', 'definitive-addons-for-elementor' ); 28 30 } 29 /**31 /** 30 32 * Get widget NAME. 31 33 … … 35 37 return 'dafe_promo_box'; 36 38 } 37 /**39 /** 38 40 * Get widget icon. 39 41 … … 56 58 57 59 $this->start_controls_section( 58 ' _section_promo_box',60 'section_promo_box', 59 61 [ 60 62 'label' =>__( 'Promo Box', 'definitive-addons-for-elementor' ), … … 80 82 'separator' => 'before', 81 83 'type' => Controls_Manager::URL, 82 'placeholder' => 'https://softfirm.net/',84 'placeholder' => __( 'https://softfirm.net/', 'definitive-addons-for-elementor' ), 83 85 'dynamic' => [ 84 86 'active' => true, … … 128 130 // style 129 131 $this->start_controls_section( 130 'overlay_section_ border_style',131 [ 132 'label' => __( 'Overlay BorderStyle', 'definitive-addons-for-elementor' ),132 'overlay_section_style', 133 [ 134 'label' => __( 'Overlay Style', 'definitive-addons-for-elementor' ), 133 135 'tab' => Controls_Manager::TAB_STYLE, 134 136 ] 135 137 ); 136 138 137 138 139 $this->add_group_control( 140 Group_Control_Border::get_type(), 141 [ 142 'name' => 'overlay_border', 143 'selector' => '{{WRAPPER}} .promo_box_border_style', 144 ] 145 ); 146 147 $this->add_responsive_control( 148 'overlay_border_radius', 149 [ 150 'label' => __( 'Overlay Border Radius', 'definitive-addons-for-elementor' ), 151 'type' => Controls_Manager::DIMENSIONS, 152 'size_units' => [ 'px', '%' ], 153 'selectors' => [ 154 '{{WRAPPER}} .promo_box_border_style' => 'border-radius: {{TOP}}{{UNIT}}{{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}}; overflow: hidden;', 155 ], 156 ] 157 ); 158 159 160 161 $this->end_controls_section(); 162 163 $this->start_controls_section( 164 'overlay_section_text_style', 165 [ 166 'label' => __( 'Overlay Text & Background', 'definitive-addons-for-elementor' ), 167 'tab' => Controls_Manager::TAB_STYLE, 168 ] 169 ); 170 171 $this->add_responsive_control( 172 'content_padding', 173 [ 174 'label' => __( 'Content Padding', 'definitive-addons-for-elementor' ), 175 'type' => Controls_Manager::DIMENSIONS, 176 'size_units' => [ 'px', 'em', '%' ], 177 'selectors' => [ 178 '{{WRAPPER}} .promo_box_border_style' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', 179 ], 180 ] 181 ); 182 183 184 $this->add_group_control( 139 $this->add_control( 140 'overlay_design', 141 [ 142 'label' =>__( 'Overlay Design', 'definitive-addons-for-elementor' ), 143 'type' => Controls_Manager::SELECT2, 144 'label_block' => true, 145 'options' => [ 146 147 'default' =>__( 'Default', 'definitive-addons-for-elementor' ), 148 'corner' =>__( 'Corner', 'definitive-addons-for-elementor' ) 149 ], 150 'default' => 'default', 151 152 ] 153 ); 154 155 $this->add_group_control( 185 156 Group_Control_Background::get_type(), 186 157 [ 187 'name' => ' content_background',158 'name' => 'overlay_background', 188 159 'selector' => '{{WRAPPER}} .promo_box_border_style', 189 160 'exclude' => [ … … 192 163 ] 193 164 ); 194 195 165 166 $this->add_control( 167 'overlay_bg_hvr_color', 168 [ 169 'label' => __( 'Overlay Background Hover Color', 'definitive-addons-for-elementor' ), 170 'type' => Controls_Manager::COLOR, 171 'selectors' => [ 172 '{{WRAPPER}} .promo_box_border_style:hover' => 'background-color: {{VALUE}}', 173 ], 174 ] 175 ); 176 177 $this->add_responsive_control( 178 'overlay_padding', 179 [ 180 'label' => __( 'Overlay Padding', 'definitive-addons-for-elementor' ), 181 'type' => Controls_Manager::DIMENSIONS, 182 'size_units' => [ 'px', 'em', '%' ], 183 'selectors' => [ 184 '{{WRAPPER}} .promo_box_border_style' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', 185 ], 186 ] 187 ); 188 189 $this->add_group_control( 190 Group_Control_Border::get_type(), 191 [ 192 'name' => 'overlay_border', 193 'selector' => '{{WRAPPER}} .promo_box_border_style', 194 ] 195 ); 196 197 198 $this->add_group_control( 199 Group_Control_Box_Shadow::get_type(), 200 [ 201 'label' => __( 'Overlay Box Shadow', 'definitive-addons-for-elementor' ), 202 'name' => 'ovl_shadow', 203 204 'selector' => '{{WRAPPER}} .promo_box_border_style', 205 ] 206 ); 207 208 $this->end_controls_section(); 209 210 $this->start_controls_section( 211 'overlay_section_text_style', 212 [ 213 'label' => __( 'Overlay Text & Background', 'definitive-addons-for-elementor' ), 214 'tab' => Controls_Manager::TAB_STYLE, 215 ] 216 ); 217 218 $this->add_control( 219 'title_color', 220 [ 221 'label' => __( 'Title Color', 'definitive-addons-for-elementor' ), 222 'type' => Controls_Manager::COLOR, 223 'selectors' => [ 224 '{{WRAPPER}} .promo-box-title' => 'color: {{VALUE}}', 225 ], 226 ] 227 ); 196 228 197 229 $this->add_control( 198 'title_ color',199 [ 200 'label' => __( 'Title Color', 'definitive-addons-for-elementor' ),201 'type' => Controls_Manager::COLOR, 202 'selectors' => [ 203 '{{WRAPPER}} .promo-box-title ' => 'color: {{VALUE}}',230 'title_hvr_color', 231 [ 232 'label' => __( 'Title Hover Color', 'definitive-addons-for-elementor' ), 233 'type' => Controls_Manager::COLOR, 234 'selectors' => [ 235 '{{WRAPPER}} .promo-box-title:hover' => 'color: {{VALUE}}', 204 236 ], 205 237 ] … … 214 246 ] 215 247 ); 248 249 $this->add_group_control( 250 Group_Control_Text_Shadow::get_type(), 251 [ 252 253 'name' => 'title_shadow', 254 255 'selector' => '{{WRAPPER}} .promo-box-title', 256 ] 257 ); 216 258 217 259 $this->end_controls_section(); 260 261 $this->start_controls_section( 262 'container_style', 263 [ 264 'label' => __( 'Container Style', 'definitive-addons-for-elementor' ), 265 'tab' => Controls_Manager::TAB_STYLE, 266 ] 267 ); 268 269 $this->add_responsive_control( 270 'container_padding', 271 [ 272 'label' => __( 'Container Padding', 'definitive-addons-for-elementor' ), 273 'type' => Controls_Manager::DIMENSIONS, 274 'size_units' => [ 'px', 'em', '%' ], 275 'selectors' => [ 276 '{{WRAPPER}} .promo-box' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', 277 ], 278 ] 279 ); 280 281 $this->add_control( 282 'container_bg_color', 283 [ 284 'label' => __( 'Container Background Color', 'definitive-addons-for-elementor' ), 285 'type' => Controls_Manager::COLOR, 286 'selectors' => [ 287 '{{WRAPPER}} .promo-box' => 'background-color: {{VALUE}}', 288 ], 289 ] 290 ); 291 292 $this->add_control( 293 'container_bg_hvr_color', 294 [ 295 'label' => __( 'Container Background Hover Color', 'definitive-addons-for-elementor' ), 296 'type' => Controls_Manager::COLOR, 297 'selectors' => [ 298 '{{WRAPPER}} .promo-box:hover' => 'background-color: {{VALUE}}', 299 ], 300 ] 301 ); 302 303 $this->add_group_control( 304 Group_Control_Border::get_type(), 305 [ 306 'name' => 'container_border', 307 'selector' => '{{WRAPPER}} .promo-box', 308 ] 309 ); 310 311 $this->add_group_control( 312 Group_Control_Box_Shadow::get_type(), 313 [ 314 'label' => __( 'Container Box Shadow', 'definitive-addons-for-elementor' ), 315 'name' => 'container_shadow', 316 317 'selector' => '{{WRAPPER}} .promo-box', 318 ] 319 ); 320 321 $this->add_group_control( 322 Group_Control_Box_Shadow::get_type(), 323 [ 324 'label' => __( 'Container Hover Box Shadow', 'definitive-addons-for-elementor' ), 325 'name' => 'container_hvr_shadow', 326 327 'selector' => '{{WRAPPER}} .promo-box:hover', 328 ] 329 ); 330 331 $this->end_controls_section(); 218 332 } 219 333 … … 230 344 if ($show_hide_ovl != 'yes'){ 231 345 $promo_overlay_styles .= 'display:none;'; 346 $corner_styles = 'display:none;'; 347 $show_hide_ovl = 'no'; 348 } 349 if ($settings['overlay_design'] == 'default'){ 350 232 351 $corner_styles = 'display:none;'; 233 352 $show_hide_ovl = 'no'; -
definitive-addons-for-elementor/trunk/inc/Elements/Staff_Member.php
r2675151 r2686404 10 10 use Elementor\Repeater; 11 11 use Elementor\Controls_Manager; 12 use Elementor\Group_Control_Box_Shadow; 13 use Elementor\Group_Control_Text_Shadow; 14 use Elementor\Group_Control_Text_Stroke; 12 15 use Elementor\Group_Control_Border; 13 16 use Elementor\Group_Control_Image_Size; … … 248 251 ); 249 252 250 $this->add_control( 251 'staff_bg_shadow_style', 252 [ 253 'label' =>__( 'Background Shadow Style', 'definitive-addons-for-elementor' ), 254 'type' => Controls_Manager::SELECT2, 255 'label_block' => true, 256 'options' => array( 257 'none' =>__( 'None', 'definitive-addons-for-elementor' ), 258 'style1' =>__( 'Style1', 'definitive-addons-for-elementor' ), 259 'style2' =>__( 'Style2', 'definitive-addons-for-elementor' ), 260 'style3' =>__( 'Style3', 'definitive-addons-for-elementor' )), 261 'default' => 'style3', 262 263 ] 264 ); 253 265 254 $this->end_controls_section(); 266 255 … … 283 272 ); 284 273 285 274 $this->add_control( 275 'img_hvr_border_color', 276 [ 277 'label' => __( 'Image Border Hover Color', 'definitive-addons-for-elementor' ), 278 'type' => Controls_Manager::COLOR, 279 'selectors' => [ 280 '{{WRAPPER}} .staff-member-name:hover' => 'border-color: {{VALUE}}', 281 ], 282 ] 283 ); 286 284 287 285 $this->add_responsive_control( … … 350 348 ] 351 349 ); 350 351 352 $this->add_control( 353 'name_hvr_color', 354 [ 355 'label' => __( 'Name Hover Color', 'definitive-addons-for-elementor' ), 356 'type' => Controls_Manager::COLOR, 357 'selectors' => [ 358 '{{WRAPPER}} .staff-member-name:hover' => 'color: {{VALUE}}', 359 ], 360 ] 361 ); 352 362 353 363 $this->add_group_control( … … 359 369 ] 360 370 ); 371 372 $this->add_group_control( 373 Group_Control_Text_Shadow::get_type(), 374 [ 375 376 'name' => 'staff_name_shadow', 377 378 'selector' => '{{WRAPPER}} .staff-member-name', 379 ] 380 ); 381 382 383 $this->add_group_control( 384 Group_Control_Text_Stroke::get_type(), 385 [ 386 387 'name' => 'staff_name_stroke', 388 'selector' => '{{WRAPPER}} .staff-member-name', 389 ] 390 ); 361 391 $this->end_controls_section(); 362 392 … … 387 417 'job_position_color', 388 418 [ 389 'label' => __( ' TextColor', 'definitive-addons-for-elementor' ),419 'label' => __( 'Job Position Color', 'definitive-addons-for-elementor' ), 390 420 'type' => Controls_Manager::COLOR, 391 421 'selectors' => [ 392 422 '{{WRAPPER}} .staff-member-job-position' => 'color: {{VALUE}}', 423 ], 424 ] 425 ); 426 $this->add_control( 427 'job_position_hvr_color', 428 [ 429 'label' => __( 'Job Position Hover Color', 'definitive-addons-for-elementor' ), 430 'type' => Controls_Manager::COLOR, 431 'selectors' => [ 432 '{{WRAPPER}} .staff-member-job-position:hover' => 'color: {{VALUE}}', 393 433 ], 394 434 ] … … 404 444 ); 405 445 406 446 $this->add_group_control( 447 Group_Control_Text_Shadow::get_type(), 448 [ 449 450 'name' => 'staff_position_shadow', 451 452 'selector' => '{{WRAPPER}} .staff-member-job-position', 453 ] 454 ); 455 456 457 $this->add_group_control( 458 Group_Control_Text_Stroke::get_type(), 459 [ 460 461 'name' => 'staff_position_stroke', 462 'selector' => '{{WRAPPER}} .staff-member-job-position', 463 ] 464 ); 407 465 408 466 $this->end_controls_section(); … … 435 493 'type' => Controls_Manager::COLOR, 436 494 'selectors' => [ 437 '{{WRAPPER}} p.staff-member-text ,.site-main {{WRAPPER}} p.staff-member-text' => 'color: {{VALUE}}',495 '{{WRAPPER}} p.staff-member-text' => 'color: {{VALUE}}', 438 496 ], 439 497 ] … … 444 502 [ 445 503 'name' => 'text_fonts', 446 'selector' => '{{WRAPPER}} .staff-member-name',504 'selector' => '{{WRAPPER}} p.staff-member-text', 447 505 448 506 ] … … 575 633 ); 576 634 577 578 579 635 $this->add_responsive_control( 580 636 'icon_border_radius', … … 589 645 ); 590 646 647 $this->add_control( 648 'icon_hover_border_color', 649 [ 650 'label' => __( 'Icon Border Hover Color', 'definitive-addons-for-elementor' ), 651 'type' => Controls_Manager::COLOR, 652 'selectors' => [ 653 '{{WRAPPER}} .icon-container:hover' => 'border-color: {{VALUE}}', 654 ], 655 ] 656 ); 657 591 658 $this->add_responsive_control( 592 659 'icon_right_spacing', … … 616 683 ] 617 684 ); 618 619 620 685 621 686 $this->end_controls_section(); 622 687 623 688 624 689 $this->start_controls_section( 625 ' _section_style_content',626 [ 627 'label' => __( 'Staff Member Cont ent', 'definitive-addons-for-elementor' ),690 'section_style_content', 691 [ 692 'label' => __( 'Staff Member Container', 'definitive-addons-for-elementor' ), 628 693 'tab' => Controls_Manager::TAB_STYLE, 629 694 ] … … 633 698 'content_padding', 634 699 [ 635 'label' => __( 'Cont entPadding', 'definitive-addons-for-elementor' ),700 'label' => __( 'Container Padding', 'definitive-addons-for-elementor' ), 636 701 'type' => Controls_Manager::DIMENSIONS, 637 702 'size_units' => [ 'px', 'em', '%' ], … … 654 719 ); 655 720 721 $this->add_control( 722 'content_hover_bg_color', 723 [ 724 'label' => __( 'Container Background Hover Color', 'definitive-addons-for-elementor' ), 725 'type' => Controls_Manager::COLOR, 726 'selectors' => [ 727 '{{WRAPPER}} .staff-member:hover' => 'background-color: {{VALUE}}', 728 ], 729 ] 730 ); 731 732 $this->add_group_control( 733 Group_Control_Border::get_type(), 734 [ 735 'name' => 'content_border', 736 'selector' => '{{WRAPPER}} .staff-member', 737 ] 738 ); 739 740 $this->add_responsive_control( 741 'container_border_radius', 742 [ 743 'label' =>__( 'Container Border Radius', 'definitive-addons-for-elementor' ), 744 'type' => Controls_Manager::DIMENSIONS, 745 'size_units' => [ 'px', '%' ], 746 'selectors' => [ 747 '{{WRAPPER}} .staff-member' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}}; overflow: hidden;', 748 ], 749 ] 750 ); 751 752 $this->add_control( 753 'content_border_hvr_color', 754 [ 755 'label' => __( 'Container Border Hover Color', 'definitive-addons-for-elementor' ), 756 'type' => Controls_Manager::COLOR, 757 'selectors' => [ 758 '{{WRAPPER}} .staff-member:hover' => 'border-color: {{VALUE}}', 759 ], 760 ] 761 ); 762 763 $this->add_control( 764 'container_rotate', 765 [ 766 'label' =>__( 'Rotate', 'definitive-addons-for-elementor' ), 767 'type' => Controls_Manager::SLIDER, 768 'default' => [ 769 'size' => 0, 770 'unit' => 'deg', 771 ], 772 'selectors' => [ 773 '{{WRAPPER}} .staff-member' => 'transform: rotate({{SIZE}}{{UNIT}});', 774 ], 775 ] 776 ); 777 778 $this->add_group_control( 779 Group_Control_Box_Shadow::get_type(), 780 [ 781 'label' => __( 'Container Box Shadow', 'definitive-addons-for-elementor' ), 782 'name' => 'container_shadow', 783 784 'selector' => '{{WRAPPER}} .staff-member', 785 ] 786 ); 787 788 $this->add_group_control( 789 Group_Control_Box_Shadow::get_type(), 790 [ 791 'label' => __( 'Container Hover Box Shadow', 'definitive-addons-for-elementor' ), 792 'name' => 'container_hvr_shadow', 793 794 'selector' => '{{WRAPPER}} .staff-member:hover', 795 ] 796 ); 797 656 798 $this->end_controls_section(); 657 799 … … 661 803 protected function render( ) { 662 804 $settings = $this->get_settings_for_display(); 663 $shadow_style = $this->get_settings_for_display('staff_bg_shadow_style');805 664 806 665 807 $staff_member_alignment = $this->get_settings_for_display('staff_member_alignment'); … … 680 822 681 823 682 <div class="staff-member <?php echo esc_attr($shadow_style); ?>" style="<?php echo esc_attr($container_styles); ?>">824 <div class="staff-member style3" style="<?php echo esc_attr($container_styles); ?>"> 683 825 <?php if ( $image ) : ?> 684 826 <img class="staff-member-img" src="<?php echo esc_url( $image ); ?>" alt="<?php echo esc_attr( $settings['staff_name'] ); ?>"> -
definitive-addons-for-elementor/trunk/inc/Elements/heading-with-separator.php
r2675151 r2686404 8 8 namespace Definitive_Addons_Elementor\Elements; 9 9 use Elementor\Group_Control_Background; 10 10 use Elementor\Group_Control_Box_Shadow; 11 use Elementor\Group_Control_Text_Shadow; 12 use Elementor\Group_Control_Text_Stroke; 11 13 use Elementor\Controls_Manager; 12 14 use Elementor\Group_Control_Border; … … 112 114 'left' => [ 113 115 'title' =>__( 'Left', 'definitive-addons-for-elementor' ), 114 'icon' => ' fa fa-align-left',116 'icon' => 'eicon-text-align-left', 115 117 ], 116 118 'center' => [ 117 119 'title' =>__( 'Center', 'definitive-addons-for-elementor' ), 118 'icon' => ' fa fa-align-center',120 'icon' => 'eicon-text-align-center', 119 121 ], 120 122 'right' => [ 121 123 'title' =>__( 'Right', 'definitive-addons-for-elementor' ), 122 'icon' => ' fa fa-align-right',124 'icon' => 'eicon-text-align-right', 123 125 ], 124 125 126 ], 126 127 'default' => 'center' … … 134 135 135 136 $this->start_controls_section( 136 ' _section_style_title',137 'section_style_title', 137 138 [ 138 139 'label' => __( 'Heading', 'definitive-addons-for-elementor' ), … … 166 167 ] 167 168 ); 168 169 170 $this->add_control( 171 'title_bg_color', 172 [ 173 'label' => __( 'Title Background Color', 'definitive-addons-for-elementor' ), 174 'type' => Controls_Manager::COLOR, 175 'selectors' => [ 176 '{{WRAPPER}} .font-heading' => 'background-color: {{VALUE}}', 177 ], 178 ] 179 ); 180 181 182 $this->add_control( 183 'title_hover_color', 184 [ 185 'label' =>__( 'Title Hover Color', 'definitive-addons-for-elementor' ), 186 'type' => Controls_Manager::COLOR, 187 'selectors' => [ 188 '{{WRAPPER}} .font-heading:hover' => 'color: {{VALUE}}', 189 ], 190 ] 191 ); 192 193 $this->add_control( 194 'title_bg_hvr_color', 195 [ 196 'label' =>__( 'Title Background Hover Color', 'definitive-addons-for-elementor' ), 197 'type' => Controls_Manager::COLOR, 198 'selectors' => [ 199 '{{WRAPPER}} .font-heading:hover' => 'background-color: {{VALUE}}', 200 ], 201 ] 202 ); 203 169 204 $this->add_group_control( 170 205 Group_Control_Typography::get_type(), … … 175 210 ] 176 211 ); 177 178 179 $this->add_control( 180 'title_hover_color', 181 [ 182 'label' => __( 'Title Hover Color', 'definitive-addons-for-elementor' ), 183 'type' => Controls_Manager::COLOR, 184 'selectors' => [ 185 '{{WRAPPER}} .font-heading:hover' => 'color: {{VALUE}}', 186 ], 187 ] 188 ); 212 213 $this->add_group_control( 214 Group_Control_Text_Shadow::get_type(), 215 [ 216 217 'name' => 'heading_shadow', 218 219 'selector' => '{{WRAPPER}} .font-heading', 220 ] 221 ); 222 223 224 $this->add_group_control( 225 Group_Control_Text_Stroke::get_type(), 226 [ 227 228 'name' => 'heading_stroke', 229 'selector' => '{{WRAPPER}} .font-heading', 230 ] 231 ); 232 233 $this->add_responsive_control( 234 'title_padding', 235 [ 236 'label' => __( 'Title Padding', 'definitive-addons-for-elementor' ), 237 'type' => Controls_Manager::DIMENSIONS, 238 'size_units' => [ 'px', 'em', '%' ], 239 'selectors' => [ 240 '{{WRAPPER}} .font-heading' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', 241 ], 242 ] 243 ); 244 189 245 $this->end_controls_section(); 190 246 // … … 205 261 ], 206 262 'default' =>'#6EC1E4' 263 ] 264 ); 265 266 $this->add_control( 267 'separator_hvr_color', 268 [ 269 'label' => __( 'Separator Hover Color', 'definitive-addons-for-elementor' ), 270 'type' => Controls_Manager::COLOR, 271 'selectors' => [ 272 '{{WRAPPER}} .separator:hover' => 'border-color: {{VALUE}}', 273 ], 274 'default' =>'#6EC1D4' 207 275 ] 208 276 ); … … 226 294 'separator_height', 227 295 [ 228 'label' => __( 'Separator Height', 'definitive-addons-for-elementor' ),296 'label' =>__( 'Separator Height', 'definitive-addons-for-elementor' ), 229 297 'type' => Controls_Manager::SLIDER, 230 298 'size_units' => ['px'], … … 238 306 ); 239 307 240 241 242 308 $this->add_responsive_control( 243 309 'separator_bottom_spacing', … … 275 341 $style = ''; 276 342 $container_styles = 'text-align: '.$heading_alignment.';'; 277 278 279 280 343 281 344 if ($heading_alignment == 'left'){ -
definitive-addons-for-elementor/trunk/inc/Reuses/Reuse.php
r2681173 r2686404 100 100 return $post_categories; 101 101 } 102 103 104 105 102 106 103 public static function dafe_posted_on() { 107 104 … … 151 148 if( $list_val = get_posts($args)){ 152 149 foreach($list_val as $key){ 153 $form_list[$key->ID] = sanitize_text_field($key->post_title);150 $form_list[$key->ID] = esc_html($key->post_title); 154 151 } 155 152 return $form_list; 156 153 }else{ 157 154 158 return $form_msg = __( 'No Form found. Create New form ', 'definitive-addons-for-elementor' ) .' <a href="'. esc_url( admin_url( 'admin.php?page=wpforms-builder' )).'" target="_blank">'155 return $form_msg = __( 'No Form found. Create New form ', 'definitive-addons-for-elementor' ) .' <a href="'.admin_url( 'admin.php?page=wpforms-builder' ).'" target="_blank">' 159 156 . __( 'Click here', 'definitive-addons-for-elementor' ) .'</a>'; 160 157 } … … 171 168 if( $list_val = Ninja_Forms()->form()->get_forms()){ 172 169 foreach($list_val as $key){ 173 $form_list[$key->get_id()] = sanitize_text_field($key->get_setting('title'));170 $form_list[$key->get_id()] = esc_html($key->get_setting('title')); 174 171 } 175 172 return $form_list; … … 190 187 if( $list_val = get_posts($args)){ 191 188 foreach($list_val as $key){ 192 $cf7_list[$key->ID] = sanitize_text_field($key->post_title);189 $cf7_list[$key->ID] = esc_html($key->post_title); 193 190 } 194 191 return $cf7_list; 195 192 }else{ 196 193 197 return $cf7_msg = __( 'No Form found. Create New form ', 'definitive-addons-for-elementor' ) .' <a href="'. esc_url( admin_url( 'admin.php?page=wpcf7-new' )).'" target="_blank">'194 return $cf7_msg = __( 'No Form found. Create New form ', 'definitive-addons-for-elementor' ) .' <a href="'.admin_url( 'admin.php?page=wpcf7-new' ).'" target="_blank">' 198 195 . __( 'Click here', 'definitive-addons-for-elementor' ) .'</a>'; 199 196 } -
definitive-addons-for-elementor/trunk/languages/definitive-addons-for-elementor.pot
r2673738 r2686404 3 3 msgstr "" 4 4 "Project-Id-Version: definitive-addons-for-elementor\n" 5 "POT-Creation-Date: 2022-0 2-06 18:06+0600\n"5 "POT-Creation-Date: 2022-03-01 14:26+0600\n" 6 6 "PO-Revision-Date: 2020-03-12 14:48+0600\n" 7 7 "Last-Translator: \n" … … 153 153 msgstr "" 154 154 155 #: inc/Elements/Accordion.php:244 inc/Elements/Category_List.php: 351155 #: inc/Elements/Accordion.php:244 inc/Elements/Category_List.php:412 156 156 #: inc/Elements/Contact_form_7.php:255 157 #: inc/Elements/Filterable_Portfolio.php:757 inc/Elements/Ninja_Forms.php:273 158 #: inc/Elements/Post_Grid.php:560 inc/Elements/Social_Icon.php:339 157 #: inc/Elements/Filterable_Portfolio.php:757 inc/Elements/Icon_Box.php:239 158 #: inc/Elements/Ninja_Forms.php:273 inc/Elements/Post_Grid.php:561 159 #: inc/Elements/Social_Icon.php:339 inc/Elements/Staff_Member.php:743 159 160 #: inc/Elements/Tabs.php:201 inc/Elements/WpForm.php:260 160 161 msgid "Container Border Radius" 161 162 msgstr "" 162 163 163 #: inc/Elements/Accordion.php:256 inc/Elements/Category_List.php:320 164 #: inc/Elements/Contact_form_7.php:211 inc/Elements/Ninja_Forms.php:229 165 #: inc/Elements/Social_Icon.php:351 inc/Elements/Tabs.php:213 166 #: inc/Elements/Teaser_Box.php:381 inc/Elements/Testimonial.php:482 167 #: inc/Elements/WpForm.php:216 164 #: inc/Elements/Accordion.php:256 inc/Elements/Category_List.php:371 165 #: inc/Elements/Contact_form_7.php:211 inc/Elements/Icon_Box.php:265 166 #: inc/Elements/Ninja_Forms.php:229 inc/Elements/Promo-box.php:272 167 #: inc/Elements/Social_Icon.php:351 inc/Elements/Staff_Member.php:700 168 #: inc/Elements/Tabs.php:213 inc/Elements/Teaser_Box.php:381 169 #: inc/Elements/Testimonial.php:482 inc/Elements/WpForm.php:216 168 170 msgid "Container Padding" 169 171 msgstr "" … … 174 176 175 177 #: inc/Elements/Accordion.php:279 inc/Elements/CTA.php:405 176 #: inc/Elements/C ontact_form_7.php:290 inc/Elements/Feature_list.php:370177 #: inc/Elements/F ilterable_Portfolio.php:486 inc/Elements/Flip_Box.php:251178 #: inc/Elements/ Icon_Box.php:392 inc/Elements/Image_Overlay.php:237179 #: inc/Elements/ Ninja_Forms.php:308 inc/Elements/Popular_Post.php:88180 #: inc/Elements/Po st_Carousel.php:232 inc/Elements/Post_Grid.php:299181 #: inc/Elements/P roducts.php:230 inc/Elements/Promo-box.php:200182 #: inc/Elements/ Slider.php:305 inc/Elements/Tabs.php:245183 #: inc/Elements/T easer_Box.php:262 inc/Elements/WpForm.php:295184 #: inc/Elements/ heading-with-separator.php:161178 #: inc/Elements/Category_Box.php:149 inc/Elements/Contact_form_7.php:290 179 #: inc/Elements/Feature_list.php:370 inc/Elements/Filterable_Portfolio.php:486 180 #: inc/Elements/Flip_Box.php:251 inc/Elements/Icon_Box.php:538 181 #: inc/Elements/Image_Overlay.php:237 inc/Elements/Ninja_Forms.php:308 182 #: inc/Elements/Popular_Post.php:88 inc/Elements/Post_Carousel.php:232 183 #: inc/Elements/Post_Grid.php:299 inc/Elements/Products.php:230 184 #: inc/Elements/Promo-box.php:221 inc/Elements/Slider.php:305 185 #: inc/Elements/Tabs.php:245 inc/Elements/Teaser_Box.php:262 186 #: inc/Elements/WpForm.php:295 inc/Elements/heading-with-separator.php:162 185 187 msgid "Title Color" 186 188 msgstr "" 187 189 188 190 #: inc/Elements/Accordion.php:290 inc/Elements/Tabs.php:256 191 #: inc/Elements/heading-with-separator.php:173 189 192 msgid "Title Background Color" 190 193 msgstr "" 191 194 192 #: inc/Elements/Accordion.php:302 inc/Elements/Filterable_Portfolio.php:497 193 #: inc/Elements/Flip_Box.php:262 inc/Elements/Popular_Post.php:99 195 #: inc/Elements/Accordion.php:302 inc/Elements/Category_Box.php:160 196 #: inc/Elements/Filterable_Portfolio.php:497 inc/Elements/Flip_Box.php:262 197 #: inc/Elements/Icon_Box.php:549 inc/Elements/Popular_Post.php:99 194 198 #: inc/Elements/Post_Carousel.php:244 inc/Elements/Post_Grid.php:310 195 #: inc/Elements/ Tabs.php:268 inc/Elements/Teaser_Box.php:273196 #: inc/Elements/ heading-with-separator.php:182199 #: inc/Elements/Promo-box.php:232 inc/Elements/Tabs.php:268 200 #: inc/Elements/Teaser_Box.php:273 inc/Elements/heading-with-separator.php:185 197 201 msgid "Title Hover Color" 198 202 msgstr "" 199 203 200 204 #: inc/Elements/Accordion.php:322 inc/Elements/Pricing_Table.php:391 201 #: inc/Elements/Tabs.php:288 205 #: inc/Elements/Tabs.php:288 inc/Elements/heading-with-separator.php:236 202 206 msgid "Title Padding" 203 207 msgstr "" 204 208 205 #: inc/Elements/Accordion.php:370 206 msgid "Icon Before Title "209 #: inc/Elements/Accordion.php:370 inc/Elements/Tabs.php:321 210 msgid "Icon Before Title" 207 211 msgstr "" 208 212 209 213 #: inc/Elements/Accordion.php:378 inc/Elements/Accordion.php:436 210 #: inc/Elements/Category_List.php:19 7 inc/Elements/Counter.php:178211 #: inc/Elements/Feature_list.php:166 inc/Elements/Icon_Box.php: 220214 #: inc/Elements/Category_List.php:198 inc/Elements/Counter.php:169 215 #: inc/Elements/Feature_list.php:166 inc/Elements/Icon_Box.php:326 212 216 #: inc/Elements/Icon_List.php:214 inc/Elements/Pricing_Table.php:503 213 #: inc/Elements/Social_Icon.php:477 inc/Elements/Staff_Member.php: 463217 #: inc/Elements/Social_Icon.php:477 inc/Elements/Staff_Member.php:521 214 218 #: inc/Elements/Tabs.php:329 215 219 msgid "Size" … … 217 221 218 222 #: inc/Elements/Accordion.php:399 inc/Elements/Accordion.php:458 219 #: inc/Elements/CTA.php:294 inc/Elements/Category_List.php:22 0220 #: inc/Elements/Counter.php:23 9inc/Elements/Creative_Button.php:342221 #: inc/Elements/Feature_list.php:229 inc/Elements/Icon_Box.php: 293223 #: inc/Elements/CTA.php:294 inc/Elements/Category_List.php:221 224 #: inc/Elements/Counter.php:230 inc/Elements/Creative_Button.php:342 225 #: inc/Elements/Feature_list.php:229 inc/Elements/Icon_Box.php:414 222 226 #: inc/Elements/Icon_List.php:236 inc/Elements/Pricing_Table.php:525 223 #: inc/Elements/Staff_Member.php:5 27inc/Elements/Tabs.php:352227 #: inc/Elements/Staff_Member.php:585 inc/Elements/Tabs.php:352 224 228 msgid "Icon Color" 225 229 msgstr "" 226 230 227 231 #: inc/Elements/Accordion.php:411 inc/Elements/Accordion.php:470 228 #: inc/Elements/CTA.php:317 inc/Elements/Category_List.php:23 2229 #: inc/Elements/Counter.php:2 66inc/Elements/Creative_Button.php:354230 #: inc/Elements/Feature_list.php:241 inc/Elements/Icon_Box.php: 305232 #: inc/Elements/CTA.php:317 inc/Elements/Category_List.php:233 233 #: inc/Elements/Counter.php:257 inc/Elements/Creative_Button.php:354 234 #: inc/Elements/Feature_list.php:241 inc/Elements/Icon_Box.php:426 231 235 #: inc/Elements/Icon_List.php:248 inc/Elements/Pricing_Table.php:537 232 #: inc/Elements/Staff_Member.php:5 39inc/Elements/Tabs.php:364236 #: inc/Elements/Staff_Member.php:597 inc/Elements/Tabs.php:364 233 237 msgid "Icon Hover Color" 234 238 msgstr "" … … 238 242 msgstr "" 239 243 240 #: inc/Elements/Accordion.php:493 inc/Elements/Counter.php:425 241 #: inc/Elements/Feature_list.php:324 inc/Elements/Icon_Box.php:468 242 #: inc/Elements/Image_Overlay.php:211 inc/Elements/Post_Grid.php:529 243 #: inc/Elements/Promo-box.php:174 inc/Elements/Staff_Member.php:635 244 #: inc/Elements/Tabs.php:481 inc/Elements/Teaser_Box.php:348 245 #: inc/Elements/Testimonial_Slider.php:584 244 #: inc/Elements/Accordion.php:493 inc/Elements/Counter.php:468 245 #: inc/Elements/Feature_list.php:324 inc/Elements/Image_Overlay.php:211 246 #: inc/Elements/Post_Grid.php:530 inc/Elements/Tabs.php:481 247 #: inc/Elements/Teaser_Box.php:348 inc/Elements/Testimonial_Slider.php:584 246 248 msgid "Content Padding" 247 249 msgstr "" … … 252 254 253 255 #: inc/Elements/Accordion.php:523 inc/Elements/Filterable_Portfolio.php:595 254 #: inc/Elements/Post_Grid.php:40 8256 #: inc/Elements/Post_Grid.php:409 255 257 msgid "Content Color" 256 258 msgstr "" … … 273 275 #: inc/Elements/Accordion.php:596 inc/Elements/Contact_form_7.php:701 274 276 #: inc/Elements/Filterable_Portfolio.php:664 inc/Elements/Ninja_Forms.php:566 275 #: inc/Elements/Post_Grid.php:47 4inc/Elements/Tabs.php:584277 #: inc/Elements/Post_Grid.php:475 inc/Elements/Tabs.php:584 276 278 #: inc/Elements/Teaser_Box.php:428 inc/Elements/WpForm.php:606 277 279 msgid "Button Color" … … 281 283 #: inc/Elements/Contact_form_7.php:712 inc/Elements/Creative_Button.php:213 282 284 #: inc/Elements/Filterable_Portfolio.php:675 inc/Elements/Ninja_Forms.php:577 283 #: inc/Elements/Post_Grid.php:48 4inc/Elements/Pricing_Table.php:750285 #: inc/Elements/Post_Grid.php:485 inc/Elements/Pricing_Table.php:750 284 286 #: inc/Elements/Slider.php:484 inc/Elements/Tabs.php:596 285 287 #: inc/Elements/Teaser_Box.php:440 inc/Elements/WpForm.php:617 … … 290 292 #: inc/Elements/Contact_form_7.php:722 291 293 #: inc/Elements/Filterable_Portfolio.php:686 inc/Elements/Ninja_Forms.php:587 292 #: inc/Elements/Post_Grid.php:49 4inc/Elements/Pricing_Table.php:761294 #: inc/Elements/Post_Grid.php:495 inc/Elements/Pricing_Table.php:761 293 295 #: inc/Elements/Slider.php:495 inc/Elements/Subscription.php:173 294 296 #: inc/Elements/Tabs.php:608 inc/Elements/Teaser_Box.php:452 … … 300 302 #: inc/Elements/Contact_form_7.php:732 inc/Elements/Creative_Button.php:225 301 303 #: inc/Elements/Filterable_Portfolio.php:697 inc/Elements/Ninja_Forms.php:597 302 #: inc/Elements/Post_Grid.php:50 4inc/Elements/Pricing_Table.php:772304 #: inc/Elements/Post_Grid.php:505 inc/Elements/Pricing_Table.php:772 303 305 #: inc/Elements/Slider.php:506 inc/Elements/Subscription.php:195 304 306 #: inc/Elements/Tabs.php:620 inc/Elements/Teaser_Box.php:464 … … 336 338 337 339 #: inc/Elements/CTA.php:75 inc/Elements/Creative_Button.php:76 338 #: inc/Elements/Feature_list.php:69 inc/Elements/Icon_Box.php: 69340 #: inc/Elements/Feature_list.php:69 inc/Elements/Icon_Box.php:75 339 341 #: inc/Elements/Social_Icon.php:64 340 342 msgid "Icon" … … 350 352 351 353 #: inc/Elements/CTA.php:100 inc/Elements/Contact_form_7.php:129 352 #: inc/Elements/Flip_Box.php:74 inc/Elements/Icon_Box.php:1 05354 #: inc/Elements/Flip_Box.php:74 inc/Elements/Icon_Box.php:111 353 355 #: inc/Elements/Image_Overlay.php:102 inc/Elements/Ninja_Forms.php:147 354 356 #: inc/Elements/Pricing_Table.php:77 inc/Elements/Products.php:70 355 357 #: inc/Elements/Teaser_Box.php:88 inc/Elements/Testimonial.php:245 356 358 #: inc/Elements/Testimonial_Slider.php:346 inc/Elements/WpForm.php:134 357 #: inc/Elements/heading-with-separator.php:7 7359 #: inc/Elements/heading-with-separator.php:79 358 360 msgid "Title HTML Tag" 359 361 msgstr "" 360 362 361 363 #: inc/Elements/CTA.php:105 inc/Elements/Contact_form_7.php:134 362 #: inc/Elements/Flip_Box.php:79 inc/Elements/I con_Box.php:110363 #: inc/Elements/ Image_Overlay.php:107 inc/Elements/Ninja_Forms.php:152364 #: inc/Elements/Pr icing_Table.php:82 inc/Elements/Products.php:74365 #: inc/Elements/ Subscription.php:82 inc/Elements/Teaser_Box.php:93366 #: inc/Elements/Testimonial .php:250 inc/Elements/Testimonial_Slider.php:351367 #: inc/Elements/ WpForm.php:139 inc/Elements/heading-with-separator.php:81364 #: inc/Elements/Flip_Box.php:79 inc/Elements/Image_Overlay.php:107 365 #: inc/Elements/Ninja_Forms.php:152 inc/Elements/Pricing_Table.php:82 366 #: inc/Elements/Products.php:74 inc/Elements/Subscription.php:82 367 #: inc/Elements/Teaser_Box.php:93 inc/Elements/Testimonial.php:250 368 #: inc/Elements/Testimonial_Slider.php:351 inc/Elements/WpForm.php:139 369 #: inc/Elements/heading-with-separator.php:83 368 370 msgid "H1" 369 371 msgstr "" 370 372 371 373 #: inc/Elements/CTA.php:109 inc/Elements/Contact_form_7.php:135 372 #: inc/Elements/Flip_Box.php:83 inc/Elements/I con_Box.php:114373 #: inc/Elements/ Image_Overlay.php:111 inc/Elements/Ninja_Forms.php:153374 #: inc/Elements/Pr icing_Table.php:86 inc/Elements/Products.php:75375 #: inc/Elements/ Subscription.php:83 inc/Elements/Teaser_Box.php:97376 #: inc/Elements/Testimonial .php:254 inc/Elements/Testimonial_Slider.php:355377 #: inc/Elements/ WpForm.php:140 inc/Elements/heading-with-separator.php:82374 #: inc/Elements/Flip_Box.php:83 inc/Elements/Image_Overlay.php:111 375 #: inc/Elements/Ninja_Forms.php:153 inc/Elements/Pricing_Table.php:86 376 #: inc/Elements/Products.php:75 inc/Elements/Subscription.php:83 377 #: inc/Elements/Teaser_Box.php:97 inc/Elements/Testimonial.php:254 378 #: inc/Elements/Testimonial_Slider.php:355 inc/Elements/WpForm.php:140 379 #: inc/Elements/heading-with-separator.php:84 378 380 msgid "H2" 379 381 msgstr "" 380 382 381 383 #: inc/Elements/CTA.php:113 inc/Elements/Contact_form_7.php:136 382 #: inc/Elements/Flip_Box.php:87 inc/Elements/I con_Box.php:118383 #: inc/Elements/ Image_Overlay.php:115 inc/Elements/Ninja_Forms.php:154384 #: inc/Elements/Pr icing_Table.php:90 inc/Elements/Products.php:76385 #: inc/Elements/ Subscription.php:84 inc/Elements/Teaser_Box.php:101386 #: inc/Elements/Testimonial .php:258 inc/Elements/Testimonial_Slider.php:359387 #: inc/Elements/ WpForm.php:141 inc/Elements/heading-with-separator.php:83384 #: inc/Elements/Flip_Box.php:87 inc/Elements/Image_Overlay.php:115 385 #: inc/Elements/Ninja_Forms.php:154 inc/Elements/Pricing_Table.php:90 386 #: inc/Elements/Products.php:76 inc/Elements/Subscription.php:84 387 #: inc/Elements/Teaser_Box.php:101 inc/Elements/Testimonial.php:258 388 #: inc/Elements/Testimonial_Slider.php:359 inc/Elements/WpForm.php:141 389 #: inc/Elements/heading-with-separator.php:85 388 390 msgid "H3" 389 391 msgstr "" 390 392 391 393 #: inc/Elements/CTA.php:117 inc/Elements/Contact_form_7.php:137 392 #: inc/Elements/Flip_Box.php:91 inc/Elements/I con_Box.php:122393 #: inc/Elements/ Image_Overlay.php:119 inc/Elements/Ninja_Forms.php:155394 #: inc/Elements/Pr icing_Table.php:94 inc/Elements/Products.php:77395 #: inc/Elements/ Subscription.php:85 inc/Elements/Teaser_Box.php:105396 #: inc/Elements/Testimonial .php:262 inc/Elements/Testimonial_Slider.php:363397 #: inc/Elements/ WpForm.php:142 inc/Elements/heading-with-separator.php:84394 #: inc/Elements/Flip_Box.php:91 inc/Elements/Image_Overlay.php:119 395 #: inc/Elements/Ninja_Forms.php:155 inc/Elements/Pricing_Table.php:94 396 #: inc/Elements/Products.php:77 inc/Elements/Subscription.php:85 397 #: inc/Elements/Teaser_Box.php:105 inc/Elements/Testimonial.php:262 398 #: inc/Elements/Testimonial_Slider.php:363 inc/Elements/WpForm.php:142 399 #: inc/Elements/heading-with-separator.php:86 398 400 msgid "H4" 399 401 msgstr "" 400 402 401 403 #: inc/Elements/CTA.php:121 inc/Elements/Contact_form_7.php:138 402 #: inc/Elements/Flip_Box.php:95 inc/Elements/I con_Box.php:126403 #: inc/Elements/ Image_Overlay.php:123 inc/Elements/Ninja_Forms.php:156404 #: inc/Elements/Pr icing_Table.php:98 inc/Elements/Products.php:78405 #: inc/Elements/ Subscription.php:86 inc/Elements/Teaser_Box.php:109406 #: inc/Elements/Testimonial .php:266 inc/Elements/Testimonial_Slider.php:367407 #: inc/Elements/ WpForm.php:143 inc/Elements/heading-with-separator.php:85404 #: inc/Elements/Flip_Box.php:95 inc/Elements/Image_Overlay.php:123 405 #: inc/Elements/Ninja_Forms.php:156 inc/Elements/Pricing_Table.php:98 406 #: inc/Elements/Products.php:78 inc/Elements/Subscription.php:86 407 #: inc/Elements/Teaser_Box.php:109 inc/Elements/Testimonial.php:266 408 #: inc/Elements/Testimonial_Slider.php:367 inc/Elements/WpForm.php:143 409 #: inc/Elements/heading-with-separator.php:87 408 410 msgid "H5" 409 411 msgstr "" 410 412 411 413 #: inc/Elements/CTA.php:125 inc/Elements/Contact_form_7.php:139 412 #: inc/Elements/Flip_Box.php:99 inc/Elements/I con_Box.php:130413 #: inc/Elements/ Image_Overlay.php:127 inc/Elements/Ninja_Forms.php:157414 #: inc/Elements/Pr icing_Table.php:102 inc/Elements/Products.php:79415 #: inc/Elements/ Subscription.php:87 inc/Elements/Teaser_Box.php:113416 #: inc/Elements/Testimonial .php:270 inc/Elements/Testimonial_Slider.php:371417 #: inc/Elements/ WpForm.php:144 inc/Elements/heading-with-separator.php:86414 #: inc/Elements/Flip_Box.php:99 inc/Elements/Image_Overlay.php:127 415 #: inc/Elements/Ninja_Forms.php:157 inc/Elements/Pricing_Table.php:102 416 #: inc/Elements/Products.php:79 inc/Elements/Subscription.php:87 417 #: inc/Elements/Teaser_Box.php:113 inc/Elements/Testimonial.php:270 418 #: inc/Elements/Testimonial_Slider.php:371 inc/Elements/WpForm.php:144 419 #: inc/Elements/heading-with-separator.php:88 418 420 msgid "H6" 419 421 msgstr "" … … 450 452 msgstr "" 451 453 452 #: inc/Elements/CTA.php:222 inc/Elements/Icon_Box.php: 212454 #: inc/Elements/CTA.php:222 inc/Elements/Icon_Box.php:318 453 455 msgid "Icon Style" 454 456 msgstr "" … … 459 461 msgstr "" 460 462 461 #: inc/Elements/CTA.php:251 inc/Elements/Counter.php:19 9462 #: inc/Elements/Feature_list.php:187 inc/Elements/Icon_Box.php: 241463 #: inc/Elements/Staff_Member.php: 484463 #: inc/Elements/CTA.php:251 inc/Elements/Counter.php:190 464 #: inc/Elements/Feature_list.php:187 inc/Elements/Icon_Box.php:347 465 #: inc/Elements/Staff_Member.php:542 464 466 msgid "Icon Height" 465 467 msgstr "" 466 468 467 #: inc/Elements/CTA.php:272 inc/Elements/Counter.php:2 20468 #: inc/Elements/Feature_list.php:208 inc/Elements/Icon_Box.php: 262469 #: inc/Elements/Staff_Member.php:5 06469 #: inc/Elements/CTA.php:272 inc/Elements/Counter.php:211 470 #: inc/Elements/Feature_list.php:208 inc/Elements/Icon_Box.php:368 471 #: inc/Elements/Staff_Member.php:564 470 472 msgid "Icon Width" 471 473 msgstr "" 472 474 473 #: inc/Elements/CTA.php:305 inc/Elements/Counter.php:2 53475 #: inc/Elements/CTA.php:305 inc/Elements/Counter.php:244 474 476 msgid "Icon Background Color" 475 477 msgstr "" 476 478 477 #: inc/Elements/CTA.php:328 inc/Elements/Counter.php:2 77478 #: inc/Elements/Icon_Box.php: 316479 #: inc/Elements/CTA.php:328 inc/Elements/Counter.php:268 480 #: inc/Elements/Icon_Box.php:437 479 481 msgid "Icon Hover Background Color" 480 482 msgstr "" 481 483 482 #: inc/Elements/CTA.php:350 inc/Elements/Counter.php:2 96483 #: inc/Elements/Feature_list.php:284 inc/Elements/Icon_Box.php: 338484 #: inc/Elements/Staff_Member.php: 582484 #: inc/Elements/CTA.php:350 inc/Elements/Counter.php:287 485 #: inc/Elements/Feature_list.php:284 inc/Elements/Icon_Box.php:459 486 #: inc/Elements/Staff_Member.php:638 485 487 msgid "Icon Border Radius" 486 488 msgstr "" … … 498 500 499 501 #: inc/Elements/CTA.php:393 inc/Elements/Contact_form_7.php:275 500 #: inc/Elements/Feature_list.php:358 inc/Elements/Icon_Box.php: 380502 #: inc/Elements/Feature_list.php:358 inc/Elements/Icon_Box.php:526 501 503 #: inc/Elements/Ninja_Forms.php:293 inc/Elements/Slider.php:326 502 #: inc/Elements/WpForm.php:280 inc/Elements/heading-with-separator.php:1 49504 #: inc/Elements/WpForm.php:280 inc/Elements/heading-with-separator.php:150 503 505 msgid "Title Bottom Spacing" 504 506 msgstr "" … … 509 511 510 512 #: inc/Elements/CTA.php:437 inc/Elements/Contact_form_7.php:336 511 #: inc/Elements/Feature_list.php:414 inc/Elements/Icon_Box.php: 438513 #: inc/Elements/Feature_list.php:414 inc/Elements/Icon_Box.php:615 512 514 #: inc/Elements/Ninja_Forms.php:354 inc/Elements/Slider.php:341 513 515 #: inc/Elements/Teaser_Box.php:316 inc/Elements/WpForm.php:342 … … 550 552 msgstr "" 551 553 552 #: inc/Elements/Category_Box.php:2 5554 #: inc/Elements/Category_Box.php:28 553 555 msgid "DA: Product Category Box" 554 556 msgstr "" 555 557 556 #: inc/Elements/Category_Box.php:5 1558 #: inc/Elements/Category_Box.php:54 557 559 msgid "Category Box" 558 560 msgstr "" 559 561 560 #: inc/Elements/Category_Box.php:6 1 inc/Elements/Category_List.php:101562 #: inc/Elements/Category_Box.php:64 inc/Elements/Category_List.php:102 561 563 msgid "Select Product Category" 562 564 msgstr "" 563 565 564 #: inc/Elements/Category_Box.php: 78566 #: inc/Elements/Category_Box.php:81 inc/Elements/Promo-box.php:134 565 567 msgid "Overlay Style" 566 568 msgstr "" 567 569 568 #: inc/Elements/Category_Box.php:86 inc/Elements/Creative_Button.php:236 569 #: inc/Elements/Flip_Box.php:340 inc/Elements/Icon_List.php:343 570 #: inc/Elements/Pricing_Table.php:634 inc/Elements/Staff_Member.php:389 571 #: inc/Elements/Staff_Member.php:434 inc/Elements/Subscription.php:241 570 #: inc/Elements/Category_Box.php:90 inc/Elements/Filterable_Portfolio.php:387 571 #: inc/Elements/Slider.php:292 572 msgid "Overlay Background Color" 573 msgstr "" 574 575 #: inc/Elements/Category_Box.php:101 inc/Elements/Promo-box.php:169 576 msgid "Overlay Background Hover Color" 577 msgstr "" 578 579 #: inc/Elements/Category_Box.php:112 inc/Elements/Promo-box.php:180 580 #: inc/Elements/Slider.php:280 581 msgid "Overlay Padding" 582 msgstr "" 583 584 #: inc/Elements/Category_Box.php:124 585 msgid "Overlay Shadow" 586 msgstr "" 587 588 #: inc/Elements/Category_Box.php:141 589 msgid "Title Style" 590 msgstr "" 591 592 #: inc/Elements/Category_Box.php:205 593 msgid "Count Style" 594 msgstr "" 595 596 #: inc/Elements/Category_Box.php:213 597 msgid "Count Color" 598 msgstr "" 599 600 #: inc/Elements/Category_Box.php:224 601 msgid "Count Hover Color" 602 msgstr "" 603 604 #: inc/Elements/Category_Box.php:267 605 msgid "Image Style" 606 msgstr "" 607 608 #: inc/Elements/Category_Box.php:350 inc/Elements/Products.php:45 609 #: inc/Elements/Products.php:54 610 msgid "Products" 611 msgstr "" 612 613 #: inc/Elements/Category_List.php:25 614 msgid "DA: Category List" 615 msgstr "" 616 617 #: inc/Elements/Category_List.php:51 618 msgid "Category List" 619 msgstr "" 620 621 #: inc/Elements/Category_List.php:62 inc/Elements/Category_List.php:190 622 msgid "Category Icon" 623 msgstr "" 624 625 #: inc/Elements/Category_List.php:74 626 msgid "Category Type" 627 msgstr "" 628 629 #: inc/Elements/Category_List.php:79 630 msgid "Post" 631 msgstr "" 632 633 #: inc/Elements/Category_List.php:80 634 msgid "Product" 635 msgstr "" 636 637 #: inc/Elements/Category_List.php:89 638 msgid "Select Post Category" 639 msgstr "" 640 641 #: inc/Elements/Category_List.php:134 642 msgid "Category Link" 643 msgstr "" 644 645 #: inc/Elements/Category_List.php:143 646 msgid "Item Bottom Spacing" 647 msgstr "" 648 649 #: inc/Elements/Category_List.php:158 650 msgid "Category Link Color" 651 msgstr "" 652 653 #: inc/Elements/Category_List.php:168 654 msgid "Category Link Hover Color" 655 msgstr "" 656 657 #: inc/Elements/Category_List.php:244 inc/Elements/Staff_Member.php:661 658 msgid "Icon Right Spacing" 659 msgstr "" 660 661 #: inc/Elements/Category_List.php:260 662 msgid "Category Inner Container" 663 msgstr "" 664 665 #: inc/Elements/Category_List.php:268 666 msgid "Inner Container Padding" 667 msgstr "" 668 669 #: inc/Elements/Category_List.php:292 670 msgid "Inner Background Hover Color" 671 msgstr "" 672 673 #: inc/Elements/Category_List.php:312 674 msgid "Inner Container Border Radius" 675 msgstr "" 676 677 #: inc/Elements/Category_List.php:324 678 msgid "Inner Border Hover Color" 679 msgstr "" 680 681 #: inc/Elements/Category_List.php:335 inc/Elements/Counter.php:534 682 #: inc/Elements/Icon_Box.php:388 inc/Elements/Staff_Member.php:766 683 msgid "Rotate" 684 msgstr "" 685 686 #: inc/Elements/Category_List.php:350 687 msgid "Inner Hover Animation" 688 msgstr "" 689 690 #: inc/Elements/Category_List.php:363 691 msgid "Category Container" 692 msgstr "" 693 694 #: inc/Elements/Category_List.php:394 inc/Elements/Promo-box.php:295 695 #: inc/Elements/Staff_Member.php:724 696 msgid "Container Background Hover Color" 697 msgstr "" 698 699 #: inc/Elements/Category_List.php:423 inc/Elements/Staff_Member.php:755 700 msgid "Container Border Hover Color" 701 msgstr "" 702 703 #: inc/Elements/Category_List.php:433 inc/Elements/Counter.php:549 704 #: inc/Elements/Promo-box.php:314 inc/Elements/Staff_Member.php:781 705 msgid "Container Box Shadow" 706 msgstr "" 707 708 #: inc/Elements/Category_List.php:443 inc/Elements/Counter.php:559 709 #: inc/Elements/Promo-box.php:324 inc/Elements/Staff_Member.php:791 710 msgid "Container Hover Box Shadow" 711 msgstr "" 712 713 #: inc/Elements/Contact_form_7.php:25 714 msgid "DA: Contact Form 7" 715 msgstr "" 716 717 #: inc/Elements/Contact_form_7.php:53 inc/Elements/Ninja_Forms.php:58 718 #: inc/Elements/WpForm.php:58 719 msgid "Reminder Message!" 720 msgstr "" 721 722 #: inc/Elements/Contact_form_7.php:61 723 msgid "" 724 "Contact Form 7 is not installed & activated. Please install and activate it." 725 msgstr "" 726 727 #: inc/Elements/Contact_form_7.php:72 728 msgid "Contact Form 7" 729 msgstr "" 730 731 #: inc/Elements/Contact_form_7.php:83 inc/Elements/Ninja_Forms.php:88 732 #: inc/Elements/WpForm.php:88 733 msgid "Select Form" 734 msgstr "" 735 736 #: inc/Elements/Contact_form_7.php:103 inc/Elements/Ninja_Forms.php:108 737 #: inc/Elements/WpForm.php:108 738 msgid "Show/Hide Title" 739 msgstr "" 740 741 #: inc/Elements/Contact_form_7.php:106 inc/Elements/Contact_form_7.php:151 742 #: inc/Elements/Filterable_Portfolio.php:234 743 #: inc/Elements/Filterable_Portfolio.php:247 744 #: inc/Elements/Filterable_Portfolio.php:260 inc/Elements/Icon_Box.php:148 745 #: inc/Elements/Image_Overlay.php:178 inc/Elements/Ninja_Forms.php:111 746 #: inc/Elements/Ninja_Forms.php:124 inc/Elements/Ninja_Forms.php:169 747 #: inc/Elements/Post_Carousel.php:152 inc/Elements/Post_Carousel.php:182 748 #: inc/Elements/Post_Carousel.php:196 inc/Elements/Post_Grid.php:189 749 #: inc/Elements/Post_Grid.php:202 inc/Elements/Post_Grid.php:214 750 #: inc/Elements/Products.php:142 inc/Elements/Promo-box.php:119 751 #: inc/Elements/Slider.php:192 inc/Elements/Slider.php:222 752 #: inc/Elements/Slider.php:270 inc/Elements/Social_Icon.php:102 753 #: inc/Elements/Social_Icon.php:129 inc/Elements/Staff_Member.php:151 754 #: inc/Elements/Testimonial.php:153 inc/Elements/Testimonial_Slider.php:188 755 #: inc/Elements/Testimonial_Slider.php:218 inc/Elements/WpForm.php:111 756 #: inc/Elements/WpForm.php:156 inc/Elements/heading-with-separator.php:99 757 msgid "Yes" 758 msgstr "" 759 760 #: inc/Elements/Contact_form_7.php:107 inc/Elements/Contact_form_7.php:152 761 #: inc/Elements/Filterable_Portfolio.php:235 762 #: inc/Elements/Filterable_Portfolio.php:248 763 #: inc/Elements/Filterable_Portfolio.php:261 inc/Elements/Icon_Box.php:149 764 #: inc/Elements/Image_Overlay.php:179 inc/Elements/Ninja_Forms.php:112 765 #: inc/Elements/Ninja_Forms.php:125 inc/Elements/Ninja_Forms.php:170 766 #: inc/Elements/Post_Carousel.php:153 inc/Elements/Post_Carousel.php:183 767 #: inc/Elements/Post_Carousel.php:197 inc/Elements/Post_Grid.php:190 768 #: inc/Elements/Post_Grid.php:203 inc/Elements/Post_Grid.php:215 769 #: inc/Elements/Products.php:143 inc/Elements/Promo-box.php:120 770 #: inc/Elements/Slider.php:193 inc/Elements/Slider.php:223 771 #: inc/Elements/Slider.php:271 inc/Elements/Social_Icon.php:103 772 #: inc/Elements/Social_Icon.php:130 inc/Elements/Staff_Member.php:152 773 #: inc/Elements/Testimonial.php:154 inc/Elements/Testimonial_Slider.php:189 774 #: inc/Elements/Testimonial_Slider.php:219 inc/Elements/WpForm.php:112 775 #: inc/Elements/WpForm.php:157 inc/Elements/heading-with-separator.php:100 776 msgid "No" 777 msgstr "" 778 779 #: inc/Elements/Contact_form_7.php:118 inc/Elements/Ninja_Forms.php:136 780 #: inc/Elements/WpForm.php:123 781 msgid "Title Text" 782 msgstr "" 783 784 #: inc/Elements/Contact_form_7.php:122 785 msgid "I am Contact Form 7 Title." 786 msgstr "" 787 788 #: inc/Elements/Contact_form_7.php:140 inc/Elements/Ninja_Forms.php:158 789 #: inc/Elements/Products.php:80 inc/Elements/Subscription.php:88 790 #: inc/Elements/WpForm.php:145 inc/Elements/heading-with-separator.php:89 791 msgid "Span" 792 msgstr "" 793 794 #: inc/Elements/Contact_form_7.php:148 inc/Elements/Ninja_Forms.php:166 795 #: inc/Elements/WpForm.php:153 796 msgid "Show/Hide Description" 797 msgstr "" 798 799 #: inc/Elements/Contact_form_7.php:163 inc/Elements/Ninja_Forms.php:181 800 #: inc/Elements/WpForm.php:168 801 msgid "Description Text" 802 msgstr "" 803 804 #: inc/Elements/Contact_form_7.php:167 inc/Elements/Ninja_Forms.php:185 805 #: inc/Elements/WpForm.php:172 806 msgid "" 807 "Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo " 808 "ligula eget ." 809 msgstr "" 810 811 #: inc/Elements/Contact_form_7.php:173 inc/Elements/Ninja_Forms.php:191 812 #: inc/Elements/WpForm.php:178 813 msgid "Title Align" 814 msgstr "" 815 816 #: inc/Elements/Contact_form_7.php:179 inc/Elements/Counter.php:136 817 #: inc/Elements/Creative_Button.php:121 inc/Elements/Creative_Button.php:148 818 #: inc/Elements/Feature_list.php:133 inc/Elements/Filterable_Portfolio.php:195 819 #: inc/Elements/Filterable_Portfolio.php:279 820 #: inc/Elements/Filterable_Portfolio.php:621 inc/Elements/Icon_Box.php:182 821 #: inc/Elements/Icon_List.php:140 inc/Elements/Icon_List.php:167 822 #: inc/Elements/Ninja_Forms.php:197 inc/Elements/Post_Grid.php:108 823 #: inc/Elements/Post_Grid.php:435 inc/Elements/Pricing_Table.php:202 824 #: inc/Elements/Pricing_Table.php:229 inc/Elements/Social_Icon.php:284 825 #: inc/Elements/Staff_Member.php:236 inc/Elements/Subscription.php:112 826 #: inc/Elements/Teaser_Box.php:164 inc/Elements/Testimonial.php:126 827 #: inc/Elements/Testimonial_Slider.php:247 inc/Elements/Type.php:92 828 #: inc/Elements/Wording.php:140 inc/Elements/WpForm.php:184 829 #: inc/Elements/heading-with-separator.php:115 830 msgid "Left" 831 msgstr "" 832 833 #: inc/Elements/Contact_form_7.php:183 inc/Elements/Counter.php:140 834 #: inc/Elements/Creative_Button.php:125 inc/Elements/Feature_list.php:137 835 #: inc/Elements/Filterable_Portfolio.php:199 836 #: inc/Elements/Filterable_Portfolio.php:283 837 #: inc/Elements/Filterable_Portfolio.php:625 inc/Elements/Icon_Box.php:186 838 #: inc/Elements/Icon_List.php:144 inc/Elements/Ninja_Forms.php:201 839 #: inc/Elements/Post_Grid.php:112 inc/Elements/Post_Grid.php:439 840 #: inc/Elements/Pricing_Table.php:206 inc/Elements/Social_Icon.php:288 841 #: inc/Elements/Staff_Member.php:240 inc/Elements/Subscription.php:116 842 #: inc/Elements/Teaser_Box.php:168 inc/Elements/Testimonial.php:130 843 #: inc/Elements/Testimonial_Slider.php:251 inc/Elements/Type.php:96 844 #: inc/Elements/Wording.php:144 inc/Elements/WpForm.php:188 845 #: inc/Elements/heading-with-separator.php:119 846 msgid "Center" 847 msgstr "" 848 849 #: inc/Elements/Contact_form_7.php:187 inc/Elements/Counter.php:144 850 #: inc/Elements/Creative_Button.php:129 inc/Elements/Creative_Button.php:153 851 #: inc/Elements/Feature_list.php:141 inc/Elements/Filterable_Portfolio.php:203 852 #: inc/Elements/Filterable_Portfolio.php:287 853 #: inc/Elements/Filterable_Portfolio.php:629 inc/Elements/Icon_Box.php:190 854 #: inc/Elements/Icon_List.php:148 inc/Elements/Icon_List.php:172 855 #: inc/Elements/Ninja_Forms.php:205 inc/Elements/Post_Grid.php:116 856 #: inc/Elements/Post_Grid.php:443 inc/Elements/Pricing_Table.php:210 857 #: inc/Elements/Pricing_Table.php:234 inc/Elements/Social_Icon.php:292 858 #: inc/Elements/Staff_Member.php:244 inc/Elements/Subscription.php:120 859 #: inc/Elements/Teaser_Box.php:172 inc/Elements/Testimonial.php:134 860 #: inc/Elements/Testimonial.php:138 inc/Elements/Testimonial_Slider.php:255 861 #: inc/Elements/Type.php:100 inc/Elements/Wording.php:148 862 #: inc/Elements/WpForm.php:192 inc/Elements/heading-with-separator.php:123 863 msgid "Right" 864 msgstr "" 865 866 #: inc/Elements/Contact_form_7.php:203 inc/Elements/Ninja_Forms.php:221 867 #: inc/Elements/WpForm.php:208 868 msgid "Form Container" 869 msgstr "" 870 871 #: inc/Elements/Contact_form_7.php:222 inc/Elements/Ninja_Forms.php:240 872 #: inc/Elements/WpForm.php:227 873 msgid "Container Margin" 874 msgstr "" 875 876 #: inc/Elements/Contact_form_7.php:234 inc/Elements/Ninja_Forms.php:252 877 #: inc/Elements/Promo-box.php:284 inc/Elements/WpForm.php:239 878 msgid "Container Background Color" 879 msgstr "" 880 881 #: inc/Elements/Contact_form_7.php:268 inc/Elements/Ninja_Forms.php:286 882 #: inc/Elements/WpForm.php:273 883 msgid "Form Title" 884 msgstr "" 885 886 #: inc/Elements/Contact_form_7.php:314 inc/Elements/Ninja_Forms.php:332 887 #: inc/Elements/WpForm.php:319 888 msgid "Form Description" 889 msgstr "" 890 891 #: inc/Elements/Contact_form_7.php:321 inc/Elements/Feature_list.php:402 892 #: inc/Elements/Icon_Box.php:599 inc/Elements/Ninja_Forms.php:339 893 #: inc/Elements/Slider.php:362 inc/Elements/WpForm.php:327 894 msgid "Description Bottom Spacing" 895 msgstr "" 896 897 #: inc/Elements/Contact_form_7.php:360 inc/Elements/Ninja_Forms.php:378 898 #: inc/Elements/WpForm.php:366 899 msgid "Form Label" 900 msgstr "" 901 902 #: inc/Elements/Contact_form_7.php:367 inc/Elements/Ninja_Forms.php:385 903 #: inc/Elements/WpForm.php:373 904 msgid "Label Bottom Spacing" 905 msgstr "" 906 907 #: inc/Elements/Contact_form_7.php:379 inc/Elements/Ninja_Forms.php:397 908 #: inc/Elements/WpForm.php:385 909 msgid "Label Color" 910 msgstr "" 911 912 #: inc/Elements/Contact_form_7.php:403 913 msgid "Text Input" 914 msgstr "" 915 916 #: inc/Elements/Contact_form_7.php:410 917 msgid "Text Input Bottom Spacing" 918 msgstr "" 919 920 #: inc/Elements/Contact_form_7.php:421 inc/Elements/Ninja_Forms.php:439 921 #: inc/Elements/WpForm.php:427 922 msgid "Text Input Width" 923 msgstr "" 924 925 #: inc/Elements/Contact_form_7.php:433 926 msgid "Text Input Color" 927 msgstr "" 928 929 #: inc/Elements/Contact_form_7.php:444 930 msgid "Text Input Background Color" 931 msgstr "" 932 933 #: inc/Elements/Contact_form_7.php:455 934 msgid "Text Input Focus Color" 935 msgstr "" 936 937 #: inc/Elements/Contact_form_7.php:475 inc/Elements/Ninja_Forms.php:493 938 #: inc/Elements/WpForm.php:481 939 msgid "Text Input Padding" 940 msgstr "" 941 942 #: inc/Elements/Contact_form_7.php:495 943 msgid "Text Input Border Radius" 944 msgstr "" 945 946 #: inc/Elements/Contact_form_7.php:509 947 msgid "Text Area Input" 948 msgstr "" 949 950 #: inc/Elements/Contact_form_7.php:516 951 msgid "Text Area Bottom Spacing" 952 msgstr "" 953 954 #: inc/Elements/Contact_form_7.php:528 955 msgid "Text Area Color" 956 msgstr "" 957 958 #: inc/Elements/Contact_form_7.php:539 959 msgid "Text Area Background Color" 960 msgstr "" 961 962 #: inc/Elements/Contact_form_7.php:549 963 msgid "Text Area Focus Color" 964 msgstr "" 965 966 #: inc/Elements/Contact_form_7.php:569 967 msgid "Text Area Padding" 968 msgstr "" 969 970 #: inc/Elements/Contact_form_7.php:589 971 msgid "Text Area Border Radius" 972 msgstr "" 973 974 #: inc/Elements/Contact_form_7.php:604 975 msgid "Checkbox and Radio Button" 976 msgstr "" 977 978 #: inc/Elements/Contact_form_7.php:612 979 msgid "Checkbox Layout" 980 msgstr "" 981 982 #: inc/Elements/Contact_form_7.php:616 inc/Elements/Contact_form_7.php:632 983 #: inc/Elements/Counter.php:118 inc/Elements/Icon_List.php:188 984 #: inc/Elements/Skillbar.php:107 inc/Elements/Subscription.php:137 985 #: inc/Elements/Wording.php:107 986 msgid "Inline" 987 msgstr "" 988 989 #: inc/Elements/Contact_form_7.php:617 inc/Elements/Contact_form_7.php:633 990 #: inc/Elements/Counter.php:119 inc/Elements/Icon_List.php:189 991 #: inc/Elements/Skillbar.php:108 inc/Elements/Subscription.php:138 992 #: inc/Elements/Wording.php:108 993 msgid "Block" 994 msgstr "" 995 996 #: inc/Elements/Contact_form_7.php:628 997 msgid "Radio Button Layout" 998 msgstr "" 999 1000 #: inc/Elements/Contact_form_7.php:646 1001 msgid "Checkbox/Radio Button Size" 1002 msgstr "" 1003 1004 #: inc/Elements/Contact_form_7.php:682 inc/Elements/Ninja_Forms.php:547 1005 #: inc/Elements/WpForm.php:587 1006 msgid "Form Button" 1007 msgstr "" 1008 1009 #: inc/Elements/Contact_form_7.php:689 inc/Elements/Ninja_Forms.php:554 1010 #: inc/Elements/Pricing_Table.php:703 inc/Elements/Teaser_Box.php:413 1011 #: inc/Elements/WpForm.php:594 1012 msgid "Button Bottom Spacing" 1013 msgstr "" 1014 1015 #: inc/Elements/Counter.php:30 1016 msgid "DA: Counter" 1017 msgstr "" 1018 1019 #: inc/Elements/Counter.php:62 1020 msgid "Counter" 1021 msgstr "" 1022 1023 #: inc/Elements/Counter.php:86 1024 msgid "Counter text" 1025 msgstr "" 1026 1027 #: inc/Elements/Counter.php:87 1028 msgid "Projects" 1029 msgstr "" 1030 1031 #: inc/Elements/Counter.php:96 1032 msgid "Start Value" 1033 msgstr "" 1034 1035 #: inc/Elements/Counter.php:106 1036 msgid "Ending Value" 1037 msgstr "" 1038 1039 #: inc/Elements/Counter.php:114 1040 msgid "Counter Value Position" 1041 msgstr "" 1042 1043 #: inc/Elements/Counter.php:130 inc/Elements/Feature_list.php:127 1044 #: inc/Elements/Icon_Box.php:176 inc/Elements/Social_Icon.php:278 1045 #: inc/Elements/Staff_Member.php:230 inc/Elements/Subscription.php:106 1046 #: inc/Elements/Teaser_Box.php:158 inc/Elements/Type.php:86 1047 #: inc/Elements/Wording.php:134 inc/Elements/heading-with-separator.php:109 1048 msgid "Set Alignment" 1049 msgstr "" 1050 1051 #: inc/Elements/Counter.php:161 1052 msgid "Counter Icon" 1053 msgstr "" 1054 1055 #: inc/Elements/Counter.php:300 inc/Elements/Feature_list.php:296 1056 #: inc/Elements/Icon_Box.php:492 inc/Elements/Staff_Member.php:674 1057 msgid "Icon Bottom Spacing" 1058 msgstr "" 1059 1060 #: inc/Elements/Counter.php:322 1061 msgid "Counter Value" 1062 msgstr "" 1063 1064 #: inc/Elements/Counter.php:331 1065 msgid "Value Color" 1066 msgstr "" 1067 1068 #: inc/Elements/Counter.php:371 1069 msgid "Counter Value & Text Bottom Spacing" 1070 msgstr "" 1071 1072 #: inc/Elements/Counter.php:387 1073 msgid "Counter Text" 1074 msgstr "" 1075 1076 #: inc/Elements/Counter.php:395 1077 msgid "Counter Text Color" 1078 msgstr "" 1079 1080 #: inc/Elements/Counter.php:407 1081 msgid "Counter Text Hover Color" 1082 msgstr "" 1083 1084 #: inc/Elements/Counter.php:438 1085 msgid "Text Left Spacing" 1086 msgstr "" 1087 1088 #: inc/Elements/Counter.php:460 1089 msgid "Counter Content" 1090 msgstr "" 1091 1092 #: inc/Elements/Counter.php:491 1093 msgid "Counter Background Hover Color" 1094 msgstr "" 1095 1096 #: inc/Elements/Counter.php:511 1097 msgid "Content Border Radius" 1098 msgstr "" 1099 1100 #: inc/Elements/Counter.php:523 1101 msgid "Counter Border Hover Color" 1102 msgstr "" 1103 1104 #: inc/Elements/Creative_Button.php:30 1105 msgid "DA: Creative Button" 1106 msgstr "" 1107 1108 #: inc/Elements/Creative_Button.php:65 1109 msgid "Creative Button" 1110 msgstr "" 1111 1112 #: inc/Elements/Creative_Button.php:115 1113 msgid "Button Align" 1114 msgstr "" 1115 1116 #: inc/Elements/Creative_Button.php:142 inc/Elements/Icon_List.php:161 1117 #: inc/Elements/Pricing_Table.php:223 1118 msgid "Icon Position" 1119 msgstr "" 1120 1121 #: inc/Elements/Creative_Button.php:165 inc/Elements/Social_Icon.php:572 1122 msgid "Button Hover Animation" 1123 msgstr "" 1124 1125 #: inc/Elements/Creative_Button.php:183 1126 msgid "Button & Text" 1127 msgstr "" 1128 1129 #: inc/Elements/Creative_Button.php:236 inc/Elements/Flip_Box.php:340 1130 #: inc/Elements/Icon_List.php:343 inc/Elements/Pricing_Table.php:634 1131 #: inc/Elements/Staff_Member.php:492 inc/Elements/Subscription.php:241 572 1132 #: inc/Elements/Testimonial.php:294 inc/Elements/Testimonial.php:337 573 1133 #: inc/Elements/Testimonial.php:380 inc/Elements/Testimonial_Slider.php:395 … … 577 1137 msgstr "" 578 1138 579 #: inc/Elements/Category_Box.php:172 inc/Elements/Products.php:45580 #: inc/Elements/Products.php:54581 msgid "Products"582 msgstr ""583 584 #: inc/Elements/Category_List.php:24585 msgid "DA: Category List"586 msgstr ""587 588 #: inc/Elements/Category_List.php:50589 msgid "Category List"590 msgstr ""591 592 #: inc/Elements/Category_List.php:61 inc/Elements/Category_List.php:189593 msgid "Category Icon"594 msgstr ""595 596 #: inc/Elements/Category_List.php:73597 msgid "Category Type"598 msgstr ""599 600 #: inc/Elements/Category_List.php:78601 msgid "Post"602 msgstr ""603 604 #: inc/Elements/Category_List.php:79605 msgid "Product"606 msgstr ""607 608 #: inc/Elements/Category_List.php:88609 msgid "Select Post Category"610 msgstr ""611 612 #: inc/Elements/Category_List.php:133613 msgid "Category Link"614 msgstr ""615 616 #: inc/Elements/Category_List.php:142617 msgid "Item Bottom Spacing"618 msgstr ""619 620 #: inc/Elements/Category_List.php:157621 msgid "Category Link Color"622 msgstr ""623 624 #: inc/Elements/Category_List.php:167625 msgid "Category Link Hover Color"626 msgstr ""627 628 #: inc/Elements/Category_List.php:243 inc/Elements/Staff_Member.php:594629 msgid "Icon Right Spacing"630 msgstr ""631 632 #: inc/Elements/Category_List.php:259633 msgid "Category Inner Container"634 msgstr ""635 636 #: inc/Elements/Category_List.php:267637 msgid "Inner Container Padding"638 msgstr ""639 640 #: inc/Elements/Category_List.php:298641 msgid "Inner Container Border Radius"642 msgstr ""643 644 #: inc/Elements/Category_List.php:312645 msgid "Category Container"646 msgstr ""647 648 #: inc/Elements/Contact_form_7.php:25649 msgid "DA: Contact Form 7"650 msgstr ""651 652 #: inc/Elements/Contact_form_7.php:53 inc/Elements/Ninja_Forms.php:58653 #: inc/Elements/WpForm.php:58654 msgid "Reminder Message!"655 msgstr ""656 657 #: inc/Elements/Contact_form_7.php:61658 msgid ""659 "Contact Form 7 is not installed & activated. Please install and activate it."660 msgstr ""661 662 #: inc/Elements/Contact_form_7.php:72663 msgid "Contact Form 7"664 msgstr ""665 666 #: inc/Elements/Contact_form_7.php:83 inc/Elements/Ninja_Forms.php:88667 #: inc/Elements/WpForm.php:88668 msgid "Select Form"669 msgstr ""670 671 #: inc/Elements/Contact_form_7.php:103 inc/Elements/Ninja_Forms.php:108672 #: inc/Elements/WpForm.php:108673 msgid "Show/Hide Title"674 msgstr ""675 676 #: inc/Elements/Contact_form_7.php:106 inc/Elements/Contact_form_7.php:151677 #: inc/Elements/Filterable_Portfolio.php:234678 #: inc/Elements/Filterable_Portfolio.php:247679 #: inc/Elements/Filterable_Portfolio.php:260680 #: inc/Elements/Image_Overlay.php:178 inc/Elements/Ninja_Forms.php:111681 #: inc/Elements/Ninja_Forms.php:124 inc/Elements/Ninja_Forms.php:169682 #: inc/Elements/Post_Carousel.php:152 inc/Elements/Post_Carousel.php:182683 #: inc/Elements/Post_Carousel.php:196 inc/Elements/Post_Grid.php:189684 #: inc/Elements/Post_Grid.php:202 inc/Elements/Post_Grid.php:214685 #: inc/Elements/Products.php:142 inc/Elements/Promo-box.php:117686 #: inc/Elements/Slider.php:192 inc/Elements/Slider.php:222687 #: inc/Elements/Slider.php:270 inc/Elements/Social_Icon.php:102688 #: inc/Elements/Social_Icon.php:129 inc/Elements/Staff_Member.php:148689 #: inc/Elements/Testimonial.php:153 inc/Elements/Testimonial_Slider.php:188690 #: inc/Elements/Testimonial_Slider.php:218 inc/Elements/WpForm.php:111691 #: inc/Elements/WpForm.php:156 inc/Elements/heading-with-separator.php:97692 msgid "Yes"693 msgstr ""694 695 #: inc/Elements/Contact_form_7.php:107 inc/Elements/Contact_form_7.php:152696 #: inc/Elements/Filterable_Portfolio.php:235697 #: inc/Elements/Filterable_Portfolio.php:248698 #: inc/Elements/Filterable_Portfolio.php:261699 #: inc/Elements/Image_Overlay.php:179 inc/Elements/Ninja_Forms.php:112700 #: inc/Elements/Ninja_Forms.php:125 inc/Elements/Ninja_Forms.php:170701 #: inc/Elements/Post_Carousel.php:153 inc/Elements/Post_Carousel.php:183702 #: inc/Elements/Post_Carousel.php:197 inc/Elements/Post_Grid.php:190703 #: inc/Elements/Post_Grid.php:203 inc/Elements/Post_Grid.php:215704 #: inc/Elements/Products.php:143 inc/Elements/Promo-box.php:118705 #: inc/Elements/Slider.php:193 inc/Elements/Slider.php:223706 #: inc/Elements/Slider.php:271 inc/Elements/Social_Icon.php:103707 #: inc/Elements/Social_Icon.php:130 inc/Elements/Staff_Member.php:149708 #: inc/Elements/Testimonial.php:154 inc/Elements/Testimonial_Slider.php:189709 #: inc/Elements/Testimonial_Slider.php:219 inc/Elements/WpForm.php:112710 #: inc/Elements/WpForm.php:157 inc/Elements/heading-with-separator.php:98711 msgid "No"712 msgstr ""713 714 #: inc/Elements/Contact_form_7.php:118 inc/Elements/Ninja_Forms.php:136715 #: inc/Elements/WpForm.php:123716 msgid "Title Text"717 msgstr ""718 719 #: inc/Elements/Contact_form_7.php:122720 msgid "I am Contact Form 7 Title."721 msgstr ""722 723 #: inc/Elements/Contact_form_7.php:140 inc/Elements/Ninja_Forms.php:158724 #: inc/Elements/Products.php:80 inc/Elements/Subscription.php:88725 #: inc/Elements/WpForm.php:145 inc/Elements/heading-with-separator.php:87726 msgid "Span"727 msgstr ""728 729 #: inc/Elements/Contact_form_7.php:148 inc/Elements/Ninja_Forms.php:166730 #: inc/Elements/WpForm.php:153731 msgid "Show/Hide Description"732 msgstr ""733 734 #: inc/Elements/Contact_form_7.php:163 inc/Elements/Ninja_Forms.php:181735 #: inc/Elements/WpForm.php:168736 msgid "Description Text"737 msgstr ""738 739 #: inc/Elements/Contact_form_7.php:167 inc/Elements/Ninja_Forms.php:185740 #: inc/Elements/WpForm.php:172741 msgid ""742 "Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo "743 "ligula eget ."744 msgstr ""745 746 #: inc/Elements/Contact_form_7.php:173 inc/Elements/Ninja_Forms.php:191747 #: inc/Elements/WpForm.php:178748 msgid "Title Align"749 msgstr ""750 751 #: inc/Elements/Contact_form_7.php:179 inc/Elements/Counter.php:121752 #: inc/Elements/Creative_Button.php:121 inc/Elements/Creative_Button.php:148753 #: inc/Elements/Feature_list.php:133 inc/Elements/Filterable_Portfolio.php:195754 #: inc/Elements/Filterable_Portfolio.php:279755 #: inc/Elements/Filterable_Portfolio.php:621 inc/Elements/Icon_Box.php:176756 #: inc/Elements/Icon_List.php:140 inc/Elements/Icon_List.php:167757 #: inc/Elements/Ninja_Forms.php:197 inc/Elements/Post_Grid.php:108758 #: inc/Elements/Post_Grid.php:434 inc/Elements/Pricing_Table.php:202759 #: inc/Elements/Pricing_Table.php:229 inc/Elements/Social_Icon.php:284760 #: inc/Elements/Staff_Member.php:233 inc/Elements/Subscription.php:112761 #: inc/Elements/Teaser_Box.php:164 inc/Elements/Testimonial.php:126762 #: inc/Elements/Testimonial_Slider.php:247 inc/Elements/Type.php:92763 #: inc/Elements/Wording.php:140 inc/Elements/WpForm.php:184764 #: inc/Elements/heading-with-separator.php:113765 msgid "Left"766 msgstr ""767 768 #: inc/Elements/Contact_form_7.php:183 inc/Elements/Counter.php:125769 #: inc/Elements/Creative_Button.php:125 inc/Elements/Feature_list.php:137770 #: inc/Elements/Filterable_Portfolio.php:199771 #: inc/Elements/Filterable_Portfolio.php:283772 #: inc/Elements/Filterable_Portfolio.php:625 inc/Elements/Icon_Box.php:180773 #: inc/Elements/Icon_List.php:144 inc/Elements/Ninja_Forms.php:201774 #: inc/Elements/Post_Grid.php:112 inc/Elements/Post_Grid.php:438775 #: inc/Elements/Pricing_Table.php:206 inc/Elements/Social_Icon.php:288776 #: inc/Elements/Staff_Member.php:237 inc/Elements/Subscription.php:116777 #: inc/Elements/Teaser_Box.php:168 inc/Elements/Testimonial.php:130778 #: inc/Elements/Testimonial_Slider.php:251 inc/Elements/Type.php:96779 #: inc/Elements/Wording.php:144 inc/Elements/WpForm.php:188780 #: inc/Elements/heading-with-separator.php:117781 msgid "Center"782 msgstr ""783 784 #: inc/Elements/Contact_form_7.php:187 inc/Elements/Counter.php:129785 #: inc/Elements/Creative_Button.php:129 inc/Elements/Creative_Button.php:153786 #: inc/Elements/Feature_list.php:141 inc/Elements/Filterable_Portfolio.php:203787 #: inc/Elements/Filterable_Portfolio.php:287788 #: inc/Elements/Filterable_Portfolio.php:629 inc/Elements/Icon_Box.php:184789 #: inc/Elements/Icon_List.php:148 inc/Elements/Icon_List.php:172790 #: inc/Elements/Ninja_Forms.php:205 inc/Elements/Post_Grid.php:116791 #: inc/Elements/Post_Grid.php:442 inc/Elements/Pricing_Table.php:210792 #: inc/Elements/Pricing_Table.php:234 inc/Elements/Social_Icon.php:292793 #: inc/Elements/Staff_Member.php:241 inc/Elements/Subscription.php:120794 #: inc/Elements/Teaser_Box.php:172 inc/Elements/Testimonial.php:134795 #: inc/Elements/Testimonial.php:138 inc/Elements/Testimonial_Slider.php:255796 #: inc/Elements/Type.php:100 inc/Elements/Wording.php:148797 #: inc/Elements/WpForm.php:192 inc/Elements/heading-with-separator.php:121798 msgid "Right"799 msgstr ""800 801 #: inc/Elements/Contact_form_7.php:203 inc/Elements/Ninja_Forms.php:221802 #: inc/Elements/WpForm.php:208803 msgid "Form Container"804 msgstr ""805 806 #: inc/Elements/Contact_form_7.php:222 inc/Elements/Ninja_Forms.php:240807 #: inc/Elements/WpForm.php:227808 msgid "Container Margin"809 msgstr ""810 811 #: inc/Elements/Contact_form_7.php:234 inc/Elements/Ninja_Forms.php:252812 #: inc/Elements/WpForm.php:239813 msgid "Container Background Color"814 msgstr ""815 816 #: inc/Elements/Contact_form_7.php:268 inc/Elements/Ninja_Forms.php:286817 #: inc/Elements/WpForm.php:273818 msgid "Form Title"819 msgstr ""820 821 #: inc/Elements/Contact_form_7.php:314 inc/Elements/Ninja_Forms.php:332822 #: inc/Elements/WpForm.php:319823 msgid "Form Description"824 msgstr ""825 826 #: inc/Elements/Contact_form_7.php:321 inc/Elements/Feature_list.php:402827 #: inc/Elements/Icon_Box.php:422 inc/Elements/Ninja_Forms.php:339828 #: inc/Elements/Slider.php:362 inc/Elements/WpForm.php:327829 msgid "Description Bottom Spacing"830 msgstr ""831 832 #: inc/Elements/Contact_form_7.php:360 inc/Elements/Ninja_Forms.php:378833 #: inc/Elements/WpForm.php:366834 msgid "Form Label"835 msgstr ""836 837 #: inc/Elements/Contact_form_7.php:367 inc/Elements/Ninja_Forms.php:385838 #: inc/Elements/WpForm.php:373839 msgid "Label Bottom Spacing"840 msgstr ""841 842 #: inc/Elements/Contact_form_7.php:379 inc/Elements/Ninja_Forms.php:397843 #: inc/Elements/WpForm.php:385844 msgid "Label Color"845 msgstr ""846 847 #: inc/Elements/Contact_form_7.php:403848 msgid "Text Input"849 msgstr ""850 851 #: inc/Elements/Contact_form_7.php:410852 msgid "Text Input Bottom Spacing"853 msgstr ""854 855 #: inc/Elements/Contact_form_7.php:421 inc/Elements/Ninja_Forms.php:439856 #: inc/Elements/WpForm.php:427857 msgid "Text Input Width"858 msgstr ""859 860 #: inc/Elements/Contact_form_7.php:433861 msgid "Text Input Color"862 msgstr ""863 864 #: inc/Elements/Contact_form_7.php:444865 msgid "Text Input Background Color"866 msgstr ""867 868 #: inc/Elements/Contact_form_7.php:455869 msgid "Text Input Focus Color"870 msgstr ""871 872 #: inc/Elements/Contact_form_7.php:475 inc/Elements/Ninja_Forms.php:493873 #: inc/Elements/WpForm.php:481874 msgid "Text Input Padding"875 msgstr ""876 877 #: inc/Elements/Contact_form_7.php:495878 msgid "Text Input Border Radius"879 msgstr ""880 881 #: inc/Elements/Contact_form_7.php:509882 msgid "Text Area Input"883 msgstr ""884 885 #: inc/Elements/Contact_form_7.php:516886 msgid "Text Area Bottom Spacing"887 msgstr ""888 889 #: inc/Elements/Contact_form_7.php:528890 msgid "Text Area Color"891 msgstr ""892 893 #: inc/Elements/Contact_form_7.php:539894 msgid "Text Area Background Color"895 msgstr ""896 897 #: inc/Elements/Contact_form_7.php:549898 msgid "Text Area Focus Color"899 msgstr ""900 901 #: inc/Elements/Contact_form_7.php:569902 msgid "Text Area Padding"903 msgstr ""904 905 #: inc/Elements/Contact_form_7.php:589906 msgid "Text Area Border Radius"907 msgstr ""908 909 #: inc/Elements/Contact_form_7.php:604910 msgid "Checkbox and Radio Button"911 msgstr ""912 913 #: inc/Elements/Contact_form_7.php:612914 msgid "Checkbox Layout"915 msgstr ""916 917 #: inc/Elements/Contact_form_7.php:616 inc/Elements/Contact_form_7.php:632918 #: inc/Elements/Icon_List.php:188 inc/Elements/Skillbar.php:107919 #: inc/Elements/Subscription.php:137 inc/Elements/Wording.php:107920 msgid "Inline"921 msgstr ""922 923 #: inc/Elements/Contact_form_7.php:617 inc/Elements/Contact_form_7.php:633924 #: inc/Elements/Icon_List.php:189 inc/Elements/Skillbar.php:108925 #: inc/Elements/Subscription.php:138 inc/Elements/Wording.php:108926 msgid "Block"927 msgstr ""928 929 #: inc/Elements/Contact_form_7.php:628930 msgid "Radio Button Layout"931 msgstr ""932 933 #: inc/Elements/Contact_form_7.php:646934 msgid "Checkbox/Radio Button Size"935 msgstr ""936 937 #: inc/Elements/Contact_form_7.php:682 inc/Elements/Ninja_Forms.php:547938 #: inc/Elements/WpForm.php:587939 msgid "Form Button"940 msgstr ""941 942 #: inc/Elements/Contact_form_7.php:689 inc/Elements/Ninja_Forms.php:554943 #: inc/Elements/Pricing_Table.php:703 inc/Elements/Teaser_Box.php:413944 #: inc/Elements/WpForm.php:594945 msgid "Button Bottom Spacing"946 msgstr ""947 948 #: inc/Elements/Counter.php:27949 msgid "DA: Counter"950 msgstr ""951 952 #: inc/Elements/Counter.php:63953 msgid "Counter"954 msgstr ""955 956 #: inc/Elements/Counter.php:87957 msgid "Counter text"958 msgstr ""959 960 #: inc/Elements/Counter.php:88961 msgid "Projects"962 msgstr ""963 964 #: inc/Elements/Counter.php:97965 msgid "Start Value"966 msgstr ""967 968 #: inc/Elements/Counter.php:107969 msgid "Ending Value"970 msgstr ""971 972 #: inc/Elements/Counter.php:115 inc/Elements/Feature_list.php:127973 #: inc/Elements/Icon_Box.php:170 inc/Elements/Social_Icon.php:278974 #: inc/Elements/Staff_Member.php:227 inc/Elements/Subscription.php:106975 #: inc/Elements/Teaser_Box.php:158 inc/Elements/Type.php:86976 #: inc/Elements/Wording.php:134 inc/Elements/heading-with-separator.php:107977 msgid "Set Alignment"978 msgstr ""979 980 #: inc/Elements/Counter.php:146981 msgid "Counter Item Style"982 msgstr ""983 984 #: inc/Elements/Counter.php:153 inc/Elements/Icon_Box.php:195985 #: inc/Elements/Staff_Member.php:253 inc/Elements/Testimonial.php:173986 #: inc/Elements/Testimonial_Slider.php:272987 msgid "Background Shadow Style"988 msgstr ""989 990 #: inc/Elements/Counter.php:157 inc/Elements/Icon_Box.php:199991 #: inc/Elements/Staff_Member.php:257 inc/Elements/Testimonial.php:177992 #: inc/Elements/Testimonial_Slider.php:276 inc/Reuses/Reuse.php:372993 msgid "None"994 msgstr ""995 996 #: inc/Elements/Counter.php:158 inc/Elements/Icon_Box.php:200997 #: inc/Elements/Staff_Member.php:258 inc/Elements/Testimonial.php:178998 #: inc/Elements/Testimonial_Slider.php:277999 msgid "Style1"1000 msgstr ""1001 1002 #: inc/Elements/Counter.php:159 inc/Elements/Icon_Box.php:2011003 #: inc/Elements/Staff_Member.php:259 inc/Elements/Testimonial.php:1791004 #: inc/Elements/Testimonial_Slider.php:2781005 msgid "Style2"1006 msgstr ""1007 1008 #: inc/Elements/Counter.php:160 inc/Elements/Icon_Box.php:2021009 #: inc/Elements/Staff_Member.php:260 inc/Elements/Testimonial.php:1801010 #: inc/Elements/Testimonial_Slider.php:2791011 msgid "Style3"1012 msgstr ""1013 1014 #: inc/Elements/Counter.php:1701015 msgid "Counter Icon"1016 msgstr ""1017 1018 #: inc/Elements/Counter.php:309 inc/Elements/Feature_list.php:2961019 #: inc/Elements/Icon_Box.php:350 inc/Elements/Staff_Member.php:6071020 msgid "Icon Bottom Spacing"1021 msgstr ""1022 1023 #: inc/Elements/Counter.php:3311024 msgid "Counter Value"1025 msgstr ""1026 1027 #: inc/Elements/Counter.php:3401028 msgid "Value Color"1029 msgstr ""1030 1031 #: inc/Elements/Counter.php:3601032 msgid "Counter Value & Text Bottom Spacing"1033 msgstr ""1034 1035 #: inc/Elements/Counter.php:3761036 msgid "Counter Text"1037 msgstr ""1038 1039 #: inc/Elements/Counter.php:3841040 msgid "Counter Text Color"1041 msgstr ""1042 1043 #: inc/Elements/Counter.php:3951044 msgid "Text Left Spacing"1045 msgstr ""1046 1047 #: inc/Elements/Counter.php:4171048 msgid "Counter Content"1049 msgstr ""1050 1051 #: inc/Elements/Counter.php:457 inc/Elements/Icon_Box.php:5011052 msgid "Content Border Radius"1053 msgstr ""1054 1055 #: inc/Elements/Creative_Button.php:301056 msgid "DA: Creative Button"1057 msgstr ""1058 1059 #: inc/Elements/Creative_Button.php:651060 msgid "Creative Button"1061 msgstr ""1062 1063 #: inc/Elements/Creative_Button.php:1151064 msgid "Button Align"1065 msgstr ""1066 1067 #: inc/Elements/Creative_Button.php:142 inc/Elements/Icon_List.php:1611068 #: inc/Elements/Pricing_Table.php:2231069 msgid "Icon Position"1070 msgstr ""1071 1072 #: inc/Elements/Creative_Button.php:165 inc/Elements/Social_Icon.php:5721073 msgid "Button Hover Animation"1074 msgstr ""1075 1076 #: inc/Elements/Creative_Button.php:1831077 msgid "Button & Text"1078 msgstr ""1079 1080 1139 #: inc/Elements/Creative_Button.php:247 inc/Elements/Icon_List.php:353 1081 1140 #: inc/Elements/Pricing_Table.php:656 … … 1083 1142 msgstr "" 1084 1143 1085 #: inc/Elements/Creative_Button.php:299 1144 #: inc/Elements/Creative_Button.php:299 inc/Elements/Icon_Box.php:253 1086 1145 msgid "Border Hover Color" 1087 1146 msgstr "" … … 1131 1190 #: inc/Elements/Feature_list.php:263 inc/Elements/Post_Carousel.php:365 1132 1191 #: inc/Elements/Products.php:299 inc/Elements/Slider.php:420 1133 #: inc/Elements/Staff_Member.php: 561inc/Elements/Testimonial_Slider.php:6531192 #: inc/Elements/Staff_Member.php:619 inc/Elements/Testimonial_Slider.php:653 1134 1193 msgid "Hover Background Color" 1135 1194 msgstr "" … … 1268 1327 1269 1328 #: inc/Elements/Filterable_Portfolio.php:221 inc/Elements/Teaser_Box.php:137 1270 #: inc/Reuses/Reuse.php:2 71329 #: inc/Reuses/Reuse.php:24 1271 1330 msgid "Read More" 1272 1331 msgstr "" … … 1322 1381 msgstr "" 1323 1382 1324 #: inc/Elements/Filterable_Portfolio.php:387 inc/Elements/Slider.php:2921325 msgid "Overlay Background Color"1326 msgstr ""1327 1328 1383 #: inc/Elements/Filterable_Portfolio.php:398 1329 1384 msgid "Overlay Title Color" … … 1357 1412 msgstr "" 1358 1413 1359 #: inc/Elements/Filterable_Portfolio.php:570 inc/Elements/Post_Grid.php:38 71414 #: inc/Elements/Filterable_Portfolio.php:570 inc/Elements/Post_Grid.php:388 1360 1415 msgid "Blog Post Text" 1361 1416 msgstr "" 1362 1417 1363 #: inc/Elements/Filterable_Portfolio.php:583 inc/Elements/Post_Grid.php:39 61418 #: inc/Elements/Filterable_Portfolio.php:583 inc/Elements/Post_Grid.php:397 1364 1419 msgid "Content Bottom Spacing" 1365 1420 msgstr "" 1366 1421 1367 #: inc/Elements/Filterable_Portfolio.php:615 inc/Elements/Post_Grid.php:42 81422 #: inc/Elements/Filterable_Portfolio.php:615 inc/Elements/Post_Grid.php:429 1368 1423 msgid "Text Align" 1369 1424 msgstr "" 1370 1425 1371 #: inc/Elements/Filterable_Portfolio.php:633 inc/Elements/Post_Grid.php:44 61426 #: inc/Elements/Filterable_Portfolio.php:633 inc/Elements/Post_Grid.php:447 1372 1427 msgid "Justify" 1373 1428 msgstr "" 1374 1429 1375 #: inc/Elements/Filterable_Portfolio.php:651 inc/Elements/Post_Grid.php:46 41430 #: inc/Elements/Filterable_Portfolio.php:651 inc/Elements/Post_Grid.php:465 1376 1431 msgid "Blog Read More Button" 1377 1432 msgstr "" … … 1389 1444 msgstr "" 1390 1445 1391 #: inc/Elements/Filterable_Portfolio.php:902 inc/Elements/Post_Grid.php:75 41446 #: inc/Elements/Filterable_Portfolio.php:902 inc/Elements/Post_Grid.php:755 1392 1447 #, php-format 1393 1448 msgid "Continue reading%s" 1394 1449 msgstr "" 1395 1450 1396 #: inc/Elements/Filterable_Portfolio.php:911 inc/Elements/Post_Grid.php:76 41451 #: inc/Elements/Filterable_Portfolio.php:911 inc/Elements/Post_Grid.php:765 1397 1452 msgid ", " 1398 1453 msgstr "" 1399 1454 1400 #: inc/Elements/Filterable_Portfolio.php:913 inc/Elements/Post_Grid.php:76 61455 #: inc/Elements/Filterable_Portfolio.php:913 inc/Elements/Post_Grid.php:767 1401 1456 #, php-format 1402 1457 msgid "Tagged %1$s" … … 1419 1474 msgstr "" 1420 1475 1421 #: inc/Elements/Flip_Box.php:68 inc/Elements/Staff_Member.php:1 071476 #: inc/Elements/Flip_Box.php:68 inc/Elements/Staff_Member.php:110 1422 1477 #: inc/Elements/Teaser_Box.php:82 inc/Elements/Testimonial.php:94 1423 1478 #: inc/Elements/Testimonial_Slider.php:86 … … 1477 1532 msgstr "" 1478 1533 1479 #: inc/Elements/Icon_Box.php: 251534 #: inc/Elements/Icon_Box.php:31 1480 1535 msgid "DA: Icon Box" 1481 1536 msgstr "" 1482 1537 1483 #: inc/Elements/Icon_Box.php: 591538 #: inc/Elements/Icon_Box.php:65 1484 1539 msgid "Icon Box" 1485 1540 msgstr "" 1486 1541 1487 #: inc/Elements/Icon_Box.php:8 21542 #: inc/Elements/Icon_Box.php:88 1488 1543 msgid "Icon Link" 1489 1544 msgstr "" 1490 1545 1491 #: inc/Elements/Icon_Box.php:96 inc/Elements/Icon_Box.php:371 1546 #: inc/Elements/Icon_Box.php:91 inc/Elements/Promo-box.php:84 1547 msgid "https://softfirm.net/" 1548 msgstr "" 1549 1550 #: inc/Elements/Icon_Box.php:102 inc/Elements/Icon_Box.php:517 1492 1551 msgid "Icon Box Title" 1493 1552 msgstr "" 1494 1553 1495 #: inc/Elements/Icon_Box.php: 981554 #: inc/Elements/Icon_Box.php:104 1496 1555 msgid "I am Icon Title." 1497 1556 msgstr "" 1498 1557 1499 #: inc/Elements/Icon_Box.php:1 441558 #: inc/Elements/Icon_Box.php:135 1500 1559 msgid "Icon Box Text" 1501 1560 msgstr "" 1502 1561 1503 #: inc/Elements/Icon_Box.php:1 461562 #: inc/Elements/Icon_Box.php:137 1504 1563 msgid "Add Icon text here or leave it blank." 1505 1564 msgstr "" 1506 1565 1507 #: inc/Elements/Icon_Box.php:162 1566 #: inc/Elements/Icon_Box.php:145 1567 msgid "Enable Link on Text?" 1568 msgstr "" 1569 1570 #: inc/Elements/Icon_Box.php:168 1508 1571 msgid "Icon_Box Item Style" 1509 1572 msgstr "" 1510 1573 1511 #: inc/Elements/Icon_Box.php:414 1574 #: inc/Elements/Icon_Box.php:202 inc/Elements/Social_Icon.php:168 1575 #: inc/Elements/Social_Icon.php:215 inc/Elements/Social_Icon.php:319 1576 #: inc/Elements/Social_Icon.php:403 inc/Elements/Social_Icon.php:451 1577 msgid "Background Color" 1578 msgstr "" 1579 1580 #: inc/Elements/Icon_Box.php:219 1581 msgid "Background Hover Color" 1582 msgstr "" 1583 1584 #: inc/Elements/Icon_Box.php:279 1585 msgid "Container Shadow" 1586 msgstr "" 1587 1588 #: inc/Elements/Icon_Box.php:289 1589 msgid "Container Hover Shadow" 1590 msgstr "" 1591 1592 #: inc/Elements/Icon_Box.php:301 inc/Elements/Icon_Box.php:482 1593 msgid "Icon Hover Animation" 1594 msgstr "" 1595 1596 #: inc/Elements/Icon_Box.php:591 1512 1597 msgid "Icon Box Description" 1513 msgstr ""1514 1515 #: inc/Elements/Icon_Box.php:4601516 msgid "Icon Box Content"1517 1598 msgstr "" 1518 1599 … … 1579 1660 1580 1661 #: inc/Elements/Image_Overlay.php:68 inc/Elements/Post_Grid.php:229 1581 #: inc/Elements/Promo-box.php: 69inc/Elements/Slider.php:631582 #: inc/Elements/Staff_Member.php:7 2inc/Elements/Teaser_Box.php:1871662 #: inc/Elements/Promo-box.php:71 inc/Elements/Slider.php:63 1663 #: inc/Elements/Staff_Member.php:75 inc/Elements/Teaser_Box.php:187 1583 1664 #: inc/Elements/Testimonial.php:69 inc/Elements/Testimonial_Slider.php:71 1584 1665 msgid "Image" … … 1614 1695 msgstr "" 1615 1696 1616 #: inc/Elements/Image_Overlay.php:196 inc/Elements/Promo-box.php:1501697 #: inc/Elements/Image_Overlay.php:196 1617 1698 msgid "Overlay Border Radius" 1618 1699 msgstr "" … … 1730 1811 msgstr "" 1731 1812 1732 #: inc/Elements/Post_Carousel.php:300 inc/Elements/Post_Grid.php:36 41813 #: inc/Elements/Post_Carousel.php:300 inc/Elements/Post_Grid.php:365 1733 1814 msgid "Meta Hover Color" 1734 1815 msgstr "" … … 1802 1883 msgstr "" 1803 1884 1804 #: inc/Elements/Post_Grid.php:237 inc/Elements/Staff_Member.php:30 21885 #: inc/Elements/Post_Grid.php:237 inc/Elements/Staff_Member.php:300 1805 1886 #: inc/Elements/Teaser_Box.php:217 1806 1887 msgid "Image Bottom Spacing" 1807 1888 msgstr "" 1808 1889 1809 #: inc/Elements/Post_Grid.php:261 inc/Elements/Staff_Member.php:2 901890 #: inc/Elements/Post_Grid.php:261 inc/Elements/Staff_Member.php:288 1810 1891 msgid "Image Border Radius" 1811 1892 msgstr "" 1812 1893 1813 #: inc/Elements/Post_Grid.php:52 11894 #: inc/Elements/Post_Grid.php:522 1814 1895 msgid "Blog Post Content" 1815 1896 msgstr "" 1816 1897 1817 #: inc/Elements/Post_Grid.php:78 81898 #: inc/Elements/Post_Grid.php:789 1818 1899 msgid "Posts navigation" 1819 1900 msgstr "" 1820 1901 1821 #: inc/Elements/Post_Grid.php:79 21902 #: inc/Elements/Post_Grid.php:793 1822 1903 msgid "← Previous" 1823 1904 msgstr "" 1824 1905 1825 #: inc/Elements/Post_Grid.php:79 31906 #: inc/Elements/Post_Grid.php:794 1826 1907 msgid "Next →" 1827 1908 msgstr "" … … 2064 2145 msgstr "" 2065 2146 2066 #: inc/Elements/Promo-box.php:2 72147 #: inc/Elements/Promo-box.php:29 2067 2148 msgid "DA: Promo Box" 2068 2149 msgstr "" 2069 2150 2070 #: inc/Elements/Promo-box.php:6 02151 #: inc/Elements/Promo-box.php:62 2071 2152 msgid "Promo Box" 2072 2153 msgstr "" 2073 2154 2074 #: inc/Elements/Promo-box.php: 792155 #: inc/Elements/Promo-box.php:81 2075 2156 msgid "Image Link" 2076 2157 msgstr "" 2077 2158 2078 #: inc/Elements/Promo-box.php:10 6 inc/Elements/Promo-box.php:1072159 #: inc/Elements/Promo-box.php:108 inc/Elements/Promo-box.php:109 2079 2160 msgid "Promo Box Text" 2080 2161 msgstr "" 2081 2162 2082 #: inc/Elements/Promo-box.php:11 42163 #: inc/Elements/Promo-box.php:116 2083 2164 msgid "Show/Hide Overlay Text" 2084 2165 msgstr "" 2085 2166 2086 #: inc/Elements/Promo-box.php:132 2087 msgid "Overlay Border Style" 2088 msgstr "" 2089 2090 #: inc/Elements/Promo-box.php:166 2167 #: inc/Elements/Promo-box.php:142 2168 msgid "Overlay Design" 2169 msgstr "" 2170 2171 #: inc/Elements/Promo-box.php:147 2172 msgid "Default" 2173 msgstr "" 2174 2175 #: inc/Elements/Promo-box.php:148 2176 msgid "Corner" 2177 msgstr "" 2178 2179 #: inc/Elements/Promo-box.php:201 2180 msgid "Overlay Box Shadow" 2181 msgstr "" 2182 2183 #: inc/Elements/Promo-box.php:213 2091 2184 msgid "Overlay Text & Background" 2185 msgstr "" 2186 2187 #: inc/Elements/Promo-box.php:264 inc/Elements/Testimonial_Slider.php:241 2188 msgid "Container Style" 2092 2189 msgstr "" 2093 2190 … … 2192 2289 msgstr "" 2193 2290 2194 #: inc/Elements/Slider.php:2802195 msgid "Overlay Padding"2196 msgstr ""2197 2198 2291 #: inc/Elements/Slider.php:439 2199 2292 msgid "Navigation Border Radius" … … 2221 2314 2222 2315 #: inc/Elements/Social_Icon.php:53 inc/Elements/Social_Icon.php:243 2223 #: inc/Elements/Staff_Member.php:1 372316 #: inc/Elements/Staff_Member.php:140 2224 2317 msgid "Social Icons" 2225 2318 msgstr "" … … 2250 2343 msgstr "" 2251 2344 2252 #: inc/Elements/Social_Icon.php:168 inc/Elements/Social_Icon.php:2152253 #: inc/Elements/Social_Icon.php:319 inc/Elements/Social_Icon.php:4032254 #: inc/Elements/Social_Icon.php:4512255 msgid "Background Color"2256 msgstr ""2257 2258 2345 #: inc/Elements/Social_Icon.php:182 inc/Elements/Social_Icon.php:227 2259 2346 #: inc/Elements/Social_Icon.php:419 inc/Elements/Social_Icon.php:463 … … 2269 2356 msgstr "" 2270 2357 2271 #: inc/Elements/Social_Icon.php:366 inc/Elements/Staff_Member.php:16 12272 #: inc/Elements/Staff_Member.php: 4552358 #: inc/Elements/Social_Icon.php:366 inc/Elements/Staff_Member.php:164 2359 #: inc/Elements/Staff_Member.php:513 2273 2360 msgid "Social Icon" 2274 2361 msgstr "" … … 2294 2381 msgstr "" 2295 2382 2296 #: inc/Elements/Staff_Member.php: 272383 #: inc/Elements/Staff_Member.php:30 2297 2384 msgid "DA: Staff Member" 2298 2385 msgstr "" 2299 2386 2300 #: inc/Elements/Staff_Member.php:6 12387 #: inc/Elements/Staff_Member.php:64 2301 2388 msgid "Staff Member" 2302 2389 msgstr "" 2303 2390 2304 #: inc/Elements/Staff_Member.php:8 22391 #: inc/Elements/Staff_Member.php:85 2305 2392 msgid "Image Width(%)" 2306 2393 msgstr "" 2307 2394 2308 #: inc/Elements/Staff_Member.php:10 62395 #: inc/Elements/Staff_Member.php:109 2309 2396 msgid "Name" 2310 2397 msgstr "" 2311 2398 2312 #: inc/Elements/Staff_Member.php:1 172399 #: inc/Elements/Staff_Member.php:120 2313 2400 msgid "Job Position" 2314 2401 msgstr "" 2315 2402 2316 #: inc/Elements/Staff_Member.php:1 182403 #: inc/Elements/Staff_Member.php:121 2317 2404 msgid "Developer" 2318 2405 msgstr "" 2319 2406 2320 #: inc/Elements/Staff_Member.php:1 282407 #: inc/Elements/Staff_Member.php:131 2321 2408 msgid "About Staff Member" 2322 2409 msgstr "" 2323 2410 2324 #: inc/Elements/Staff_Member.php:1 292411 #: inc/Elements/Staff_Member.php:132 2325 2412 msgid "" 2326 2413 "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " … … 2328 2415 msgstr "" 2329 2416 2330 #: inc/Elements/Staff_Member.php:14 52417 #: inc/Elements/Staff_Member.php:148 2331 2418 msgid "Social Icons Show/Hide" 2332 2419 msgstr "" 2333 2420 2334 #: inc/Elements/Staff_Member.php:17 52421 #: inc/Elements/Staff_Member.php:178 2335 2422 msgid "Social Icon Link" 2336 2423 msgstr "" 2337 2424 2338 #: inc/Elements/Staff_Member.php:22 02425 #: inc/Elements/Staff_Member.php:223 2339 2426 msgid "Staff Member Item Style" 2340 2427 msgstr "" 2341 2428 2342 #: inc/Elements/Staff_Member.php:2 722429 #: inc/Elements/Staff_Member.php:261 2343 2430 msgid "Staff Member Image" 2344 2431 msgstr "" 2345 2432 2346 #: inc/Elements/Staff_Member.php:321 2433 #: inc/Elements/Staff_Member.php:277 2434 msgid "Image Border Hover Color" 2435 msgstr "" 2436 2437 #: inc/Elements/Staff_Member.php:319 2347 2438 msgid "Staff Member Name" 2348 2439 msgstr "" 2349 2440 2350 #: inc/Elements/Staff_Member.php:3 302441 #: inc/Elements/Staff_Member.php:328 2351 2442 msgid "Name Bottom Spacing" 2352 2443 msgstr "" 2353 2444 2354 #: inc/Elements/Staff_Member.php:34 52445 #: inc/Elements/Staff_Member.php:343 2355 2446 msgid "Name Color" 2356 2447 msgstr "" 2357 2448 2358 #: inc/Elements/Staff_Member.php:366 2449 #: inc/Elements/Staff_Member.php:355 2450 msgid "Name Hover Color" 2451 msgstr "" 2452 2453 #: inc/Elements/Staff_Member.php:396 2359 2454 msgid "Staff Member Job Position" 2360 2455 msgstr "" 2361 2456 2362 #: inc/Elements/Staff_Member.php: 3742457 #: inc/Elements/Staff_Member.php:404 2363 2458 msgid "Job Position Bottom Spacing" 2364 2459 msgstr "" 2365 2460 2366 #: inc/Elements/Staff_Member.php:413 2461 #: inc/Elements/Staff_Member.php:419 2462 msgid "Job Position Color" 2463 msgstr "" 2464 2465 #: inc/Elements/Staff_Member.php:429 2466 msgid "Job Position Hover Color" 2467 msgstr "" 2468 2469 #: inc/Elements/Staff_Member.php:471 2367 2470 msgid "Staff Member Text" 2368 2471 msgstr "" 2369 2472 2370 #: inc/Elements/Staff_Member.php:4 222473 #: inc/Elements/Staff_Member.php:480 2371 2474 msgid "Text Bottom Padding" 2372 2475 msgstr "" 2373 2476 2374 #: inc/Elements/Staff_Member.php:627 2375 msgid "Staff Member Content" 2477 #: inc/Elements/Staff_Member.php:650 2478 msgid "Icon Border Hover Color" 2479 msgstr "" 2480 2481 #: inc/Elements/Staff_Member.php:692 2482 msgid "Staff Member Container" 2376 2483 msgstr "" 2377 2484 … … 2455 2562 #: inc/Elements/Tabs.php:237 2456 2563 msgid "Tab Title" 2457 msgstr ""2458 2459 #: inc/Elements/Tabs.php:3212460 msgid "Icon Before Title"2461 2564 msgstr "" 2462 2565 … … 2577 2680 msgstr "" 2578 2681 2682 #: inc/Elements/Testimonial.php:173 inc/Elements/Testimonial_Slider.php:272 2683 msgid "Background Shadow Style" 2684 msgstr "" 2685 2686 #: inc/Elements/Testimonial.php:177 inc/Elements/Testimonial_Slider.php:276 2687 #: inc/Reuses/Reuse.php:352 2688 msgid "None" 2689 msgstr "" 2690 2691 #: inc/Elements/Testimonial.php:178 inc/Elements/Testimonial_Slider.php:277 2692 msgid "Style1" 2693 msgstr "" 2694 2695 #: inc/Elements/Testimonial.php:179 inc/Elements/Testimonial_Slider.php:278 2696 msgid "Style2" 2697 msgstr "" 2698 2699 #: inc/Elements/Testimonial.php:180 inc/Elements/Testimonial_Slider.php:279 2700 msgid "Style3" 2701 msgstr "" 2702 2579 2703 #: inc/Elements/Testimonial.php:191 inc/Elements/Testimonial_Slider.php:290 2580 2704 msgid "Reviewer Image" … … 2623 2747 #: inc/Elements/Testimonial_Slider.php:163 2624 2748 msgid "Default:1" 2625 msgstr ""2626 2627 #: inc/Elements/Testimonial_Slider.php:2412628 msgid "Container Style"2629 2749 msgstr "" 2630 2750 … … 2855 2975 msgstr "" 2856 2976 2857 #: inc/Elements/heading-with-separator.php: 292977 #: inc/Elements/heading-with-separator.php:31 2858 2978 msgid "DA: Heading with Separator" 2859 2979 msgstr "" 2860 2980 2861 #: inc/Elements/heading-with-separator.php: 592981 #: inc/Elements/heading-with-separator.php:61 2862 2982 msgid "Heading with Separator" 2863 2983 msgstr "" 2864 2984 2865 #: inc/Elements/heading-with-separator.php: 692985 #: inc/Elements/heading-with-separator.php:71 2866 2986 msgid "Heading Text" 2867 2987 msgstr "" 2868 2988 2869 #: inc/Elements/heading-with-separator.php:7 02989 #: inc/Elements/heading-with-separator.php:72 2870 2990 msgid "I am heading or text" 2871 2991 msgstr "" 2872 2992 2873 #: inc/Elements/heading-with-separator.php:9 42993 #: inc/Elements/heading-with-separator.php:96 2874 2994 msgid "Show/Hide Separator" 2875 2995 msgstr "" 2876 2996 2877 #: inc/Elements/heading-with-separator.php:13 82997 #: inc/Elements/heading-with-separator.php:139 2878 2998 msgid "Heading" 2879 2999 msgstr "" 2880 3000 2881 #: inc/Elements/heading-with-separator.php:194 3001 #: inc/Elements/heading-with-separator.php:196 3002 msgid "Title Background Hover Color" 3003 msgstr "" 3004 3005 #: inc/Elements/heading-with-separator.php:250 2882 3006 msgid "Heading Separator" 2883 3007 msgstr "" 2884 3008 2885 #: inc/Elements/heading-with-separator.php:2 013009 #: inc/Elements/heading-with-separator.php:257 2886 3010 msgid "separator Color" 2887 3011 msgstr "" 2888 3012 2889 #: inc/Elements/heading-with-separator.php:213 3013 #: inc/Elements/heading-with-separator.php:269 3014 msgid "Separator Hover Color" 3015 msgstr "" 3016 3017 #: inc/Elements/heading-with-separator.php:281 2890 3018 msgid "Separator Width" 2891 3019 msgstr "" 2892 3020 2893 #: inc/Elements/heading-with-separator.php:2 283021 #: inc/Elements/heading-with-separator.php:296 2894 3022 msgid "Separator Height" 2895 3023 msgstr "" 2896 3024 2897 #: inc/Elements/heading-with-separator.php: 2453025 #: inc/Elements/heading-with-separator.php:311 2898 3026 msgid "Separator Bottom Spacing" 2899 3027 msgstr "" 2900 3028 2901 #: inc/Reuses/Reuse.php: 303029 #: inc/Reuses/Reuse.php:27 2902 3030 #, php-format 2903 3031 msgid "Continue reading %s" 2904 3032 msgstr "" 2905 3033 2906 #: inc/Reuses/Reuse.php:1 30 inc/Reuses/Reuse.php:1543034 #: inc/Reuses/Reuse.php:110 inc/Reuses/Reuse.php:134 2907 3035 #, php-format 2908 3036 msgid "By %s" 2909 3037 msgstr "" 2910 3038 2911 #: inc/Reuses/Reuse.php:1 75 inc/Reuses/Reuse.php:195 inc/Reuses/Reuse.php:2143039 #: inc/Reuses/Reuse.php:155 inc/Reuses/Reuse.php:175 inc/Reuses/Reuse.php:194 2912 3040 msgid "No Form found. Create New form " 2913 3041 msgstr "" 2914 3042 2915 #: inc/Reuses/Reuse.php:1 76 inc/Reuses/Reuse.php:2153043 #: inc/Reuses/Reuse.php:156 inc/Reuses/Reuse.php:195 2916 3044 msgid "Click here" 2917 3045 msgstr "" 2918 3046 3047 #: inc/Reuses/Reuse.php:204 3048 msgid "500px" 3049 msgstr "" 3050 3051 #: inc/Reuses/Reuse.php:205 3052 msgid "android" 3053 msgstr "" 3054 3055 #: inc/Reuses/Reuse.php:206 3056 msgid "apple" 3057 msgstr "" 3058 3059 #: inc/Reuses/Reuse.php:207 3060 msgid "behance" 3061 msgstr "" 3062 3063 #: inc/Reuses/Reuse.php:208 3064 msgid "bitbucket" 3065 msgstr "" 3066 3067 #: inc/Reuses/Reuse.php:209 3068 msgid "codepen" 3069 msgstr "" 3070 3071 #: inc/Reuses/Reuse.php:210 3072 msgid "delicious" 3073 msgstr "" 3074 3075 #: inc/Reuses/Reuse.php:211 3076 msgid "deviantart" 3077 msgstr "" 3078 3079 #: inc/Reuses/Reuse.php:212 3080 msgid "digg" 3081 msgstr "" 3082 3083 #: inc/Reuses/Reuse.php:213 3084 msgid "dribbble" 3085 msgstr "" 3086 3087 #: inc/Reuses/Reuse.php:215 3088 msgid "facebook" 3089 msgstr "" 3090 3091 #: inc/Reuses/Reuse.php:216 3092 msgid "flickr" 3093 msgstr "" 3094 3095 #: inc/Reuses/Reuse.php:217 3096 msgid "foursquare" 3097 msgstr "" 3098 3099 #: inc/Reuses/Reuse.php:219 3100 msgid "github" 3101 msgstr "" 3102 3103 #: inc/Reuses/Reuse.php:221 3104 msgid "globe" 3105 msgstr "" 3106 3107 #: inc/Reuses/Reuse.php:222 3108 msgid "google-plus" 3109 msgstr "" 3110 3111 #: inc/Reuses/Reuse.php:223 3112 msgid "houzz" 3113 msgstr "" 3114 3115 #: inc/Reuses/Reuse.php:224 3116 msgid "instagram" 3117 msgstr "" 3118 3119 #: inc/Reuses/Reuse.php:225 3120 msgid "jsfiddle" 3121 msgstr "" 3122 3123 #: inc/Reuses/Reuse.php:226 3124 msgid "linkedin" 3125 msgstr "" 3126 3127 #: inc/Reuses/Reuse.php:227 3128 msgid "medium" 3129 msgstr "" 3130 3131 #: inc/Reuses/Reuse.php:228 3132 msgid "meetup" 3133 msgstr "" 3134 3135 #: inc/Reuses/Reuse.php:229 3136 msgid "mixcloud" 3137 msgstr "" 3138 3139 #: inc/Reuses/Reuse.php:231 3140 msgid "pinterest" 3141 msgstr "" 3142 3143 #: inc/Reuses/Reuse.php:232 3144 msgid "product-hunt" 3145 msgstr "" 3146 3147 #: inc/Reuses/Reuse.php:233 3148 msgid "reddit" 3149 msgstr "" 3150 3151 #: inc/Reuses/Reuse.php:234 3152 msgid "shopping-cart" 3153 msgstr "" 3154 3155 #: inc/Reuses/Reuse.php:235 3156 msgid "skype" 3157 msgstr "" 3158 3159 #: inc/Reuses/Reuse.php:236 3160 msgid "slideshare" 3161 msgstr "" 3162 3163 #: inc/Reuses/Reuse.php:237 3164 msgid "snapchat" 3165 msgstr "" 3166 3167 #: inc/Reuses/Reuse.php:238 3168 msgid "soundcloud" 3169 msgstr "" 3170 3171 #: inc/Reuses/Reuse.php:239 3172 msgid "spotify" 3173 msgstr "" 3174 3175 #: inc/Reuses/Reuse.php:241 3176 msgid "steam" 3177 msgstr "" 3178 3179 #: inc/Reuses/Reuse.php:242 3180 msgid "stumbleupon" 3181 msgstr "" 3182 3183 #: inc/Reuses/Reuse.php:243 3184 msgid "telegram" 3185 msgstr "" 3186 3187 #: inc/Reuses/Reuse.php:244 3188 msgid "thumb-tack" 3189 msgstr "" 3190 3191 #: inc/Reuses/Reuse.php:245 3192 msgid "tripadvisor" 3193 msgstr "" 3194 3195 #: inc/Reuses/Reuse.php:246 3196 msgid "tumblr" 3197 msgstr "" 3198 3199 #: inc/Reuses/Reuse.php:247 3200 msgid "twitch" 3201 msgstr "" 3202 3203 #: inc/Reuses/Reuse.php:248 3204 msgid "twitter" 3205 msgstr "" 3206 3207 #: inc/Reuses/Reuse.php:249 3208 msgid "viber" 3209 msgstr "" 3210 3211 #: inc/Reuses/Reuse.php:250 3212 msgid "vimeo" 3213 msgstr "" 3214 3215 #: inc/Reuses/Reuse.php:251 3216 msgid "vk" 3217 msgstr "" 3218 3219 #: inc/Reuses/Reuse.php:252 3220 msgid "weibo" 3221 msgstr "" 3222 3223 #: inc/Reuses/Reuse.php:253 3224 msgid "weixin" 3225 msgstr "" 3226 3227 #: inc/Reuses/Reuse.php:254 3228 msgid "whatsapp" 3229 msgstr "" 3230 3231 #: inc/Reuses/Reuse.php:255 3232 msgid "wordpress" 3233 msgstr "" 3234 3235 #: inc/Reuses/Reuse.php:256 3236 msgid "xing" 3237 msgstr "" 3238 3239 #: inc/Reuses/Reuse.php:257 3240 msgid "yelp" 3241 msgstr "" 3242 3243 #: inc/Reuses/Reuse.php:258 3244 msgid "youtube" 3245 msgstr "" 3246 3247 #: inc/Reuses/Reuse.php:260 3248 msgid "cc-amex" 3249 msgstr "" 3250 3251 #: inc/Reuses/Reuse.php:261 3252 msgid "cc-mastercard" 3253 msgstr "" 3254 3255 #: inc/Reuses/Reuse.php:262 3256 msgid "cc-paypal" 3257 msgstr "" 3258 3259 #: inc/Reuses/Reuse.php:263 3260 msgid "cc-stripe" 3261 msgstr "" 3262 3263 #: inc/Reuses/Reuse.php:264 3264 msgid "cc-visa" 3265 msgstr "" 3266 3267 #: inc/Reuses/Reuse.php:265 3268 msgid "credit-card" 3269 msgstr "" 3270 3271 #: inc/Reuses/Reuse.php:266 3272 msgid "google-wallet" 3273 msgstr "" 3274 3275 #: inc/Reuses/Reuse.php:267 3276 msgid "paypal" 3277 msgstr "" 3278 3279 #: inc/Reuses/Reuse.php:268 3280 msgid "cc-discover" 3281 msgstr "" 3282 3283 #: inc/Reuses/Reuse.php:269 3284 msgid "cc-jcb" 3285 msgstr "" 3286 3287 #: inc/Reuses/Reuse.php:275 3288 msgid "none" 3289 msgstr "" 3290 3291 #: inc/Reuses/Reuse.php:276 3292 msgid "bounce" 3293 msgstr "" 3294 3295 #: inc/Reuses/Reuse.php:277 3296 msgid "flash" 3297 msgstr "" 3298 3299 #: inc/Reuses/Reuse.php:278 3300 msgid "pulse" 3301 msgstr "" 3302 3303 #: inc/Reuses/Reuse.php:279 3304 msgid "rubberBand" 3305 msgstr "" 3306 3307 #: inc/Reuses/Reuse.php:280 3308 msgid "shake" 3309 msgstr "" 3310 3311 #: inc/Reuses/Reuse.php:281 3312 msgid "headShake" 3313 msgstr "" 3314 3315 #: inc/Reuses/Reuse.php:282 3316 msgid "swing" 3317 msgstr "" 3318 3319 #: inc/Reuses/Reuse.php:283 3320 msgid "tada" 3321 msgstr "" 3322 3323 #: inc/Reuses/Reuse.php:284 3324 msgid "wobble" 3325 msgstr "" 3326 3327 #: inc/Reuses/Reuse.php:285 3328 msgid "jello" 3329 msgstr "" 3330 3331 #: inc/Reuses/Reuse.php:286 3332 msgid "bounceIn" 3333 msgstr "" 3334 3335 #: inc/Reuses/Reuse.php:287 3336 msgid "bounceInDown" 3337 msgstr "" 3338 3339 #: inc/Reuses/Reuse.php:288 inc/Reuses/Reuse.php:289 3340 msgid "bounceInLeft" 3341 msgstr "" 3342 3343 #: inc/Reuses/Reuse.php:290 3344 msgid "bounceInUp" 3345 msgstr "" 3346 3347 #: inc/Reuses/Reuse.php:291 3348 msgid "bounceOut" 3349 msgstr "" 3350 3351 #: inc/Reuses/Reuse.php:292 3352 msgid "bounceOutDown" 3353 msgstr "" 3354 3355 #: inc/Reuses/Reuse.php:293 3356 msgid "bounceOutLeft" 3357 msgstr "" 3358 3359 #: inc/Reuses/Reuse.php:294 3360 msgid "bounceOutRight" 3361 msgstr "" 3362 2919 3363 #: inc/Reuses/Reuse.php:295 2920 msgid " none"3364 msgid "bounceOutUp" 2921 3365 msgstr "" 2922 3366 2923 3367 #: inc/Reuses/Reuse.php:296 2924 msgid " bounce"3368 msgid "fadeIn" 2925 3369 msgstr "" 2926 3370 2927 3371 #: inc/Reuses/Reuse.php:297 2928 msgid "f lash"3372 msgid "fadeInDown" 2929 3373 msgstr "" 2930 3374 2931 3375 #: inc/Reuses/Reuse.php:298 2932 msgid " pulse"3376 msgid "fadeInDownBig" 2933 3377 msgstr "" 2934 3378 2935 3379 #: inc/Reuses/Reuse.php:299 2936 msgid " rubberBand"3380 msgid "fadeInLeft" 2937 3381 msgstr "" 2938 3382 2939 3383 #: inc/Reuses/Reuse.php:300 2940 msgid " shake"3384 msgid "fadeInLeftBig" 2941 3385 msgstr "" 2942 3386 2943 3387 #: inc/Reuses/Reuse.php:301 2944 msgid " headShake"3388 msgid "fadeInRight" 2945 3389 msgstr "" 2946 3390 2947 3391 #: inc/Reuses/Reuse.php:302 2948 msgid " swing"3392 msgid "fadeInRightBig" 2949 3393 msgstr "" 2950 3394 2951 3395 #: inc/Reuses/Reuse.php:303 2952 msgid " tada"3396 msgid "fadeInUp" 2953 3397 msgstr "" 2954 3398 2955 3399 #: inc/Reuses/Reuse.php:304 2956 msgid " wobble"3400 msgid "fadeInUpBig" 2957 3401 msgstr "" 2958 3402 2959 3403 #: inc/Reuses/Reuse.php:305 2960 msgid " jello"3404 msgid "fadeOut" 2961 3405 msgstr "" 2962 3406 2963 3407 #: inc/Reuses/Reuse.php:306 2964 msgid " bounceIn"3408 msgid "fadeOutDown" 2965 3409 msgstr "" 2966 3410 2967 3411 #: inc/Reuses/Reuse.php:307 2968 msgid "bounceInDown" 2969 msgstr "" 2970 2971 #: inc/Reuses/Reuse.php:308 inc/Reuses/Reuse.php:309 2972 msgid "bounceInLeft" 3412 msgid "fadeOutDownBig" 3413 msgstr "" 3414 3415 #: inc/Reuses/Reuse.php:308 3416 msgid "fadeOutLeft" 3417 msgstr "" 3418 3419 #: inc/Reuses/Reuse.php:309 3420 msgid "fadeOutLeftBig" 2973 3421 msgstr "" 2974 3422 2975 3423 #: inc/Reuses/Reuse.php:310 2976 msgid " bounceInUp"3424 msgid "fadeOutRight" 2977 3425 msgstr "" 2978 3426 2979 3427 #: inc/Reuses/Reuse.php:311 2980 msgid " bounceOut"3428 msgid "fadeOutRightBig" 2981 3429 msgstr "" 2982 3430 2983 3431 #: inc/Reuses/Reuse.php:312 2984 msgid " bounceOutDown"3432 msgid "fadeOutUp" 2985 3433 msgstr "" 2986 3434 2987 3435 #: inc/Reuses/Reuse.php:313 2988 msgid " bounceOutLeft"3436 msgid "fadeOutUpBig" 2989 3437 msgstr "" 2990 3438 2991 3439 #: inc/Reuses/Reuse.php:314 2992 msgid " bounceOutRight"3440 msgid "flipInX" 2993 3441 msgstr "" 2994 3442 2995 3443 #: inc/Reuses/Reuse.php:315 2996 msgid " bounceOutUp"3444 msgid "flipInY" 2997 3445 msgstr "" 2998 3446 2999 3447 #: inc/Reuses/Reuse.php:316 3000 msgid "f adeIn"3448 msgid "flipOutX" 3001 3449 msgstr "" 3002 3450 3003 3451 #: inc/Reuses/Reuse.php:317 3004 msgid "f adeInDown"3452 msgid "flipOutY" 3005 3453 msgstr "" 3006 3454 3007 3455 #: inc/Reuses/Reuse.php:318 3008 msgid " fadeInDownBig"3456 msgid "lightSpeedIn" 3009 3457 msgstr "" 3010 3458 3011 3459 #: inc/Reuses/Reuse.php:319 3012 msgid " fadeInLeft"3460 msgid "lightSpeedOut" 3013 3461 msgstr "" 3014 3462 3015 3463 #: inc/Reuses/Reuse.php:320 3016 msgid " fadeInLeftBig"3464 msgid "rotateIn" 3017 3465 msgstr "" 3018 3466 3019 3467 #: inc/Reuses/Reuse.php:321 3020 msgid " fadeInRight"3468 msgid "rotateInDownLeft" 3021 3469 msgstr "" 3022 3470 3023 3471 #: inc/Reuses/Reuse.php:322 3024 msgid " fadeInRightBig"3472 msgid "rotateInDownRight" 3025 3473 msgstr "" 3026 3474 3027 3475 #: inc/Reuses/Reuse.php:323 3028 msgid " fadeInUp"3476 msgid "rotateInUpLeft" 3029 3477 msgstr "" 3030 3478 3031 3479 #: inc/Reuses/Reuse.php:324 3032 msgid " fadeInUpBig"3480 msgid "rotateInUpRight" 3033 3481 msgstr "" 3034 3482 3035 3483 #: inc/Reuses/Reuse.php:325 3036 msgid " fadeOut"3484 msgid "rotateOut" 3037 3485 msgstr "" 3038 3486 3039 3487 #: inc/Reuses/Reuse.php:326 3040 msgid " fadeOutDown"3488 msgid "rotateOutDownLeft" 3041 3489 msgstr "" 3042 3490 3043 3491 #: inc/Reuses/Reuse.php:327 3044 msgid " fadeOutDownBig"3492 msgid "rotateOutDownRight" 3045 3493 msgstr "" 3046 3494 3047 3495 #: inc/Reuses/Reuse.php:328 3048 msgid " fadeOutLeft"3496 msgid "rotateOutUpLeft" 3049 3497 msgstr "" 3050 3498 3051 3499 #: inc/Reuses/Reuse.php:329 3052 msgid " fadeOutLeftBig"3500 msgid "rotateOutUpRight" 3053 3501 msgstr "" 3054 3502 3055 3503 #: inc/Reuses/Reuse.php:330 3056 msgid " fadeOutRight"3504 msgid "hinge" 3057 3505 msgstr "" 3058 3506 3059 3507 #: inc/Reuses/Reuse.php:331 3060 msgid " fadeOutRightBig"3508 msgid "jackInTheBox" 3061 3509 msgstr "" 3062 3510 3063 3511 #: inc/Reuses/Reuse.php:332 3064 msgid " fadeOutUp"3512 msgid "rollIn" 3065 3513 msgstr "" 3066 3514 3067 3515 #: inc/Reuses/Reuse.php:333 3068 msgid " fadeOutUpBig"3516 msgid "rollOut" 3069 3517 msgstr "" 3070 3518 3071 3519 #: inc/Reuses/Reuse.php:334 3072 msgid " flipInX"3520 msgid "zoomIn" 3073 3521 msgstr "" 3074 3522 3075 3523 #: inc/Reuses/Reuse.php:335 3076 msgid " flipInY"3524 msgid "zoomInDown" 3077 3525 msgstr "" 3078 3526 3079 3527 #: inc/Reuses/Reuse.php:336 3080 msgid " flipOutX"3528 msgid "zoomInLeft" 3081 3529 msgstr "" 3082 3530 3083 3531 #: inc/Reuses/Reuse.php:337 3084 msgid " flipOutY"3532 msgid "zoomInRight" 3085 3533 msgstr "" 3086 3534 3087 3535 #: inc/Reuses/Reuse.php:338 3088 msgid " lightSpeedIn"3536 msgid "zoomInUp" 3089 3537 msgstr "" 3090 3538 3091 3539 #: inc/Reuses/Reuse.php:339 3092 msgid " lightSpeedOut"3540 msgid "zoomOut" 3093 3541 msgstr "" 3094 3542 3095 3543 #: inc/Reuses/Reuse.php:340 3096 msgid " rotateIn"3544 msgid "zoomOutDown" 3097 3545 msgstr "" 3098 3546 3099 3547 #: inc/Reuses/Reuse.php:341 3100 msgid " rotateInDownLeft"3548 msgid "zoomOutLeft" 3101 3549 msgstr "" 3102 3550 3103 3551 #: inc/Reuses/Reuse.php:342 3104 msgid " rotateInDownRight"3552 msgid "zoomOutRight" 3105 3553 msgstr "" 3106 3554 3107 3555 #: inc/Reuses/Reuse.php:343 3108 msgid " rotateInUpLeft"3556 msgid "zoomOutUp" 3109 3557 msgstr "" 3110 3558 3111 3559 #: inc/Reuses/Reuse.php:344 3112 msgid " rotateInUpRight"3560 msgid "slideInDown" 3113 3561 msgstr "" 3114 3562 3115 3563 #: inc/Reuses/Reuse.php:345 3116 msgid " rotateOut"3564 msgid "slideInLeft" 3117 3565 msgstr "" 3118 3566 3119 3567 #: inc/Reuses/Reuse.php:346 3120 msgid " rotateOutDownLeft"3568 msgid "slideInRight" 3121 3569 msgstr "" 3122 3570 3123 3571 #: inc/Reuses/Reuse.php:347 3124 msgid " rotateOutDownRight"3572 msgid "slideInUp" 3125 3573 msgstr "" 3126 3574 3127 3575 #: inc/Reuses/Reuse.php:348 3128 msgid " rotateOutUpLeft"3576 msgid "slideOutDown" 3129 3577 msgstr "" 3130 3578 3131 3579 #: inc/Reuses/Reuse.php:349 3132 msgid " rotateOutUpRight"3580 msgid "slideOutLeft" 3133 3581 msgstr "" 3134 3582 3135 3583 #: inc/Reuses/Reuse.php:350 3136 msgid " hinge"3584 msgid "slideOutRight" 3137 3585 msgstr "" 3138 3586 3139 3587 #: inc/Reuses/Reuse.php:351 3140 msgid "jackInTheBox"3141 msgstr ""3142 3143 #: inc/Reuses/Reuse.php:3523144 msgid "rollIn"3145 msgstr ""3146 3147 #: inc/Reuses/Reuse.php:3533148 msgid "rollOut"3149 msgstr ""3150 3151 #: inc/Reuses/Reuse.php:3543152 msgid "zoomIn"3153 msgstr ""3154 3155 #: inc/Reuses/Reuse.php:3553156 msgid "zoomInDown"3157 msgstr ""3158 3159 #: inc/Reuses/Reuse.php:3563160 msgid "zoomInLeft"3161 msgstr ""3162 3163 #: inc/Reuses/Reuse.php:3573164 msgid "zoomInRight"3165 msgstr ""3166 3167 #: inc/Reuses/Reuse.php:3583168 msgid "zoomInUp"3169 msgstr ""3170 3171 #: inc/Reuses/Reuse.php:3593172 msgid "zoomOut"3173 msgstr ""3174 3175 #: inc/Reuses/Reuse.php:3603176 msgid "zoomOutDown"3177 msgstr ""3178 3179 #: inc/Reuses/Reuse.php:3613180 msgid "zoomOutLeft"3181 msgstr ""3182 3183 #: inc/Reuses/Reuse.php:3623184 msgid "zoomOutRight"3185 msgstr ""3186 3187 #: inc/Reuses/Reuse.php:3633188 msgid "zoomOutUp"3189 msgstr ""3190 3191 #: inc/Reuses/Reuse.php:3643192 msgid "slideInDown"3193 msgstr ""3194 3195 #: inc/Reuses/Reuse.php:3653196 msgid "slideInLeft"3197 msgstr ""3198 3199 #: inc/Reuses/Reuse.php:3663200 msgid "slideInRight"3201 msgstr ""3202 3203 #: inc/Reuses/Reuse.php:3673204 msgid "slideInUp"3205 msgstr ""3206 3207 #: inc/Reuses/Reuse.php:3683208 msgid "slideOutDown"3209 msgstr ""3210 3211 #: inc/Reuses/Reuse.php:3693212 msgid "slideOutLeft"3213 msgstr ""3214 3215 #: inc/Reuses/Reuse.php:3703216 msgid "slideOutRight"3217 msgstr ""3218 3219 #: inc/Reuses/Reuse.php:3713220 3588 msgid "slideOutUp" 3221 3589 msgstr "" -
definitive-addons-for-elementor/trunk/readme.txt
r2681173 r2686404 5 5 Tested up to: 5.9 6 6 Requires PHP: 5.4 7 Stable tag: 1.4.1 58 Version: 1.4.1 57 Stable tag: 1.4.16 8 Version: 1.4.16 9 9 License: GPLv3 10 10 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 20 20 Definitive addons for elementor can be used with any WordPress theme. It turns a simple theme into gorgeous website. Try with your theme to create unique website. All necessary elements are included to create complete website without coding skill. This plugin best suited with all popular WordPress theme. You can create blog, e-commerce and business website with Definitive Addons. 21 21 22 <div>23 <a href="https://themenextlevel.com/the-gap/" target="__blank" title="Definitive Addons for Elementor Demos"><strong>THE GAP DEMOS</strong></a>24 </div>25 <div>26 <a href="https://themenextlevel.com/million-shades/" target="__blank" title="Definitive Addons for Elementor Demos"><strong>MILLION SHADES DEMOS</strong></a>27 </div>28 <div>29 <a href="https://softfirm.net/popular-theme-demos/" target="__blank" title="Definitive Addons for Elementor Demos"><strong>POPULAR THEME DEMOS</strong></a>30 </div>31 32 33 34 22 ### 33 FREE WIDGETS 35 23 36 24 <ul> 25 <li><a target="_blank" href="https://softfirm.net/filterable-post-portfolio/">Filterable Post/Portfolio</a> - Demos & Documentation</li> 37 26 <li><a target="_blank" href="https://softfirm.net/icon-box/">Icon Box</a> - Demos & Documentation</li> 38 27 <li><a target="_blank" href="https://softfirm.net/image-slider/">Image Slider</a> - Demos & Documentation</li> … … 44 33 <li><a target="_blank" href="https://softfirm.net/counter/">Counter</a> - Demos & Documentation</li> 45 34 <li><a target="_blank" href="https://softfirm.net/heading/">Heading with Separator</a> - Demos & Documentation</li> 46 <li><a target="_blank" href="https:// the-gap-docs.themenextlevel.com/subscription/">Subscription</a> - Demos & Documentation</li>35 <li><a target="_blank" href="https://softfirm.net/subscription/">Subscription</a> - Demos & Documentation</li> 47 36 <li><a target="_blank" href="https://softfirm.net/feature-list/">Feature List</a> - Demos & Documentation</li> 48 37 <li><a target="_blank" href="https://softfirm.net/testimonial-carousel">Testimonial Slider/Testimonial Carouse</a> - Demos & Documentation</li> … … 67 56 <li><a target="_blank" href="https://softfirm.net/tabs/">Tabs</a> - Demos & Documentation</li> 68 57 <li><a target="_blank" href="https://softfirm.net/social-icons/">Social Icon</a> - Demos & Documentation</li> 69 <li><a target="_blank" href="https://softfirm.net/filterable-post-portfolio/">Filterable Post/Portfolio</a> - Demos & Documentation</li>70 58 71 59 </ul> 60 61 <div> 62 <a href="https://themenextlevel.com/the-gap/" target="__blank" title="Definitive Addons for Elementor Demos"><strong>THE GAP DEMOS</strong></a> 63 </div> 64 <div> 65 <a href="https://themenextlevel.com/million-shades/" target="__blank" title="Definitive Addons for Elementor Demos"><strong>MILLION SHADES DEMOS</strong></a> 66 </div> 67 <div> 68 <a href="https://softfirm.net/popular-theme-demos/" target="__blank" title="Definitive Addons for Elementor Demos"><strong>POPULAR THEME DEMOS</strong></a> 69 </div> 72 70 73 71 == Installation == … … 102 100 == Changelog == 103 101 102 = 1.4.16 = 103 many elements modified 104 css file modified 105 reuse.php modified 106 104 107 = 1.4.15 = 105 108 icon issue fixed as other popular theme can use this plugin 106 109 js file modified 107 110 css file modified 108 Quick view function removed109 111 110 112 = 1.4.14 =
Note: See TracChangeset
for help on using the changeset viewer.