Changeset 1015817
- Timestamp:
- 10/29/2014 10:23:41 AM (11 years ago)
- Location:
- profile-builder
- Files:
-
- 2 added
- 8 edited
- 1 copied
-
tags/2.0.4 (copied) (copied from profile-builder/trunk)
-
tags/2.0.4/assets/css/style-back-end.css (modified) (1 diff)
-
tags/2.0.4/assets/lib/class_notices.php (added)
-
tags/2.0.4/assets/lib/wck-api/wordpress-creation-kit.php (modified) (1 diff)
-
tags/2.0.4/index.php (modified) (4 diffs)
-
tags/2.0.4/readme.txt (modified) (2 diffs)
-
trunk/assets/css/style-back-end.css (modified) (1 diff)
-
trunk/assets/lib/class_notices.php (added)
-
trunk/assets/lib/wck-api/wordpress-creation-kit.php (modified) (1 diff)
-
trunk/index.php (modified) (4 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
profile-builder/tags/2.0.4/assets/css/style-back-end.css
r1011421 r1015817 68 68 .wppb-badge.Free{ 69 69 background:url(../images/logo_free.png) center 20px no-repeat #d54e21; 70 } 71 72 /* Userlist page */ 73 .wppb-ul-templates > textarea, 74 .wppb-single-ul-templates > textarea { 75 float: left; 76 width: 60%; 77 max-width: 100%; 78 height: 400px; 70 79 } 71 80 -
profile-builder/tags/2.0.4/assets/lib/wck-api/wordpress-creation-kit.php
r1011421 r1015817 413 413 414 414 415 if( $results != null){415 if( !empty( $results ) ){ 416 416 $list .= apply_filters( 'wck_metabox_content_header_'.$meta , '<thead><tr><th class="wck-number">#</th><th class="wck-content">'. __( 'Content', 'wck' ) .'</th><th class="wck-edit">'. __( 'Edit', 'wck' ) .'</th><th class="wck-delete">'. __( 'Delete', 'wck' ) .'</th></tr></thead>' ); 417 417 $i=0; -
profile-builder/tags/2.0.4/index.php
r1012789 r1015817 4 4 Plugin URI: http://www.cozmoslabs.com/wordpress-profile-builder/ 5 5 Description: Login, registration and edit profile shortcodes for the front-end. Also you can chose what fields should be displayed or add new (custom) ones both in the front-end and in the dashboard. 6 Version: 2.0. 36 Version: 2.0.4 7 7 Author: Cozmoslabs, Madalin Ungureanu, Antohe Cristian, Barina Gabriel 8 8 Author URI: http://www.cozmoslabs.com/ … … 53 53 * 54 54 */ 55 define( 'PROFILE_BUILDER_VERSION', '2.0. 3' );55 define( 'PROFILE_BUILDER_VERSION', '2.0.4' ); 56 56 define( 'WPPB_PLUGIN_DIR', WP_PLUGIN_DIR . '/' . dirname( plugin_basename( __FILE__ ) ) ); 57 57 define( 'WPPB_PLUGIN_URL', plugin_dir_url( __FILE__ ) ); … … 63 63 define( 'WPPB_TRANSLATE_DOMAIN', 'profilebuilder' ); 64 64 65 /* include notices class */ 66 if ( file_exists ( WPPB_PLUGIN_DIR.'/assets/lib/class_notices.php' ) ) 67 include_once(WPPB_PLUGIN_DIR . '/assets/lib/class_notices.php' ); 65 68 66 69 if ( file_exists ( WPPB_PLUGIN_DIR.'/modules/modules.php' ) ) … … 151 154 register_activation_hook( __FILE__, 'wppb_generate_default_settings_defaults' ); //prepoulate general settings 152 155 register_activation_hook( __FILE__, 'wppb_prepopulate_fields' ); //prepopulate manage fields list 156 157 /* Add a halloween notice */ 158 new WPPB_Add_General_Notices( 'wppb_halloween', 159 sprintf( __( '<p style="position:relative;">Halloween treat: 30% OFF on all Profile Builder purchases 29 - 30 -31 October over at %1$swww.cozmslabs.com%2$s Get your discount code! %3$sDismiss%4$s</p>', 'profilebuilder'), "<a href='http://www.cozmoslabs.com/' target='_blank' class='button-primary'>", "</a>", "<a href='". add_query_arg( 'wppb_halloween_dismiss_notification', '0' ) ."' class='wppb-dismiss-notification' style='position: absolute;right: 0;top: 50%;margin-top: -7px;'>", "</a>" ), 160 'updated halloween', 161 '28 October 2014', 162 '1 November 2014' ); -
profile-builder/tags/2.0.4/readme.txt
r1012789 r1015817 7 7 Requires at least: 3.1 8 8 Tested up to: 4.0 9 Stable tag: 2.0. 39 Stable tag: 2.0.4 10 10 11 11 Simple to use profile plugin allowing front-end login, user registration and edit profile by using shortcodes. … … 103 103 104 104 == Changelog == 105 = 2.0.4 = 106 Added $account_name as a parameter in the wppb_register_success_message filter 107 Fixed typo in password strength meeter. 108 105 109 = 2.0.3 = 106 110 Fixed bug that made radio buttons field types not to throw error when they are required -
profile-builder/trunk/assets/css/style-back-end.css
r1011421 r1015817 68 68 .wppb-badge.Free{ 69 69 background:url(../images/logo_free.png) center 20px no-repeat #d54e21; 70 } 71 72 /* Userlist page */ 73 .wppb-ul-templates > textarea, 74 .wppb-single-ul-templates > textarea { 75 float: left; 76 width: 60%; 77 max-width: 100%; 78 height: 400px; 70 79 } 71 80 -
profile-builder/trunk/assets/lib/wck-api/wordpress-creation-kit.php
r1011421 r1015817 413 413 414 414 415 if( $results != null){415 if( !empty( $results ) ){ 416 416 $list .= apply_filters( 'wck_metabox_content_header_'.$meta , '<thead><tr><th class="wck-number">#</th><th class="wck-content">'. __( 'Content', 'wck' ) .'</th><th class="wck-edit">'. __( 'Edit', 'wck' ) .'</th><th class="wck-delete">'. __( 'Delete', 'wck' ) .'</th></tr></thead>' ); 417 417 $i=0; -
profile-builder/trunk/index.php
r1012789 r1015817 4 4 Plugin URI: http://www.cozmoslabs.com/wordpress-profile-builder/ 5 5 Description: Login, registration and edit profile shortcodes for the front-end. Also you can chose what fields should be displayed or add new (custom) ones both in the front-end and in the dashboard. 6 Version: 2.0. 36 Version: 2.0.4 7 7 Author: Cozmoslabs, Madalin Ungureanu, Antohe Cristian, Barina Gabriel 8 8 Author URI: http://www.cozmoslabs.com/ … … 53 53 * 54 54 */ 55 define( 'PROFILE_BUILDER_VERSION', '2.0. 3' );55 define( 'PROFILE_BUILDER_VERSION', '2.0.4' ); 56 56 define( 'WPPB_PLUGIN_DIR', WP_PLUGIN_DIR . '/' . dirname( plugin_basename( __FILE__ ) ) ); 57 57 define( 'WPPB_PLUGIN_URL', plugin_dir_url( __FILE__ ) ); … … 63 63 define( 'WPPB_TRANSLATE_DOMAIN', 'profilebuilder' ); 64 64 65 /* include notices class */ 66 if ( file_exists ( WPPB_PLUGIN_DIR.'/assets/lib/class_notices.php' ) ) 67 include_once(WPPB_PLUGIN_DIR . '/assets/lib/class_notices.php' ); 65 68 66 69 if ( file_exists ( WPPB_PLUGIN_DIR.'/modules/modules.php' ) ) … … 151 154 register_activation_hook( __FILE__, 'wppb_generate_default_settings_defaults' ); //prepoulate general settings 152 155 register_activation_hook( __FILE__, 'wppb_prepopulate_fields' ); //prepopulate manage fields list 156 157 /* Add a halloween notice */ 158 new WPPB_Add_General_Notices( 'wppb_halloween', 159 sprintf( __( '<p style="position:relative;">Halloween treat: 30% OFF on all Profile Builder purchases 29 - 30 -31 October over at %1$swww.cozmslabs.com%2$s Get your discount code! %3$sDismiss%4$s</p>', 'profilebuilder'), "<a href='http://www.cozmoslabs.com/' target='_blank' class='button-primary'>", "</a>", "<a href='". add_query_arg( 'wppb_halloween_dismiss_notification', '0' ) ."' class='wppb-dismiss-notification' style='position: absolute;right: 0;top: 50%;margin-top: -7px;'>", "</a>" ), 160 'updated halloween', 161 '28 October 2014', 162 '1 November 2014' ); -
profile-builder/trunk/readme.txt
r1012789 r1015817 7 7 Requires at least: 3.1 8 8 Tested up to: 4.0 9 Stable tag: 2.0. 39 Stable tag: 2.0.4 10 10 11 11 Simple to use profile plugin allowing front-end login, user registration and edit profile by using shortcodes. … … 103 103 104 104 == Changelog == 105 = 2.0.4 = 106 Added $account_name as a parameter in the wppb_register_success_message filter 107 Fixed typo in password strength meeter. 108 105 109 = 2.0.3 = 106 110 Fixed bug that made radio buttons field types not to throw error when they are required
Note: See TracChangeset
for help on using the changeset viewer.