Changeset 2964353
- Timestamp:
- 09/08/2023 05:58:51 AM (3 years ago)
- Location:
- rocksite-sections
- Files:
-
- 7 edited
-
tags/1.1.3/README.txt (modified) (4 diffs)
-
tags/1.1.3/includes/class-rocksite-blocks-library.php (modified) (1 diff)
-
tags/1.1.3/includes/tgm/plugins-list.php (modified) (2 diffs)
-
tags/1.1.3/rocksite-blocks-library.php (modified) (2 diffs)
-
trunk/README.txt (modified) (4 diffs)
-
trunk/includes/class-rocksite-blocks-library.php (modified) (1 diff)
-
trunk/rocksite-blocks-library.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
rocksite-sections/tags/1.1.3/README.txt
r2964351 r2964353 1 === Rocksite Kit - Block Patterns & Gutenberg Layouts Library===1 === Rocksite Kit - Kadence Blocks Patterns with Figma UI Kit === 2 2 Contributors: netbiel 3 3 Donate link: https://rocksite.pro/ … … 6 6 Tested up to: 6.3 7 7 Requires PHP: 7.0 8 Stable tag: 1.1. 08 Stable tag: 1.1.3 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html 11 11 12 Collection of ready-to-use Gutenberg sections (block patterns) based on Kadence Blocks Library: Article Lists Sections, Features, Subscription Form Sections12 Collection of ready-to-use Gutenberg sections (block patterns) based on Kadence Blocks Library: Hero Sections, Features Sections, Call to Actions etc. 13 13 14 14 == Description == 15 15 16 Rocksite Sections is a library of pre-made, responsive, ready to use sections prepared as Gutenberg block patterns which are based on Kadence Blocks Library. They let you easily create a complex responsive layout of blocks in a matter of seconds.16 A design library that streamlines the process of designing and implementing your website. 17 17 18 See Rocksite Sections [Visual Documentation](https://cloud.rocksite.pro/cloud-categories/hero-section/?utm_source=wp-repo&utm_medium=link&utm_campaign=readme-description) 18 * With a ready-made library of predefined Gutenberg responsive sections, you can easily implement your project in WordPress. 19 * With [Figma UI Kit] (https://www.figma.com/community/file/1273281724920036886), you can easily design a page layout with Gutenberg Kadence Blocks specificity without worrying about future implementation 19 20 20 You can choose a premade section and add it on your site in just one click. After that you can customizing a section for your needs by using options of the selected block.21 Sections designed in Figma and available in the Design Library in the WordPress editor have exactly the same names, and have been grouped into several categories, such as: Hero Sections, Features, Call to Action, Portfolio, Content, Metrics, Contact, etc. 21 22 22 You can use these sections anywhere on your website to recreate complex layouts with minimal effort. Patterns will adapt to your theme’s styles, so they look great with your site. 23 * [Rocksite Kit - More Info](https://rocksite.pro/rocksite-kit/?utm_source=wp-repo&utm_medium=link&utm_campaign=readme-description) 24 * [Visual Documentation](https://cloud.rocksite.pro/?utm_source=wp-repo&utm_medium=link&utm_campaign=readme-description) 23 25 24 In stallation of Kadence Blocks (free plugin) is required for full functionality of Rocksite Sections.26 In WordPress Editor You can choose a premade section and add it on your site in just one click. After that you can customize a section for your needs by using options of the selected block. 25 27 26 == Premium Sections == 28 **PLUGINS REQUIRED** 27 29 28 Rocksite Sections adds automatic connection to a collection of sections from external url in rockite.pro domain. This functionality is based on Kadence Cloud. To use pro section you have to buy Blockfold Premium Theme. Free sections have no limits and always will be free. 30 * [Kadence Blocks (free)](https://wordpress.org/plugins/kadence-blocks/) 31 32 **RECOMMENDED THEMES** 33 34 The designs will adapt to the styles of the theme you are currently using, but you will get the best results by using the free: 35 36 * [Kadence (free)](https://wordpress.org/themes/kadence/) 37 * [Blockfold (free)] (https://wordpress.org/themes/blockfold/) 38 39 40 **DESIGN LIBRARY CLOUD** 41 42 Rocksite Kit adds automatic connection to a collection of sections from external url in rockite.pro domain. This functionality is based on Kadence Cloud. 43 44 45 **PRIVACY** 46 47 Rocksite Sections plugin uses a custom API to fetch blocks patterns libraries from cloud.rocksite.pro when you clicks on the “Design library” button above the editor. I collect data and information as indicated in my Privacy Policy: https://rocksite.pro/privacy-policy/ 48 29 49 30 50 == Installation == … … 66 86 == Changelog == 67 87 88 = 1.1.3 = 89 * Changing description 90 91 = 1.1.2 = 92 * Changing stable tag 93 94 = 1.1.1 = 95 * Fix error "cant redeclare function" - wrong function name 96 97 = 1.1.0 = 98 * updating section templates 99 * changing the installation method of the required plugin 100 * adding settings responsible for CSS 101 102 = 1.0.10 = 103 * Remove welcome message 104 68 105 = 1.0.11 = 69 106 * Add language files - polish … … 100 137 101 138 Simply upgrade by installing new version 102 -
rocksite-sections/tags/1.1.3/includes/class-rocksite-blocks-library.php
r2964351 r2964353 108 108 * Load TGM Plugin 109 109 */ 110 111 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/tgm/class-tgm-plugin-activation.php'; 112 113 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/tgm/plugins-list.php'; 110 if ( ! class_exists( 'TGM_Plugin_Activation' ) ) { 111 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/tgm/class-tgm-plugin-activation.php'; 112 113 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/tgm/plugins-list.php'; 114 } 114 115 115 116 /** -
rocksite-sections/tags/1.1.3/includes/tgm/plugins-list.php
r2964351 r2964353 3 3 * TGMPA PLugin Register Function 4 4 */ 5 function Canvi_activation_setup() {5 function rocksite_activation_setup() { 6 6 7 add_action( 'tgmpa_register', ' CANVI_THEME_register_required_plugins' );7 add_action( 'tgmpa_register', 'rocksite_register_required_plugins' ); 8 8 9 9 } 10 10 11 add_action( 'after_setup_theme', ' Canvi_activation_setup' );11 add_action( 'after_setup_theme', 'rocksite_activation_setup' ); 12 12 13 13 … … 23 23 * TGM_Plugin_Activation class constructor. 24 24 */ 25 function CANVI_THEME_register_required_plugins() {25 function rocksite_register_required_plugins() { 26 26 27 27 /** -
rocksite-sections/tags/1.1.3/rocksite-blocks-library.php
r2964351 r2964353 4 4 * Plugin Name: Rocksite Sections 5 5 * Description: Extends Kadence Blocks Library with new sections: Hero Sections, Features Sections, Call to Actions etc. 6 * Version: 1.1. 06 * Version: 1.1.3 7 7 * Author: Piotr Bielecki 8 8 * Author URI: https://rocksite.pro/ … … 18 18 } 19 19 20 define( 'ROCKSITE_BLOCKS_LIBRARY_VERSION', '1. 0.3' );20 define( 'ROCKSITE_BLOCKS_LIBRARY_VERSION', '1.1.1' ); 21 21 22 22 /** -
rocksite-sections/trunk/README.txt
r2964351 r2964353 1 === Rocksite Kit - Block Patterns & Gutenberg Layouts Library===1 === Rocksite Kit - Kadence Blocks Patterns with Figma UI Kit === 2 2 Contributors: netbiel 3 3 Donate link: https://rocksite.pro/ … … 6 6 Tested up to: 6.3 7 7 Requires PHP: 7.0 8 Stable tag: 1.1. 08 Stable tag: 1.1.3 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html 11 11 12 Collection of ready-to-use Gutenberg sections (block patterns) based on Kadence Blocks Library: Article Lists Sections, Features, Subscription Form Sections12 Collection of ready-to-use Gutenberg sections (block patterns) based on Kadence Blocks Library: Hero Sections, Features Sections, Call to Actions etc. 13 13 14 14 == Description == 15 15 16 Rocksite Sections is a library of pre-made, responsive, ready to use sections prepared as Gutenberg block patterns which are based on Kadence Blocks Library. They let you easily create a complex responsive layout of blocks in a matter of seconds.16 A design library that streamlines the process of designing and implementing your website. 17 17 18 See Rocksite Sections [Visual Documentation](https://cloud.rocksite.pro/cloud-categories/hero-section/?utm_source=wp-repo&utm_medium=link&utm_campaign=readme-description) 18 * With a ready-made library of predefined Gutenberg responsive sections, you can easily implement your project in WordPress. 19 * With [Figma UI Kit] (https://www.figma.com/community/file/1273281724920036886), you can easily design a page layout with Gutenberg Kadence Blocks specificity without worrying about future implementation 19 20 20 You can choose a premade section and add it on your site in just one click. After that you can customizing a section for your needs by using options of the selected block.21 Sections designed in Figma and available in the Design Library in the WordPress editor have exactly the same names, and have been grouped into several categories, such as: Hero Sections, Features, Call to Action, Portfolio, Content, Metrics, Contact, etc. 21 22 22 You can use these sections anywhere on your website to recreate complex layouts with minimal effort. Patterns will adapt to your theme’s styles, so they look great with your site. 23 * [Rocksite Kit - More Info](https://rocksite.pro/rocksite-kit/?utm_source=wp-repo&utm_medium=link&utm_campaign=readme-description) 24 * [Visual Documentation](https://cloud.rocksite.pro/?utm_source=wp-repo&utm_medium=link&utm_campaign=readme-description) 23 25 24 In stallation of Kadence Blocks (free plugin) is required for full functionality of Rocksite Sections.26 In WordPress Editor You can choose a premade section and add it on your site in just one click. After that you can customize a section for your needs by using options of the selected block. 25 27 26 == Premium Sections == 28 **PLUGINS REQUIRED** 27 29 28 Rocksite Sections adds automatic connection to a collection of sections from external url in rockite.pro domain. This functionality is based on Kadence Cloud. To use pro section you have to buy Blockfold Premium Theme. Free sections have no limits and always will be free. 30 * [Kadence Blocks (free)](https://wordpress.org/plugins/kadence-blocks/) 31 32 **RECOMMENDED THEMES** 33 34 The designs will adapt to the styles of the theme you are currently using, but you will get the best results by using the free: 35 36 * [Kadence (free)](https://wordpress.org/themes/kadence/) 37 * [Blockfold (free)] (https://wordpress.org/themes/blockfold/) 38 39 40 **DESIGN LIBRARY CLOUD** 41 42 Rocksite Kit adds automatic connection to a collection of sections from external url in rockite.pro domain. This functionality is based on Kadence Cloud. 43 44 45 **PRIVACY** 46 47 Rocksite Sections plugin uses a custom API to fetch blocks patterns libraries from cloud.rocksite.pro when you clicks on the “Design library” button above the editor. I collect data and information as indicated in my Privacy Policy: https://rocksite.pro/privacy-policy/ 48 29 49 30 50 == Installation == … … 66 86 == Changelog == 67 87 88 = 1.1.3 = 89 * Changing description 90 91 = 1.1.2 = 92 * Changing stable tag 93 94 = 1.1.1 = 95 * Fix error "cant redeclare function" - wrong function name 96 97 = 1.1.0 = 98 * updating section templates 99 * changing the installation method of the required plugin 100 * adding settings responsible for CSS 101 102 = 1.0.10 = 103 * Remove welcome message 104 68 105 = 1.0.11 = 69 106 * Add language files - polish … … 100 137 101 138 Simply upgrade by installing new version 102 -
rocksite-sections/trunk/includes/class-rocksite-blocks-library.php
r2964351 r2964353 108 108 * Load TGM Plugin 109 109 */ 110 111 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/tgm/class-tgm-plugin-activation.php'; 112 113 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/tgm/plugins-list.php'; 110 if ( ! class_exists( 'TGM_Plugin_Activation' ) ) { 111 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/tgm/class-tgm-plugin-activation.php'; 112 113 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/tgm/plugins-list.php'; 114 } 114 115 115 116 /** -
rocksite-sections/trunk/rocksite-blocks-library.php
r2964351 r2964353 4 4 * Plugin Name: Rocksite Sections 5 5 * Description: Extends Kadence Blocks Library with new sections: Hero Sections, Features Sections, Call to Actions etc. 6 * Version: 1.1. 06 * Version: 1.1.3 7 7 * Author: Piotr Bielecki 8 8 * Author URI: https://rocksite.pro/ … … 18 18 } 19 19 20 define( 'ROCKSITE_BLOCKS_LIBRARY_VERSION', '1. 0.3' );20 define( 'ROCKSITE_BLOCKS_LIBRARY_VERSION', '1.1.1' ); 21 21 22 22 /**
Note: See TracChangeset
for help on using the changeset viewer.