Changeset 3367190
- Timestamp:
- 09/24/2025 12:18:33 PM (5 months ago)
- Location:
- fd-buttons-gutenberg/trunk
- Files:
-
- 3 edited
-
fd-buttons-gutenberg.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
-
src/init.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
fd-buttons-gutenberg/trunk/fd-buttons-gutenberg.php
r3250878 r3367190 5 5 * Author: FlickDevs 6 6 * Author URI: https://flickdevs.com/ 7 * Version: 2.07 * Version: 3.0 8 8 * Description: Additional button styles and options of Button Block for Gutenberg/Block Editor. Best for marketing page, sales funnel, landing pages and call-to-action links when you create sales page. 9 9 * … … 15 15 * 16 16 * Text Domain: fd-buttons-gutenberg 17 * License: GPLv2 or later 18 * License URI: https://www.gnu.org/licenses/gpl-2.0.html 17 19 */ 18 20 /** -
fd-buttons-gutenberg/trunk/readme.txt
r3250878 r3367190 1 === Buttons for Gutenberg ===1 === Buttons For Gutenberg === 2 2 Contributors: flickdevs, shaikhaezaz80, jpkaushik 3 Donate link: paypal.me/FlickDevs4 Tags: gutenberg, blocks, gutenberg blocks editor, block, buttons block for gutenberg, marketing buttons, sales page buttons, funnel buttons, block editor buttons3 Donate link: https://paypal.me/FlickDevs 4 Tags: gutenberg, blocks, buttons, block-editor, marketing 5 5 Requires at least: 5.9 6 Requires PHP: 7.0 or higher7 Tested up to: 6. 7.28 Stable tag: 2.06 Requires PHP: 7.0 7 Tested up to: 6.8 8 Stable tag: 3.0 9 9 License: GPLv2 or later 10 10 License URI: https://www.gnu.org/licenses/gpl-2.0.html 11 11 12 Add itional button styles and options of Button Block for Gutenberg/Block Editor. Best for marketing page, sales funnel, landing pages and call-to-action links when you create sales page.12 Add advanced button styles and options to the WordPress Block Editor for marketing pages and call-to-action links. 13 13 14 14 … … 37 37 == Changelog == 38 38 39 = 3.0 = 40 * Minor fixes 41 39 42 = 2.0 = 40 43 * Compatibility with latest WordPress version -
fd-buttons-gutenberg/trunk/src/init.php
r2011020 r3367190 26 26 'buttons-fdgb-style-css', // Handle. 27 27 plugins_url( 'dist/blocks.style.build.css', dirname( __FILE__ ) ), // Block style CSS. 28 array( 'wp-editor' ) 28 array( 'wp-editor' ), '1.0.0' 29 29 ); 30 30 } // End function buttons_fdgb_block_assets(). … … 40 40 */ 41 41 function buttons_fdgb_load_text_domain() { 42 load_plugin_textdomain( 'FDBFG', false, basename( dirname( __FILE__ ) ) . '/languages' );42 //load_plugin_textdomain( 'FDBFG', false, basename( dirname( __FILE__ ) ) . '/languages' ); 43 43 } 44 44 add_action( 'plugins_loaded', 'buttons_fdgb_load_text_domain' ); … … 58 58 'buttons-fdgb-block-js', // Handle. 59 59 plugins_url( '/dist/blocks.build.js', dirname( __FILE__ ) ), // Block.build.js: We register the block here. Built with Webpack. 60 array( 'wp-blocks', 'wp-i18n', 'wp-element', 'wp-editor' ), 60 array( 'wp-blocks', 'wp-i18n', 'wp-element', 'wp-editor' ), '1.0.0' , 61 61 true // Enqueue the script in the footer. 62 62 ); … … 66 66 'buttons-fdgb-block-editor-css', // Handle. 67 67 plugins_url( 'dist/blocks.editor.build.css', dirname( __FILE__ ) ), // Block editor CSS. 68 array( 'wp-edit-blocks' ) // Dependency to include the CSS after it.68 array( 'wp-edit-blocks' ), '1.0.0' // Dependency to include the CSS after it. 69 69 ); 70 70 } // End function buttons_fdgb_editor_assets().
Note: See TracChangeset
for help on using the changeset viewer.