Plugin Directory

Changeset 1168145


Ignore:
Timestamp:
05/27/2015 03:41:32 AM (11 years ago)
Author:
woorockets
Message:

Release version: 2.5.0

Location:
wr-pagebuilder/trunk
Files:
5 added
7 edited

Legend:

Unmodified
Added
Removed
  • wr-pagebuilder/trunk/README.txt

    r1140371 r1168145  
    124124 * Fixed display problem of Google map element on resizing browser
    125125 * Added parameter 'Scrollwheel Zooming' to Google map element
     126
     127 = 2.5.0 =
     128
     129 * Fixed broken lines in Price Table Element
     130 * Fixed Alt attribute missing for images in carousel
     131 * Added Share element
  • wr-pagebuilder/trunk/core/converter/visual-composer.php

    r1000337 r1168145  
    8484            ),
    8585        ),
     86        'vc_message' => array(
     87            'tag' => 'wr_share',
     88            'attributes' => array(
     89                'color'    => 'alert_style',
     90                'el_class' => 'css_suffix',
     91            ),
     92        ),
    8693
    8794        'vc_toggle' => array(
  • wr-pagebuilder/trunk/core/helper/shortcode.php

    r1119552 r1168145  
    6464
    6565            // Compare current provides vs stored providers
    66             if ( $providers == $Wr_Sc_Providers ) {
    67                 return ;
    68             }
     66//          if ( $providers == $Wr_Sc_Providers ) {
     67//              return ;
     68//          }
    6969
    7070            // Update providers data
  • wr-pagebuilder/trunk/core/helper/type.php

    r1129341 r1168145  
    112112            );
    113113        }
     114
     115        /**
     116         ** share type options
     117         *
     118         * @return array
     119         */
     120        static function get_share_type() {
     121            return array(
     122                'left' => __( 'Left', WR_PBL ),
     123                'center' => __( 'Center', WR_PBL ),
     124                'right'    => __( 'Right', WR_PBL ),
     125            );
     126        }
    114127
    115128        /**
  • wr-pagebuilder/trunk/shortcodes/carousel/item/carousel.php

    r1026157 r1168145  
    5959                        'std'   => __( WR_Pb_Utils_Placeholder::add_placeholder( 'Carousel Item %s', 'index' ), WR_PBL ),
    6060            ),
     61            array(
     62                        'name'  => __( 'Alt Description', WR_PBL ),
     63                        'id'    => 'alt',
     64                        'type'  => 'text_field',
     65                        'class' => 'input-sm',
     66                        'std'   => __( WR_Pb_Utils_Placeholder::add_placeholder( 'Item description  %s', 'index' ), WR_PBL ),
     67            ),
    6168            array(
    6269                        'name' => __( 'Body', WR_PBL ),
     
    8895            extract( shortcode_atts( $this->config['params'], $atts ) );
    8996            $content_class = ! empty( $image_file ) ? 'carousel-caption' : 'carousel-content';
    90             $img           = ! empty( $image_file ) ? "<img width='{WIDTH}' height='{HEIGHT}' src='$image_file' style='height : {HEIGHT}px;'>" : '';
     97            $img           = ! empty( $image_file ) ? "<img width='{WIDTH}' height='{HEIGHT}' src='$image_file' alt='$alt' style='height : {HEIGHT}px;'>" : '';
    9198
    9299            // remove image shortcode in content
  • wr-pagebuilder/trunk/shortcodes/pricing-table/assets/js/pricing_table_frontend.js

    r1000337 r1168145  
    2525            "type"         : "iframe"
    2626        });
     27
     28        var c_li_first = $('.wr-prtbl-cols.first .wr-prtbl-features li');
     29        c_col_not_first = $('.wr-prtbl-cols:not(.first)');
     30        avg_height = $('.wr-prtbl-cols:not(.first) .wr-prtbl-header').height();
     31        i = 0;
     32        c_li_first.each(function () {
     33            height = $(this).height();
     34            c_col_not_first.each(function(){
     35                $(this).find('.wr-prtbl-features li').eq(i).height(height);
     36            });
     37            i++;
     38        });
     39
     40        c_col_not_first.each(function(){
     41            lgt = $(this).find('.wr-prtbl-header .wr-prtbl-meta p').length;
     42            if(lgt >0){
     43                $('.wr-prtbl-cols.first .wr-prtbl-header').height(avg_height);
     44                return false;
     45            }
     46        });
     47
    2748    });
    2849
  • wr-pagebuilder/trunk/wr-pagebuilder.php

    r1140371 r1168145  
    44 * Plugin URI:  http://www.woorockets.com
    55 * Description: Awesome content builder for Wordpress websites
    6  * Version:     2.4.12
     6 * Version:     2.5.0
    77 * Author:      WooRockets Team <[email protected]>
    88 * Author URI:  http://www.wordpress.org/plugins/wr-pagebuilder
Note: See TracChangeset for help on using the changeset viewer.