Changeset 3349454
- Timestamp:
- 08/25/2025 06:16:06 AM (7 months ago)
- Location:
- frontblocks
- Files:
-
- 8 edited
- 1 copied
-
tags/1.0.2 (copied) (copied from frontblocks/trunk)
-
tags/1.0.2/frontblocks.php (modified) (2 diffs)
-
tags/1.0.2/includes/carousel/frontblocks-advanced-option.jsx (modified) (1 diff)
-
tags/1.0.2/includes/dist/frontblocks-advanced-option.js (modified) (1 diff)
-
tags/1.0.2/readme.txt (modified) (2 diffs)
-
trunk/frontblocks.php (modified) (2 diffs)
-
trunk/includes/carousel/frontblocks-advanced-option.jsx (modified) (1 diff)
-
trunk/includes/dist/frontblocks-advanced-option.js (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
frontblocks/tags/1.0.2/frontblocks.php
r3349208 r3349454 4 4 * Plugin URI: https://wordpress.org/plugins/frontblocks/ 5 5 * Description: Blocks and helpers that extends GeneratePress blocks. 6 * Version: 1.0. 16 * Version: 1.0.2 7 7 * Author: Closemarketing 8 8 * Author URI: https://close.marketing … … 27 27 defined( 'ABSPATH' ) || die( 'No script kiddies please!' ); 28 28 29 define( 'FRBL_VERSION', '1.0. 1' );29 define( 'FRBL_VERSION', '1.0.2' ); 30 30 define( 'FRBL_PLUGIN', __FILE__ ); 31 31 define( 'FRBL_PLUGIN_URL', plugin_dir_url( __FILE__ ) ); -
frontblocks/tags/1.0.2/includes/carousel/frontblocks-advanced-option.jsx
r3338168 r3349454 8 8 function addCustomCarouselPanel(BlockEdit) { 9 9 return (props) => { 10 if (props.name !== 'generateblocks/grid') { 10 // Support both grid blocks and element blocks with grid display 11 if (props.name !== 'generateblocks/grid' && props.name !== 'generateblocks/element') { 12 return <BlockEdit {...props} />; 13 } 14 15 // For element blocks, only show carousel options if it has grid display 16 if (props.name === 'generateblocks/element') { 17 const styles = props.attributes.styles || {}; 18 if (styles.display !== 'grid') { 11 19 return <BlockEdit {...props} />; 20 } 12 21 } 13 22 -
frontblocks/tags/1.0.2/includes/dist/frontblocks-advanced-option.js
r3338168 r3349454 15 15 function addCustomCarouselPanel(BlockEdit) { 16 16 return function (props) { 17 if (props.name !== 'generateblocks/grid') { 17 // Support both grid blocks and element blocks with grid display 18 if (props.name !== 'generateblocks/grid' && props.name !== 'generateblocks/element') { 18 19 return /*#__PURE__*/React.createElement(BlockEdit, props); 20 } 21 22 // For element blocks, only show carousel options if it has grid display 23 if (props.name === 'generateblocks/element') { 24 var styles = props.attributes.styles || {}; 25 if (styles.display !== 'grid') { 26 return /*#__PURE__*/React.createElement(BlockEdit, props); 27 } 19 28 } 20 29 var _props$attributes = props.attributes, -
frontblocks/tags/1.0.2/readme.txt
r3349208 r3349454 5 5 Requires at least: 5.0 6 6 Tested up to: 6.8 7 Stable tag: 1.0. 18 Version: 1.0. 17 Stable tag: 1.0.2 8 Version: 1.0.2 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 69 69 70 70 == Changelog == 71 = 1.0.1 =71 = 1.0.1 & 1.0.2 = 72 72 * Fixed: options for carousel/slider not showing. 73 73 -
frontblocks/trunk/frontblocks.php
r3349208 r3349454 4 4 * Plugin URI: https://wordpress.org/plugins/frontblocks/ 5 5 * Description: Blocks and helpers that extends GeneratePress blocks. 6 * Version: 1.0. 16 * Version: 1.0.2 7 7 * Author: Closemarketing 8 8 * Author URI: https://close.marketing … … 27 27 defined( 'ABSPATH' ) || die( 'No script kiddies please!' ); 28 28 29 define( 'FRBL_VERSION', '1.0. 1' );29 define( 'FRBL_VERSION', '1.0.2' ); 30 30 define( 'FRBL_PLUGIN', __FILE__ ); 31 31 define( 'FRBL_PLUGIN_URL', plugin_dir_url( __FILE__ ) ); -
frontblocks/trunk/includes/carousel/frontblocks-advanced-option.jsx
r3338168 r3349454 8 8 function addCustomCarouselPanel(BlockEdit) { 9 9 return (props) => { 10 if (props.name !== 'generateblocks/grid') { 10 // Support both grid blocks and element blocks with grid display 11 if (props.name !== 'generateblocks/grid' && props.name !== 'generateblocks/element') { 12 return <BlockEdit {...props} />; 13 } 14 15 // For element blocks, only show carousel options if it has grid display 16 if (props.name === 'generateblocks/element') { 17 const styles = props.attributes.styles || {}; 18 if (styles.display !== 'grid') { 11 19 return <BlockEdit {...props} />; 20 } 12 21 } 13 22 -
frontblocks/trunk/includes/dist/frontblocks-advanced-option.js
r3338168 r3349454 15 15 function addCustomCarouselPanel(BlockEdit) { 16 16 return function (props) { 17 if (props.name !== 'generateblocks/grid') { 17 // Support both grid blocks and element blocks with grid display 18 if (props.name !== 'generateblocks/grid' && props.name !== 'generateblocks/element') { 18 19 return /*#__PURE__*/React.createElement(BlockEdit, props); 20 } 21 22 // For element blocks, only show carousel options if it has grid display 23 if (props.name === 'generateblocks/element') { 24 var styles = props.attributes.styles || {}; 25 if (styles.display !== 'grid') { 26 return /*#__PURE__*/React.createElement(BlockEdit, props); 27 } 19 28 } 20 29 var _props$attributes = props.attributes, -
frontblocks/trunk/readme.txt
r3349208 r3349454 5 5 Requires at least: 5.0 6 6 Tested up to: 6.8 7 Stable tag: 1.0. 18 Version: 1.0. 17 Stable tag: 1.0.2 8 Version: 1.0.2 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 69 69 70 70 == Changelog == 71 = 1.0.1 =71 = 1.0.1 & 1.0.2 = 72 72 * Fixed: options for carousel/slider not showing. 73 73
Note: See TracChangeset
for help on using the changeset viewer.