Changeset 1861877
- Timestamp:
- 04/20/2018 02:21:55 PM (8 years ago)
- Location:
- bridge-addons/trunk
- Files:
-
- 5 edited
-
bb-bridge.php (modified) (1 diff)
-
classes/class-bb-bridge-loader.php (modified) (1 diff)
-
modules/bridge-button/bridge-button.php (modified) (2 diffs)
-
modules/bridge-team-member/includes/frontend.css.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
bridge-addons/trunk/bb-bridge.php
r1851116 r1861877 2 2 /** 3 3 * Plugin Name: Bridge Addons 4 * Plugin URI: http://bridgeaddons.com 5 * Description: Bridge Addons plugin extends your Bever Builder plugin with advanced modules. 6 * Version: 1.0.1 4 * Plugin URI: https://bridgeaddons.com 5 * Author URI: https://bridgeaddons.com 6 * Description: Bridge Addons plugin extends your BeaverBuilder plugin with advanced modules. 7 * Version: 1.1.0 7 8 * Author: Bridge Addons 8 9 * License: GNU General Public License v2.0 -
bridge-addons/trunk/classes/class-bb-bridge-loader.php
r1851116 r1861877 20 20 require_once BB_BRIDGE_DIR . 'modules/bridge-icon-list/bridge-icon-list.php'; 21 21 require_once BB_BRIDGE_DIR . 'modules/bridge-image/bridge-image.php'; 22 require_once BB_BRIDGE_DIR . 'modules/bridge-info-box/bridge-info-box.php'; 23 require_once BB_BRIDGE_DIR . 'modules/bridge-notification/bridge-notification.php'; 22 24 require_once BB_BRIDGE_DIR . 'modules/bridge-pricing-table/bridge-pricing-table.php'; 23 require_once BB_BRIDGE_DIR . 'modules/bridge-info-box/bridge-info-box.php';24 25 require_once BB_BRIDGE_DIR . 'modules/bridge-team-member/bridge-team-member.php'; 26 require_once BB_BRIDGE_DIR . 'modules/bridge-testimonial/bridge-testimonial.php'; 25 27 } 26 28 } -
bridge-addons/trunk/modules/bridge-button/bridge-button.php
r1851116 r1861877 11 11 'dir' => BB_BRIDGE_DIR . 'modules/bridge-button/', 12 12 'url' => BB_BRIDGE_URL . 'modules/bridge-button/', 13 'editor_export' => true, // Defaults to true and can be omitted.14 'enabled' => true, // Defaults to true and can be omitted.13 'editor_export' => true, 14 'enabled' => true, 15 15 'partial_refresh' => true, 16 16 )); … … 161 161 'fields' => array( 162 162 'icon' => array( 163 'type' => 'icon',164 'label' => __( 'Icon', 'bb-bridge' ),165 ' default' => '',163 'type' => 'icon', 164 'label' => __( 'Icon', 'bb-bridge' ), 165 'show_remove' => true, 166 166 ), 167 167 'icon_position' => array( 168 'type' => 'select',169 'label' => __( 'Icon Position', 'bb-bridge' ),170 'default' => 'before',171 'options' => array(172 'before' => __( 'Before Text', 'bb-bridge' ),173 'after' => __( 'After Text', 'bb-bridge' ),168 'type' => 'select', 169 'label' => __( 'Icon Position', 'bb-bridge' ), 170 'default' => 'before', 171 'options' => array( 172 'before' => __( 'Before Text', 'bb-bridge' ), 173 'after' => __( 'After Text', 'bb-bridge' ), 174 174 ), 175 175 ), -
bridge-addons/trunk/modules/bridge-team-member/includes/frontend.css.php
r1851116 r1861877 16 16 } 17 17 18 $padding_top = $settings->padding_top . 'px ';19 $padding_right = $settings->padding_right . 'px ';20 $padding_bottom = $settings->padding_bottom . 'px ';21 $padding_left = $settings->padding_left . 'px ';22 23 $padding = $padding_top . $padding_right . $padding_bottom . $padding_left . ';';24 18 25 19 ?> … … 46 40 47 41 .fl-node-<?php echo $id; ?> .bb-bridge-team-member-description { 48 padding: <?php echo $padding; ?>; 42 <?php if ($settings->padding_top != ''): ?> 43 padding-top: <?php echo $settings->padding_top . 'px'; ?>; 44 <?php endif; ?> 45 46 <?php if ($settings->padding_right != ''): ?> 47 padding-right: <?php echo $settings->padding_right . 'px'; ?>; 48 <?php endif; ?> 49 50 <?php if ($settings->padding_bottom != ''): ?> 51 padding-bottom: <?php echo $settings->padding_bottom . 'px'; ?>; 52 <?php endif; ?> 53 54 <?php if ($settings->padding_left != ''): ?> 55 padding-left: <?php echo $settings->padding_left . 'px'; ?>; 56 <?php endif; ?> 49 57 } -
bridge-addons/trunk/readme.txt
r1851116 r1861877 1 === Bridge Addons for Beaver Builder === 1 === Bridge Addons for BeaverBuilder === 2 Author URI: https://bridgeaddons.com 3 Plugin URI: https://bridgeaddons.com 2 4 Contributors: dejan85 3 Tags: beaver builder, beaver addons, beaver builder addons, beaver builder modules, beaver builder extensions 5 Tags: beaver builder, beaver addons, beaver builder addons, beaver builder modules, beaver builder extensions, bridge addons 4 6 Requires at least: 4.5 5 7 Tested up to: 4.9 6 Stable tag: trunk8 Stable tag: 1.1.0 7 9 Requires PHP: 5.4 8 10 License: GPLv2 or later 9 11 License URI: https://www.gnu.org/licenses/gpl-2.0.html 10 12 11 Bridge Addons plugin extends your Be verBuilder plugin with advanced modules.13 Bridge Addons plugin extends your BeaverBuilder plugin with advanced modules. 12 14 13 15 == Description == 14 16 15 Extend your Beaver Builder with 7 moremodules for free.17 Extend your BeaverBuilder with advanced modules for free. 16 18 17 19 18 * [Button](http://bridgeaddons.com/modules/button/) 19 * [Heading](http://bridgeaddons.com/modules/heading/) 20 * [Icon List](http://bridgeaddons.com/modules/icon-list/) 21 * [Image](http://bridgeaddons.com/modules/image/) 22 * [Info Box](http://bridgeaddons.com/modules/info-box/) 23 * [Pricing Table](http://bridgeaddons.com/modules/pricing-table/) 24 * [Team Member](http://bridgeaddons.com/modules/team-member/) 20 * [Button](http://bridgeaddons.com/modules/button/) - Create beautiful buttons using our button module. 21 * [Heading](http://bridgeaddons.com/modules/heading/) - Style your Headings with Headings module. 22 * [Icon List](http://bridgeaddons.com/modules/icon-list/) - Add some style to your lists with icons. 23 * [Image](http://bridgeaddons.com/modules/image/) - Shape your images with our image module. 24 * [Info Box](http://bridgeaddons.com/modules/info-box/) - Display your services with info box. 25 * [Notification](https://bridgeaddons.com/modules/notification/) - Use notification module to inform your users. 26 * [Pricing Table](http://bridgeaddons.com/modules/pricing-table/) - Display your prices using our price table module. 27 * [Team Member](http://bridgeaddons.com/modules/team-member/) - Introduce your team members using our team member module. 28 * [Testimonial](https://bridgeaddons.com/modules/testimonial/) - Display what other say about your work. 25 29 26 30 == Installation == … … 37 41 1) Install Bridge Addons either via the WordPress plugin directory or by uploading the files to your server at wp-content/plugins. 38 42 39 2) Activate Bridge Addons plugin in your dashboard 43 2) Activate Bridge Addons plugin in your dashboard. 44 45 = What are the requirements to use the Bridge Addons? = 46 47 Bridge Addons work well with all themes. Latest version of BeaverBuilder pluign is required on your site in order for Bridge Addons to work. 48 49 = Can I use Bridge Addons on client sites? = 50 51 Yes you can. 52 53 = Do I need coding experience to use Bridge Addons? = 54 55 Not at all. Bridge Addons are drag and drop modules. No coding expaience required. 40 56 41 57 42 58 == Changelog == 43 59 44 = 1.0.1 -Apr 02, 2018 = 60 = 1.1.0 - Apr 20, 2018 = 61 Added - Testimonial module. 62 Added - Notification module. 63 Fixed - Button module unable to remove icon. 64 Fixed - Team Member description padding issue. 65 66 = 1.0.1 - Apr 02, 2018 = 45 67 Fixed - Removed default bullet list from icon list module and price table module. 46 68 Fixed - Button background color.
Note: See TracChangeset
for help on using the changeset viewer.