Changeset 2455984
- Timestamp:
- 01/14/2021 12:59:51 AM (5 years ago)
- Location:
- pricing-table-blocks/trunk
- Files:
-
- 10 added
- 4 deleted
- 2 edited
-
assets/icon.png (added)
-
assets/icons/icon-128x128.png (deleted)
-
assets/logo-128x128.png (added)
-
block-editor.css (deleted)
-
block-layout2.css (deleted)
-
block.js (deleted)
-
includes (added)
-
includes/block-editor.css (added)
-
includes/block.js (added)
-
includes/layouts (added)
-
includes/layouts/block-layout2.css (added)
-
pricing-table-blocks.php (modified) (3 diffs)
-
readme.txt (modified) (3 diffs)
-
screenshot-2.png (added)
-
screenshot-3.png (added)
-
screenshot-4.png (added)
Legend:
- Unmodified
- Added
- Removed
-
pricing-table-blocks/trunk/pricing-table-blocks.php
r2455266 r2455984 2 2 /** 3 3 * Plugin Name: Pricing Table Blocks 4 * Author: FatCatApps 4 * Plugin URI: https://fatcatapps.com/easypricingtables/ 5 * Author: Fatcat Apps 6 * Author URI: https://fatcatapps.com/ 5 7 * Description: Pricing Table Blocks for Gutenberg 6 * Version: 1.0.0 8 * License: GPLv2 9 * Text Domain: pricing-table-blocks 10 * Version: 1.0.1 7 11 */ 8 12 … … 18 22 define( 'FCA_EPT_PLUGIN_VER', '1.0.' . time() ); 19 23 } else { 20 define( 'FCA_EPT_PLUGIN_VER', '1.0. 0' );24 define( 'FCA_EPT_PLUGIN_VER', '1.0.1' ); 21 25 } 22 26 23 // Load assets for wp-admin when editor is active27 // Load assets for editor 24 28 function fca_ept_admin() { 25 wp_enqueue_script( 'fca-ept-editor', plugins_url( ' block.js', __FILE__ ), array( 'wp-blocks', 'wp-element' ), FCA_EPT_PLUGIN_VER );26 wp_enqueue_style( 'fca-ept-layout2', plugins_url( ' block-layout2.css', __FILE__ ), array(), FCA_EPT_PLUGIN_VER );27 wp_enqueue_style( 'fca-ept-editor', plugins_url( ' block-editor.css', __FILE__ ), array(), FCA_EPT_PLUGIN_VER );29 wp_enqueue_script( 'fca-ept-editor', plugins_url( 'includes/block.js', __FILE__ ), array( 'wp-blocks', 'wp-element' ), FCA_EPT_PLUGIN_VER ); 30 wp_enqueue_style( 'fca-ept-layout2', plugins_url( 'includes/layouts/block-layout2.css', __FILE__ ), array(), FCA_EPT_PLUGIN_VER ); 31 wp_enqueue_style( 'fca-ept-editor', plugins_url( 'includes/block-editor.css', __FILE__ ), array(), FCA_EPT_PLUGIN_VER ); 28 32 } 29 33 … … 32 36 // Load assets for frontend 33 37 function fca_ept_frontend() { 34 wp_enqueue_style( 'fca-ept-layout2', plugins_url( ' block-layout2.css', __FILE__ ), array(), FCA_EPT_PLUGIN_VER );38 wp_enqueue_style( 'fca-ept-layout2', plugins_url( 'includes/layouts/block-layout2.css', __FILE__ ), array(), FCA_EPT_PLUGIN_VER ); 35 39 } 36 40 add_action( 'wp_enqueue_scripts', 'fca_ept_frontend' ); -
pricing-table-blocks/trunk/readme.txt
r2455266 r2455984 1 === Pricing Table Blocks - by Fat CatApps ===1 === Pricing Table Blocks - by Fatcat Apps === 2 2 Contributors: fatcatapps, davidhme, ryannovotny, flippy101 3 3 Donate link: https://fatcatapps.com/ … … 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html 11 Stable tag: 1.0. 011 Stable tag: 1.0.1 12 12 13 13 Pricing Table Blocks for Gutenberg! … … 17 17 Create a Beautiful, Responsive and Highly Converting Pricing Table in Less Than 5 Minutes with Pricing Table Blocks for Gutenberg. No Coding Required. 18 18 19 Pricing Table Blocks by Fatcat Apps is the new and improved version of the best-selling plugin Easy Pricing Tables. 20 21 This plugin allows you to build beautiful pricing tables directly in the WordPress block editor. Simply install and activate the plugin, select the “Pricing Table” block from within the post editor, and create your pricing table. 22 23 Edit your plan details, pricing and colors, directly from the post editor. You can add or remove columns, highlight a “featured” or “most popular” column, and add a button URL to your product page or payment gateway. 24 25 The best thing is, you can do all of this in one place. See exactly how your pricing table looks within your post, as you build it. 26 27 It has never been easier to build pricing tables for WordPress. No coding required - just point and click. 28 29 == WordPress Pricing Table Blocks by Fatcat Apps Features == 30 * No coding required 31 * Native Gutenberg block plugin 32 * Easy-to-use point and click interface 33 * Add or remove columns with a single click 34 * Highlight a featured column 35 * Edit pricing table colors with a simple color picker, or add your own hex code 36 * Add a CSS class to edit tables further, with custom CSS code 37 * Clean, professional design, built for conversions 38 * Responsive pricing tables, designed for desktop and mobile devices 39 40 The Pricing Table Blocks plugin by Fatcat Apps is the easiest way to add a pricing table to your WordPress site. 41 42 If you can use the block editor, you can use Pricing Table Blocks. Create your own pricing table in minutes - no fuss, no experience required. 43 19 44 == Screenshots == 20 45 1. Pricing Table Blocks 21 46 22 47 == Changelog == 48 = Pricing Table Blocks 1.0.1 = 49 * Add assets (logo / screenshots) for block repo 50 23 51 = Pricing Table Blocks 1.0.0 = 24 52 * Initial release
Note: See TracChangeset
for help on using the changeset viewer.