Changeset 2824461
- Timestamp:
- 11/26/2022 05:50:26 AM (3 years ago)
- Location:
- plusprice/trunk
- Files:
-
- 5 edited
-
README.md (modified) (2 diffs)
-
plugsprice.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
-
widgets/price-style1.php (modified) (8 diffs)
-
widgets/price-style2.php (modified) (9 diffs)
Legend:
- Unmodified
- Added
- Removed
-
plusprice/trunk/README.md
r2278685 r2824461 4 4 * Tags: elementor pricing table , pricing table , drgu and drop pricing table,page builder, editor, landing page, drag-and-drop, elementor, visual editor, front-end builder 5 5 * Requires at least: 5.0 6 * Tested up to: 5.46 * Tested up to: 6.1.1 7 7 * Requires PHP: 7.0 8 * License: GPLv38 * License: GPLv3 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-3.0.html 10 10 11 11 12 This plugin for elementor builder addons. Create high-end, pixel perfect pricing table. Any theme, any page, any design. … … 15 16 It's about time for a live page builder pricing table. A page builder that delivers high-end pricing table designs and advanced capabilities, never before seen on WordPress. 16 17 18 * 1.0.0 - (26 November, 2022) 19 * Elementor Compatiblity issue fixed 20 * WordPress Version 6.1.1 Compatiblity Checking 21 17 22 * 1.0.0 - 2020-04-05 18 23 * Initial Public Release -
plusprice/trunk/plugsprice.php
r2282644 r2824461 5 5 Author: Themeplugs 6 6 Author URI: http://themeplugs.com/ 7 Version: 1.0. 17 Version: 1.0.2 8 8 Text Domain: plugsprice 9 9 Description: Plusprice is pricing addons for – Elementor Page Builder. It’s have pricing table style with huge option. You can use this plusprice plugins on your website easily. … … 30 30 final class Elementorplugsprice { 31 31 32 const VERSION = "1.0. 0";33 const MINIMUM_ELEMENTOR_VERSION = " 2.6.8";32 const VERSION = "1.0.2"; 33 const MINIMUM_ELEMENTOR_VERSION = "3.0.0"; 34 34 const MINIMUM_PHP_VERSION = "7.0"; 35 35 -
plusprice/trunk/readme.txt
r2282644 r2824461 1 1 === PlusPrice === 2 Contributors: themeplugs 2 Contributors: themeplugs, shagors 3 3 Tags: elementor pricing table , pricing table , drgu and drop pricing table,page builder, editor, landing page, drag-and-drop, elementor, visual editor, front-end builder 4 4 Requires at least: 5.0 5 Tested up to: 5.4 5 Tested up to: 6.1.1 6 Stable tag: 1.0.2 6 7 Requires PHP: 7.0 7 License: GPLv3 8 License: GPLv3 or later 8 9 License URI: https://www.gnu.org/licenses/gpl-3.0.html 10 9 11 10 12 This plugin for elementor builder addons. Create high-end, pixel perfect pricing table. Any theme, any page, any design. … … 14 16 It's about time for a live page builder, with no limits of design. A page builder that delivers high-end pricing table designs and advanced capabilities, never before seen on WordPress. 15 17 16 = 1.0.0 - 2020-04-05 = 18 = 1.0.2 = (26 November, 2022) 19 20 * Elementor Compatiblity issue fixed 21 * WordPress Version 6.1.1 Compatiblity Checking 22 23 24 = 1.0.0 = (2020-04-05) 25 17 26 * Initial Public Release -
plusprice/trunk/widgets/price-style1.php
r2282644 r2824461 12 12 13 13 public function get_title() { 14 return esc_html__( "P ricing Style 1","plugsprice");14 return esc_html__( "Plugs Price 1","plugsprice"); 15 15 } 16 16 17 17 public function get_icon() { 18 return ' fas fa-table';18 return 'eicon-price-table'; 19 19 } 20 20 … … 23 23 } 24 24 25 protected function _register_controls() {25 protected function register_controls() { 26 26 $this->start_controls_section( 27 27 'pricing_title', … … 292 292 'name' => 'pl_price_typo', 293 293 'label' => esc_html__( 'Price Typography', 'plugsprice' ), 294 'scheme' => Elementor\Scheme_Typography::TYPOGRAPHY_1,295 294 'selector' => '{{WRAPPER}} .price .price-head', 296 295 ] … … 302 301 'name' => 'pl_title_typo', 303 302 'label' => esc_html__( 'Title Typography', 'plugsprice' ), 304 'scheme' => Elementor\Scheme_Typography::TYPOGRAPHY_1,305 303 'selector' => '{{WRAPPER}} .price .price-title', 306 304 ] … … 343 341 'name' => 'pl_button_typo', 344 342 'label' => esc_html__( 'Button Typography', 'plugsprice' ), 345 'scheme' => Elementor\Scheme_Typography::TYPOGRAPHY_1,346 343 'selector' => '{{WRAPPER}} .price .btn', 347 344 ] … … 364 361 'label' => __( 'Button Color', 'plugsprice' ), 365 362 'type' => Controls_Manager::COLOR, 366 'scheme' => [367 'type' => \Elementor\Scheme_Color::get_type(),368 'value' => \Elementor\Scheme_Color::COLOR_1,369 ],370 363 'selectors' => [ 371 364 '{{WRAPPER}} .price .btn' => 'color: {{VALUE}}', … … 406 399 'label' => __( 'Button Color', 'plugsprice' ), 407 400 'type' => Controls_Manager::COLOR, 408 'scheme' => [409 'type' => \Elementor\Scheme_Color::get_type(),410 'value' => \Elementor\Scheme_Color::COLOR_1,411 ],412 401 'selectors' => [ 413 402 '{{WRAPPER}} .price .btn:hover' => 'color: {{VALUE}}', … … 493 482 } 494 483 495 protected function _content_template() {}484 protected function content_template() {} 496 485 497 486 } -
plusprice/trunk/widgets/price-style2.php
r2282644 r2824461 12 12 13 13 public function get_title() { 14 return esc_html__( "P ricing Style 2","plugsprice");14 return esc_html__( "Plugs Price 2","plugsprice"); 15 15 } 16 16 17 17 public function get_icon() { 18 return ' fas fa-table';18 return 'eicon-price-table'; 19 19 } 20 20 … … 23 23 } 24 24 25 protected function _register_controls() {25 protected function register_controls() { 26 26 $this->start_controls_section( 27 27 'pricing_title', … … 312 312 'name' => 'pl_price_typo', 313 313 'label' => esc_html__( 'Price Typography', 'plugsprice' ), 314 'scheme' => Elementor\Scheme_Typography::TYPOGRAPHY_1,315 314 'selector' => '{{WRAPPER}} .price .price-head', 316 315 ] … … 322 321 'name' => 'pl_title_typo', 323 322 'label' => esc_html__( 'Title Typography', 'plugsprice' ), 324 'scheme' => Elementor\Scheme_Typography::TYPOGRAPHY_1,325 323 'selector' => '{{WRAPPER}} .price .price-title', 326 324 ] … … 332 330 'label' => esc_html__( 'Title Color', 'plugsprice' ), 333 331 'type' => Controls_Manager::COLOR, 334 'scheme' => [335 'type' => \Elementor\Scheme_Color::get_type(),336 'value' => \Elementor\Scheme_Color::COLOR_1,337 ],338 332 'selectors' => [ 339 333 '{{WRAPPER}} .price .price-title' => 'color: {{VALUE}}', … … 367 361 'name' => 'pl_button_typo', 368 362 'label' => esc_html__( 'Button Typography', 'plugsprice' ), 369 'scheme' => Elementor\Scheme_Typography::TYPOGRAPHY_1,370 363 'selector' => '{{WRAPPER}} .price .btn', 371 364 ] … … 388 381 'label' => __( 'Button Color', 'plugsprice' ), 389 382 'type' => Controls_Manager::COLOR, 390 'scheme' => [391 'type' => \Elementor\Scheme_Color::get_type(),392 'value' => \Elementor\Scheme_Color::COLOR_1,393 ],394 383 'selectors' => [ 395 384 '{{WRAPPER}} .price .btn' => 'color: {{VALUE}}', … … 420 409 'label' => __( 'Button Color', 'plugsprice' ), 421 410 'type' => Controls_Manager::COLOR, 422 'scheme' => [423 'type' => \Elementor\Scheme_Color::get_type(),424 'value' => \Elementor\Scheme_Color::COLOR_1,425 ],426 411 'selectors' => [ 427 412 '{{WRAPPER}} .price .btn:hover' => 'color: {{VALUE}}', … … 507 492 } 508 493 509 protected function _content_template() {}494 protected function content_template() {} 510 495 511 496 }
Note: See TracChangeset
for help on using the changeset viewer.