Plugin Directory

Changeset 3116011


Ignore:
Timestamp:
07/11/2024 04:50:25 AM (20 months ago)
Author:
solwininfotech
Message:

social stream designer plugin version 1.3

Location:
social-stream-design/trunk
Files:
1 added
13 edited

Legend:

Unmodified
Added
Removed
  • social-stream-design/trunk/admin/assets/class-ssdfeedsactions.php

    r3009969 r3116011  
    225225                            'post_title'                => sanitize_text_field( $feed['post_title'] ),
    226226                            'post_description'          => sanitize_textarea_field( $feed['post_description'] ),
    227                             'post_date'                 => sanitize_text_field( $feed['post_date'] ),
     227                            'post_date'                 => isset( $feed['post_date'] ) ? sanitize_text_field( $feed['post_date'] ) : '',
    228228                            'post_link'                 => esc_url_raw( $feed['post_link'] ),
    229229                            'type_in'                   => sanitize_text_field( $feed['type_in'] ),
  • social-stream-design/trunk/admin/assets/feeds/class-ssdadminfacebookfeeds.php

    r3009969 r3116011  
    143143                return new WP_Error( 'ssd-feeds-errors', esc_html__( 'Please enter', 'social-stream-design' ) . esc_html( ' Page ID' ) );
    144144            }
    145             $url       = 'https://graph.facebook.com/v4.0/' . $fb_page_id . '/posts?fields=id,created_time,full_picture,attachments{media,subattachments},story,status_type,message,from,likes.summary(true),comments.summary(true),permalink_url,sharedposts&access_token=' . $fb_accesstoken;
     145            $url       = 'https://graph.facebook.com/v19.0/' . $fb_page_id . '/posts?fields=id,created_time,full_picture,attachments{media,subattachments},story,status_type,message,from,likes.summary(true),comments.summary(true),permalink_url,sharedposts&access_token=' . $fb_accesstoken;
    146146            $get_feeds = Wp_Social_Stream_Main::ssd_get_data_from_remote_url( $url );
    147147
     
    252252            }
    253253
    254             $url = 'https://graph.facebook.com/v4.0/' . $album_id . '/photos?fields=likes.summary(true),comments.summary(true),shares,id,created_time,from,message,name,object_id,picture,full_picture,attachments{media,subattachments},source,link,type&access_token=' . $fb_accesstoken;
    255 
     254            $url = 'https://graph.facebook.com/v19.0/' . $album_id . '/photos?fields=likes.summary(true),comments.summary(true),shares,id,created_time,from,message,name,object_id,picture,full_picture,attachments{media,subattachments},source,link,type&access_token=' . $fb_accesstoken;
    256255            $get_feeds      = Wp_Social_Stream_Main::ssd_get_data_from_remote_url( $url );
    257256            $posts          = json_decode( $get_feeds, true );
  • social-stream-design/trunk/admin/assets/feeds/class-ssdadmininstagramfeeds.php

    r3009969 r3116011  
    150150        if ( is_array( $posts ) && ! empty( $posts ) ) {
    151151            foreach ( $posts as $post ) {
     152                $timestamp = strtotime($post->timestamp);
     153                $publsh_date = date('Y-m-d H:i:s', $timestamp);
    152154                $post_description = ( isset( $post->caption ) && null !== $post->caption ) ? $post->caption : '';
    153155                $post_user_name   = $post->username;
     
    195197                        $feeds['post_user_name']            = $post->username;
    196198                        $feeds['post_link']                 = $post->permalink;
    197                         $feeds['post_date']                 = $post->timestamp;
     199                        $feeds['post_date']                 = $publsh_date ;
    198200                        $feeds['post_comment_count']        = '';
    199201                        $feeds['post_likes_count']          = '';
     
    265267                        $feeds['post_user_name']            = $post->username;
    266268                        $feeds['post_link']                 = $post->permalink;
    267                         $feeds['post_date']                 = $post->timestamp;
     269                        $feeds['post_date']                 = $publsh_date;
    268270                        $feeds['post_comment_count']        = '';
    269271                        $feeds['post_likes_count']          = '';
     
    327329                        $feeds['post_description'] = ( isset( $post->caption ) && null !== $post->caption ) ? $post->caption : '';
    328330                        $feeds['url']              = $post->media_url;
    329                         if ( 'CAROUSEL_ALBUM' === $media_type ) {
     331                        if ('CAROUSEL_ALBUM' === $media_type && is_object($carousel_media_image) && property_exists($carousel_media_image, 'media_url')) {
    330332                            $feeds['url'] = $carousel_media_image->media_url;
    331333                        }
    332334                        $feeds['post_user_name']            = $post->username;
    333335                        $feeds['post_link']                 = $post->permalink;
    334                         $feeds['post_date']                 = $post->timestamp;
     336                        $feeds['post_date']                 = $publsh_date ;
    335337                        $feeds['post_comment_count']        = '';
    336338                        $feeds['post_likes_count']          = '';
  • social-stream-design/trunk/admin/assets/social-stream-add-layout.php

    r3069314 r3116011  
    104104$ssd_display_social_icon       = '1';
    105105$ssd_content_limit             = '';
     106$ssd_display_title_post_break  = 'break-all';
     107$ssd_display_title_post_size   = '1';
    106108
    107109
     
    249251}
    250252?>
    251 <div class="wrap"> <!-- wrap start -->   
     253<div class="wrap"> <!-- wrap start -->
    252254    <?php
    253255    settings_errors();
     
    260262                    echo esc_html_e( 'Layout has been added successfully.', 'social-stream-design' ) . '&nbsp;';
    261263                    ?>
    262                     <a href="<?php echo esc_url( get_the_permalink( $ssd_page ) ); ?>" target="_blank"><?php echo esc_html_e( 'View Layout', 'social-stream-design' ); ?></a>
     264                    <a href="<?php echo esc_url( get_the_permalink( $ssd_page ) ); ?>"
     265                        target="_blank"><?php echo esc_html_e( 'View Layout', 'social-stream-design' ); ?></a>
    263266                    <?php
    264267                } else {
     
    277280                    echo esc_html_e( 'Layout has been updated successfully.', 'social-stream-design' ) . '&nbsp;';
    278281                    ?>
    279                     <a href="<?php echo esc_url( get_the_permalink( $ssd_page ) ); ?>" target="_blank"><?php echo esc_html_e( 'View Layout', 'social-stream-design' ); ?></a>
     282                    <a href="<?php echo esc_url( get_the_permalink( $ssd_page ) ); ?>"
     283                        target="_blank"><?php echo esc_html_e( 'View Layout', 'social-stream-design' ); ?></a>
    280284                    <?php
    281285                } else {
     
    298302    } elseif ( isset( $_REQUEST['duplicate'] ) && 'true' == $_REQUEST['duplicate'] ) {
    299303        ?>
    300     <div class="updated notice">
    301         <p>
    302         <?php
    303             esc_html_e( 'Layout has been duplicated successfully.', 'social-stream-design' );
    304         ?>
    305         </p>
    306     </div>
     304        <div class="updated notice">
     305            <p>
     306                <?php
     307                esc_html_e( 'Layout has been duplicated successfully.', 'social-stream-design' );
     308                ?>
     309            </p>
     310        </div>
    307311        <?php
    308312    } elseif ( isset( $_REQUEST['reset'] ) && '1' == $_REQUEST['reset'] ) {
    309313        ?>
    310     <div class="updated notice">
    311         <p>
    312         <?php
    313             esc_html_e( 'Layout has been reset successfully.', 'social-stream-design' );
    314         ?>
    315         </p>
    316     </div>
     314        <div class="updated notice">
     315            <p>
     316                <?php
     317                esc_html_e( 'Layout has been reset successfully.', 'social-stream-design' );
     318                ?>
     319            </p>
     320        </div>
    317321        <?php
    318322    }
     
    331335                        $shortcode_id = isset( $_REQUEST['id'] ) ? intval( $_REQUEST['id'] ) : '';
    332336                        ?>
    333                         <input type="text" readonly="" onclick="this.select()" class="copy_shortcode" title="Copy Shortcode"  value='[social_stream_feeds id="<?php echo intval( $shortcode_id ); ?>"]'>
     337                        <input type="text" readonly="" onclick="this.select()" class="copy_shortcode" title="Copy Shortcode"
     338                            value='[social_stream_feeds id="<?php echo intval( $shortcode_id ); ?>"]'>
    334339                        <?php
    335340                    }
     
    339344            <?php wp_nonce_field( 'social-stream-designer_meta_box_nonce', 'ssd_nonce' ); ?>
    340345            <input type="hidden" id="ssd_section" class="ssd_section" name="ssd_section" value="ssd_generalsettings">
    341             <input type="hidden" id="ssd_edit_action"  name="ssd_edit_action" value="<?php echo esc_attr( $edit_action ); ?>">
    342             <input type="hidden" id="ssd_edit_id"  name="ssd_edit_id" value="<?php echo intval( $edit_id ); ?>">
    343             <div class="stm-hdr ssdstm-ly-hdr" >
     346            <input type="hidden" id="ssd_edit_action" name="ssd_edit_action"
     347                value="<?php echo esc_attr( $edit_action ); ?>">
     348            <input type="hidden" id="ssd_edit_id" name="ssd_edit_id" value="<?php echo intval( $edit_id ); ?>">
     349            <div class="stm-hdr ssdstm-ly-hdr">
    344350                <h3><?php esc_html_e( 'Social Stream Layout Settings', 'social-stream-design' ); ?></h3>
    345351                <p class="submit">
    346                         <a id="ssd-btn-sw-prv" disabled="disabled" title="<?php esc_html_e( 'Show Preview', 'social-stream-design' ); ?>" class="button show_preview button-primary" href="#">
    347                             <span><?php esc_html_e( 'Preview', 'social-stream-design' ); ?></span>
    348                         </a>
     352                    <a id="ssd-btn-sw-prv" disabled="disabled"
     353                        title="<?php esc_html_e( 'Show Preview', 'social-stream-design' ); ?>"
     354                        class="button show_preview button-primary" href="#">
     355                        <span><?php esc_html_e( 'Preview', 'social-stream-design' ); ?></span>
     356                    </a>
     357                    <?php
     358                    if ( isset( $_GET['action'] ) && ( 'edit' === $_GET['action'] ) && isset( $_GET['id'] ) && ( '' != $_GET['id'] ) && ( '0' != $_GET['id'] ) ) {
     359                        ?>
     360                        <input name="ssd_reset_layout" id="ssd_reset_layout" class="button button-primary"
     361                            value="<?php esc_html_e( 'Reset', 'social-stream-design' ); ?>" type="reset"
     362                            data-id="<?php echo intval( $_GET['id'] ); ?>">
    349363                        <?php
    350                         if ( isset( $_GET['action'] ) && ( 'edit' === $_GET['action'] ) && isset( $_GET['id'] ) && ( '' != $_GET['id'] ) && ( '0' != $_GET['id'] ) ) {
    351                             ?>
    352                             <input name="ssd_reset_layout" id="ssd_reset_layout" class="button button-primary" value="<?php esc_html_e( 'Reset', 'social-stream-design' ); ?>" type="reset" data-id="<?php echo intval( $_GET['id'] ); ?>">
    353                             <?php
    354                         }
    355                         ?>
    356                     <input name="submit" id="submit" class="button button-primary" value="<?php esc_html_e( 'Save', 'social-stream-design' ); ?>" type="submit">
     364                    }
     365                    ?>
     366                    <input name="submit" id="submit" class="button button-primary"
     367                        value="<?php esc_html_e( 'Save', 'social-stream-design' ); ?>" type="submit">
    357368                </p>
    358369            </div>
     
    362373                    <ul class="ssd_stream-setting-handle">
    363374                        <li data-show="ssd_generalsettings" class="ssd_generalsettings layout_tabs">
    364                             <i class="fas fa-cog"></i><span><?php esc_html_e( 'General Settings', 'social-stream-design' ); ?></span>
     375                            <i
     376                                class="fas fa-cog"></i><span><?php esc_html_e( 'General Settings', 'social-stream-design' ); ?></span>
    365377                        </li>
    366378                        <li data-show="selectcardsettings" class="selectcardsettings layout_tabs">
    367                             <i class="far fa-address-card"></i><span><?php esc_html_e( 'Select Card Layout', 'social-stream-design' ); ?></span>
     379                            <i
     380                                class="far fa-address-card"></i><span><?php esc_html_e( 'Select Card Layout', 'social-stream-design' ); ?></span>
    368381                        </li>
    369382                        <li data-show="layoutsettings" class="layoutsettings layout_tabs">
    370                             <i class="fas fa-th-large"></i><span><?php esc_html_e( 'Layout Settings', 'social-stream-design' ); ?></span>
     383                            <i
     384                                class="fas fa-th-large"></i><span><?php esc_html_e( 'Layout Settings', 'social-stream-design' ); ?></span>
    371385                        </li>
    372386                        <li data-show="cardsettings" class="cardsettings layout_tabs">
    373                             <i class="far fa-address-card"></i><span><?php esc_html_e( 'Card Settings', 'social-stream-design' ); ?></span>
     387                            <i
     388                                class="far fa-address-card"></i><span><?php esc_html_e( 'Card Settings', 'social-stream-design' ); ?></span>
    374389                        </li>
    375390                        <li data-show="sharelabelsettings" class="sharelabelsettings">
    376                             <i class="far fa-share-square"></i><span><?php esc_html_e( 'Share Icon Settings', 'social-stream-design' ); ?></span>
     391                            <i
     392                                class="far fa-share-square"></i><span><?php esc_html_e( 'Share Icon Settings', 'social-stream-design' ); ?></span>
    377393                        </li>
    378394                        <li data-show="titlesettings" class="titlesettings">
    379                             <i class="fas fa-text-width"></i><span><?php esc_html_e( 'Title Settings', 'social-stream-design' ); ?></span>
     395                            <i
     396                                class="fas fa-text-width"></i><span><?php esc_html_e( 'Title Settings', 'social-stream-design' ); ?></span>
    380397                        </li>
    381398                        <li data-show="contentsettings" class="contentsettings">
    382                             <i class="far fa-file-alt"></i><span><?php esc_html_e( 'Content Settings', 'social-stream-design' ); ?></span>
     399                            <i
     400                                class="far fa-file-alt"></i><span><?php esc_html_e( 'Content Settings', 'social-stream-design' ); ?></span>
    383401                        </li>
    384402                        <li data-show="mediasettings" class="mediasettings">
    385                             <i class="far fa-images"></i><span><?php esc_html_e( 'Media Settings', 'social-stream-design' ); ?></span>
     403                            <i
     404                                class="far fa-images"></i><span><?php esc_html_e( 'Media Settings', 'social-stream-design' ); ?></span>
    386405                        </li>
    387406                        <li data-show="authorsettings" class="authorsettings">
    388                             <i class="far fa-user"></i><span><?php esc_html_e( 'Author Content Settings', 'social-stream-design' ); ?></span>
     407                            <i
     408                                class="far fa-user"></i><span><?php esc_html_e( 'Author Content Settings', 'social-stream-design' ); ?></span>
    389409                        </li>
    390410                        <li data-show="ssd_countsettings" class="ssd_countsettings">
    391                             <i class="far fa-comments"></i><span><?php esc_html_e( 'Count Bar Settings', 'social-stream-design' ); ?></span>
     411                            <i
     412                                class="far fa-comments"></i><span><?php esc_html_e( 'Count Bar Settings', 'social-stream-design' ); ?></span>
    392413                        </li>
    393414                        <li data-show="paginationsettings" class="paginationsettings">
    394                             <i class="fas fa-sort-numeric-down"></i><span><?php esc_html_e( 'Pagination Settings', 'social-stream-design' ); ?></span>
     415                            <i
     416                                class="fas fa-sort-numeric-down"></i><span><?php esc_html_e( 'Pagination Settings', 'social-stream-design' ); ?></span>
    395417                        </li>
    396418                        <li data-show="ssd_popupsettings" class="ssd_popupsettings">
    397                             <i class="far fa-window-restore"></i><span><?php esc_html_e( 'Popup Settings', 'social-stream-design' ); ?></span>
     419                            <i
     420                                class="far fa-window-restore"></i><span><?php esc_html_e( 'Popup Settings', 'social-stream-design' ); ?></span>
    398421                        </li>
    399422                    </ul>
     
    413436                                                if ( isset( $feeds_settings['feed_status'] ) && 'Active' == $feeds_settings['feed_status'] ) {
    414437                                                    $feeds_array[ $single_feed->id ] =
    415                                                     array(
    416                                                         $single_feed->id => $feeds_settings['feed_name'],
    417                                                         'feed_type' => $feeds_settings['feed'],
    418                                                     );
     438                                                        array(
     439                                                            $single_feed->id => $feeds_settings['feed_name'],
     440                                                            'feed_type' => $feeds_settings['feed'],
     441                                                        );
    419442                                                }
    420443                                            }
    421444                                        }
    422                                             $no_feeds_message = '';
    423                                             $all_feeds        = '';
    424                                             $feed_object      = new WpSSDFeedsActions();
    425                                             $feed_object->init();
    426                                             $all_feeds = $feed_object->ssd_get_all_feeds();
     445                                        $no_feeds_message = '';
     446                                        $all_feeds        = '';
     447                                        $feed_object      = new WpSSDFeedsActions();
     448                                        $feed_object->init();
     449                                        $all_feeds = $feed_object->ssd_get_all_feeds();
    427450                                        if ( '' == $all_feeds ) {
    428451                                            $no_feeds_message = "You haven't added any feeds yet. Please add feeds first";
     
    435458                                        if ( '' !== $no_feeds_message ) {
    436459                                            ?>
    437                                             <p style="margin-top: 0px;margin-bottom: 8px;"><span class="ssd-warning description"><?php echo esc_html( $no_feeds_message ); ?></span></p>
     460                                            <p style="margin-top: 0px;margin-bottom: 8px;"><span
     461                                                    class="ssd-warning description"><?php echo esc_html( $no_feeds_message ); ?></span>
     462                                            </p>
    438463                                            <?php
    439464                                        }
    440465                                        ?>
    441                                         <select multiple="multiple" id="ssdssstrm" class="layout ssd_stream_select" name="ssd[feed_ids][]" required="" >
     466                                        <select multiple="multiple" id="ssdssstrm" class="layout ssd_stream_select"
     467                                            name="ssd[feed_ids][]" required="">
    442468                                            <?php
    443469                                            foreach ( $feeds_array as $feed_array ) {
     
    445471                                                    if ( 'feed_type' != $key && '' != $value ) {
    446472                                                        ?>
    447                                                         <option data-feed_type="<?php echo esc_attr( $feeds_array[ $key ]['feed_type'] ); ?>" value="<?php echo esc_html( $key ); ?>"
    448                                                             <?php
    449                                                             if ( is_array( $ssd_feed_ids ) ) {
    450                                                                 if ( in_array( $key, $ssd_feed_ids ) ) {
    451                                                                     echo 'selected="selected"';
    452                                                                 }
    453                                                             }
    454                                                             ?>
    455                                                             >
     473                                                        <option
     474                                                            data-feed_type="<?php echo esc_attr( $feeds_array[ $key ]['feed_type'] ); ?>"
     475                                                            value="<?php echo esc_html( $key ); ?>"
     476                                                                              <?php
     477                                                                                if ( is_array( $ssd_feed_ids ) ) {
     478                                                                                    if ( in_array( $key, $ssd_feed_ids ) ) {
     479                                                                                        echo 'selected="selected"';
     480                                                                                    }
     481                                                                                }
     482                                                                                ?>
     483                                                                 >
    456484                                                            <?php echo esc_html( $value ); ?>
    457485                                                        </option>
     
    462490                                            ?>
    463491                                        </select>
    464                                         <p class="description"><?php esc_html_e( 'Select the feeds which you have created in feeds tab.', 'social-stream-design' ); ?></p>
     492                                        <p class="description">
     493                                            <?php esc_html_e( 'Select the feeds which you have created in feeds tab.', 'social-stream-design' ); ?>
     494                                        </p>
    465495                                    </td>
    466496                                </tr>
     
    468498                                    <td><?php esc_html_e( 'Title', 'social-stream-design' ); ?></td>
    469499                                    <td>
    470                                         <input type="text" name="ssd_title" value="<?php echo esc_attr( $ssd_title ); ?>">
    471                                         <p class="description"><?php esc_html_e( 'Enter the layout title. This will not display on frontend it is only for the identification on layout listing page.', 'social-stream-design' ); ?></p>
    472                                     </td>
    473                                 </tr>                               
     500                                        <input type="text" name="ssd_title"
     501                                            value="<?php echo esc_attr( $ssd_title ); ?>">
     502                                        <p class="description">
     503                                            <?php esc_html_e( 'Enter the layout title. This will not display on frontend it is only for the identification on layout listing page.', 'social-stream-design' ); ?>
     504                                        </p>
     505                                    </td>
     506                                </tr>
    474507                                <tr>
    475508                                    <td><?php esc_html_e( 'Select Page for Stream', 'social-stream-design' ); ?></td>
    476509                                    <td>
    477                                         <select class="stream_page ssd_stream_select" name="ssd[ssd_stream_page]" >
    478                                             <option value=""><?php esc_html_e( 'Select Page', 'social-stream-design' ); ?></option>
     510                                        <select class="stream_page ssd_stream_select" name="ssd[ssd_stream_page]">
     511                                            <option value="">
     512                                                <?php esc_html_e( 'Select Page', 'social-stream-design' ); ?></option>
    479513                                            <?php
    480                                                 $pages_s = get_pages();
     514                                            $pages_s = get_pages();
    481515                                            foreach ( $pages_s as $page_s ) {
    482516                                                ?>
    483                                             <option value="<?php echo intval( $page_s->ID ); ?>"  <?php echo ( $ssd_page == $page_s->ID ) ? ' selected="selected"' : ''; ?>><?php echo esc_attr( $page_s->post_title ); ?></option>
     517                                                <option value="<?php echo intval( $page_s->ID ); ?>" <?php echo ( $ssd_page == $page_s->ID ) ? ' selected="selected"' : ''; ?>>
     518                                                    <?php echo esc_attr( $page_s->post_title ); ?></option>
    484519                                                <?php
    485520                                            }
    486521                                            ?>
    487522                                        </select>
    488                                         <p class="description"><?php esc_html_e( 'Select the page for display layout', 'social-stream-design' ); ?></p>
    489                                         <p><span class="ssd-warning description"><?php esc_html_e( 'Caution', 'social-stream-design' ); ?>:</span>&nbsp;&nbsp;<span class="description"><?php esc_html_e( 'You are about to select the page for your layout, you will lost your page content. There is no undo. Think about it!', 'social-stream-design' ); ?></span></p>
     523                                        <p class="description">
     524                                            <?php esc_html_e( 'Select the page for display layout', 'social-stream-design' ); ?>
     525                                        </p>
     526                                        <p><span
     527                                                class="ssd-warning description"><?php esc_html_e( 'Caution', 'social-stream-design' ); ?>:</span>&nbsp;&nbsp;<span
     528                                                class="description"><?php esc_html_e( 'You are about to select the page for your layout, you will lost your page content. There is no undo. Think about it!', 'social-stream-design' ); ?></span>
     529                                        </p>
    490530                                    </td>
    491531                                </tr>
     
    494534                                    <td>
    495535                                        <div class="ssd-col-xs-4">
    496                                             <select id="ssd_social_stream_order_by" class="ssd_stream_select" name="ssd[ssd_order_by]" >
    497                                                 <option value="rand" <?php echo ( 'rand' === $ssd_order_by ) ? ' selected="selected"' : ''; ?>><?php echo esc_html( 'Random' ); ?></option>
    498                                                 <option value="date" <?php echo ( 'date' === $ssd_order_by ) ? ' selected="selected"' : ''; ?>><?php echo esc_html( 'Date' ); ?></option>
    499                                                 <option value="social-media" <?php echo ( 'social-media' === $ssd_order_by ) ? ' selected="selected"' : ''; ?>><?php echo esc_html( 'Social Media' ); ?></option>
     536                                            <select id="ssd_social_stream_order_by" class="ssd_stream_select"
     537                                                name="ssd[ssd_order_by]">
     538                                                <option value="rand" <?php echo ( 'rand' === $ssd_order_by ) ? ' selected="selected"' : ''; ?>><?php echo esc_html( 'Random' ); ?>
     539                                                </option>
     540                                                <option value="date" <?php echo ( 'date' === $ssd_order_by ) ? ' selected="selected"' : ''; ?>><?php echo esc_html( 'Date' ); ?>
     541                                                </option>
     542                                                <option value="social-media" <?php echo ( 'social-media' === $ssd_order_by ) ? ' selected="selected"' : ''; ?>>
     543                                                    <?php echo esc_html( 'Social Media' ); ?></option>
    500544                                            </select>
    501545                                        </div>
    502                                         <p class="description"><?php esc_html_e( 'Select parameter to sort feeds. If you select "Social media" option then all the same social media feeds are display together.', 'social-stream-design' ); ?></p>
     546                                        <p class="description">
     547                                            <?php esc_html_e( 'Select parameter to sort feeds. If you select "Social media" option then all the same social media feeds are display together.', 'social-stream-design' ); ?>
     548                                        </p>
    503549                                    </td>
    504550                                </tr>
     
    507553                                    <td>
    508554                                        <div class="radio-group">
    509                                             <input type="radio" id="display_order_yes" class="display_order yes" name="ssd[ssd_display_order]" value="1" <?php echo ( 1 == $ssd_display_order ) ? ' checked="checked"' : ''; ?>><label for="display_order_yes"><?php echo esc_html( 'Ascending' ); ?></label>
    510                                             <input type="radio" id="display_order_no" class="display_order no" name="ssd[ssd_display_order]" value="0" <?php echo ( 0 == $ssd_display_order ) ? ' checked="checked"' : ''; ?> ><label for="display_order_no"><?php echo esc_html( 'Descending' ); ?></label>
    511                                         </div>
    512                                         <p class="description"><?php esc_html_e( 'Ascending order from lowest to highest values ( 1,2,3; a,b,c) or Descending order from highest to lowest values (3, 2, 1; c, b, a).', 'social-stream-design' ); ?></p>
     555                                            <input type="radio" id="display_order_yes" class="display_order yes"
     556                                                name="ssd[ssd_display_order]" value="1" <?php echo ( 1 == $ssd_display_order ) ? ' checked="checked"' : ''; ?>><label
     557                                                for="display_order_yes"><?php echo esc_html( 'Ascending' ); ?></label>
     558                                            <input type="radio" id="display_order_no" class="display_order no"
     559                                                name="ssd[ssd_display_order]" value="0" <?php echo ( 0 == $ssd_display_order ) ? ' checked="checked"' : ''; ?>><label
     560                                                for="display_order_no"><?php echo esc_html( 'Descending' ); ?></label>
     561                                        </div>
     562                                        <p class="description">
     563                                            <?php esc_html_e( 'Ascending order from lowest to highest values ( 1,2,3; a,b,c) or Descending order from highest to lowest values (3, 2, 1; c, b, a).', 'social-stream-design' ); ?>
     564                                        </p>
    513565                                    </td>
    514566                                </tr>
    515567                                <tr class="disable_li">
    516                                     <td><i class="fa fa-lock"></i>&nbsp;<?php esc_html_e( 'Private Stream', 'social-stream-design' ); ?></td>
    517                                     <td>
    518                                         <div class="radio-group">
    519                                             <input type="radio" id="display_private_stream_yes" class="display_order yes" name="ssd[ssd_display_private_stream]" value="1" <?php echo ( 1 == $ssd_display_private_stream ) ? ' checked="checked"' : ''; ?>><label for="display_private_stream_yes"><?php esc_html_e( 'Yes', 'social-stream-design' ); ?></label>
    520                                             <input type="radio" id="display_private_stream_no" class="display_order no" name="ssd[ssd_display_private_stream]" value="0" <?php echo ( 0 == $ssd_display_private_stream ) ? ' checked="checked"' : ''; ?> ><label for="display_private_stream_no"><?php esc_html_e( 'No', 'social-stream-design' ); ?></label>
    521                                         </div>
    522                                         <p class="description"><?php esc_html_e( 'Show only for logged in users.', 'social-stream-design' ); ?></p>
     568                                    <td><i
     569                                            class="fa fa-lock"></i>&nbsp;<?php esc_html_e( 'Private Stream', 'social-stream-design' ); ?>
     570                                    </td>
     571                                    <td>
     572                                        <div class="radio-group">
     573                                            <input type="radio" id="display_private_stream_yes"
     574                                                class="display_order yes" name="ssd[ssd_display_private_stream]"
     575                                                value="1" <?php echo ( 1 == $ssd_display_private_stream ) ? ' checked="checked"' : ''; ?>><label
     576                                                for="display_private_stream_yes"><?php esc_html_e( 'Yes', 'social-stream-design' ); ?></label>
     577                                            <input type="radio" id="display_private_stream_no" class="display_order no"
     578                                                name="ssd[ssd_display_private_stream]" value="0" <?php echo ( 0 == $ssd_display_private_stream ) ? ' checked="checked"' : ''; ?>><label
     579                                                for="display_private_stream_no"><?php esc_html_e( 'No', 'social-stream-design' ); ?></label>
     580                                        </div>
     581                                        <p class="description">
     582                                            <?php esc_html_e( 'Show only for logged in users.', 'social-stream-design' ); ?>
     583                                        </p>
    523584                                    </td>
    524585                                </tr>
    525586                                <tr class="disable_li">
    526                                     <td><i class="fa fa-lock"></i>&nbsp;<?php esc_html_e( 'Hide Stream on a Desktop', 'social-stream-design' ); ?></td>
    527                                     <td>
    528                                         <div class="radio-group">
    529                                             <input type="radio" id="hide_desktop_stream_yes" class="display_order yes" name="ssd[ssd_hide_desktop_stream]" value="1" <?php echo ( 1 == $ssd_hide_desktop_stream ) ? ' checked="checked"' : ''; ?>><label for="hide_desktop_stream_yes"><?php esc_html_e( 'Yes', 'social-stream-design' ); ?></label>
    530                                             <input type="radio" id="hide_desktop_stream_no" class="display_order no" name="ssd[ssd_hide_desktop_stream]" value="0" <?php echo ( 0 == $ssd_hide_desktop_stream ) ? ' checked="checked"' : ''; ?> ><label for="hide_desktop_stream_no"><?php esc_html_e( 'No', 'social-stream-design' ); ?></label>
    531                                         </div>
    532                                         <p class="description"><b><?php esc_html_e( 'Note', 'social-stream-design' ); ?></b> : <?php esc_html_e( 'If you want to create mobiles specific stream only.', 'social-stream-design' ); ?></p>
     587                                    <td><i
     588                                            class="fa fa-lock"></i>&nbsp;<?php esc_html_e( 'Hide Stream on a Desktop', 'social-stream-design' ); ?>
     589                                    </td>
     590                                    <td>
     591                                        <div class="radio-group">
     592                                            <input type="radio" id="hide_desktop_stream_yes" class="display_order yes"
     593                                                name="ssd[ssd_hide_desktop_stream]" value="1" <?php echo ( 1 == $ssd_hide_desktop_stream ) ? ' checked="checked"' : ''; ?>><label
     594                                                for="hide_desktop_stream_yes"><?php esc_html_e( 'Yes', 'social-stream-design' ); ?></label>
     595                                            <input type="radio" id="hide_desktop_stream_no" class="display_order no"
     596                                                name="ssd[ssd_hide_desktop_stream]" value="0" <?php echo ( 0 == $ssd_hide_desktop_stream ) ? ' checked="checked"' : ''; ?>><label
     597                                                for="hide_desktop_stream_no"><?php esc_html_e( 'No', 'social-stream-design' ); ?></label>
     598                                        </div>
     599                                        <p class="description">
     600                                            <b><?php esc_html_e( 'Note', 'social-stream-design' ); ?></b> :
     601                                            <?php esc_html_e( 'If you want to create mobiles specific stream only.', 'social-stream-design' ); ?>
     602                                        </p>
    533603                                    </td>
    534604                                </tr>
    535605                                <tr class="disable_li">
    536                                     <td><i class="fa fa-lock"></i>&nbsp;<?php esc_html_e( 'Hide Stream on a Mobile', 'social-stream-design' ); ?></td>
    537                                     <td>
    538                                         <div class="radio-group">
    539                                             <input type="radio" id="hide_mobile_stream_yes" class="display_order yes" name="ssd[ssd_hide_mobile_stream]" value="1" <?php echo ( 1 == $ssd_hide_mobile_stream ) ? ' checked="checked"' : ''; ?>><label for="hide_mobile_stream_yes"><?php esc_html_e( 'Yes', 'social-stream-design' ); ?></label>
    540                                             <input type="radio" id="hide_mobile_stream_no" class="display_order no" name="ssd[ssd_hide_mobile_stream]" value="0" <?php echo ( 0 == $ssd_hide_mobile_stream ) ? ' checked="checked"' : ''; ?> ><label for="hide_mobile_stream_no"><?php esc_html_e( 'No', 'social-stream-design' ); ?></label>
    541                                         </div>
    542                                         <p class="description"><b><?php esc_html_e( 'Note', 'social-stream-design' ); ?></b> : <?php esc_html_e( 'If you want to show stream content only on desktop.', 'social-stream-design' ); ?></p>
     606                                    <td><i
     607                                            class="fa fa-lock"></i>&nbsp;<?php esc_html_e( 'Hide Stream on a Mobile', 'social-stream-design' ); ?>
     608                                    </td>
     609                                    <td>
     610                                        <div class="radio-group">
     611                                            <input type="radio" id="hide_mobile_stream_yes" class="display_order yes"
     612                                                name="ssd[ssd_hide_mobile_stream]" value="1" <?php echo ( 1 == $ssd_hide_mobile_stream ) ? ' checked="checked"' : ''; ?>><label
     613                                                for="hide_mobile_stream_yes"><?php esc_html_e( 'Yes', 'social-stream-design' ); ?></label>
     614                                            <input type="radio" id="hide_mobile_stream_no" class="display_order no"
     615                                                name="ssd[ssd_hide_mobile_stream]" value="0" <?php echo ( 0 == $ssd_hide_mobile_stream ) ? ' checked="checked"' : ''; ?>><label
     616                                                for="hide_mobile_stream_no"><?php esc_html_e( 'No', 'social-stream-design' ); ?></label>
     617                                        </div>
     618                                        <p class="description">
     619                                            <b><?php esc_html_e( 'Note', 'social-stream-design' ); ?></b> :
     620                                            <?php esc_html_e( 'If you want to show stream content only on desktop.', 'social-stream-design' ); ?>
     621                                        </p>
    543622                                    </td>
    544623                                </tr>
     
    547626                                    <td>
    548627                                        <div class="radio-group">
    549                                             <input type="radio" id="display_meta_yes" class="ssd_display_post_meta yes" name="ssd[ssd_display_meta]" value="1" <?php echo ( 1 == $ssd_display_meta ) ? ' checked="checked"' : ''; ?>><label for="display_meta_yes"><?php esc_html_e( 'Yes', 'social-stream-design' ); ?></label>
    550                                             <input type="radio" id="ssd_display_meta_no" class="ssd_display_post_meta no" name="ssd[ssd_display_meta]" value="0" <?php echo ( 0 == $ssd_display_meta ) ? ' checked="checked"' : ''; ?> ><label for="ssd_display_meta_no"><?php esc_html_e( 'No', 'social-stream-design' ); ?></label>
    551                                         </div>
    552                                         <p class="description"><b><?php esc_html_e( 'Note', 'social-stream-design' ); ?></b> : <?php esc_html_e( 'Display comments, like, dislikes, views, tweets in each post.', 'social-stream-design' ); ?></p>
     628                                            <input type="radio" id="display_meta_yes" class="ssd_display_post_meta yes"
     629                                                name="ssd[ssd_display_meta]" value="1" <?php echo ( 1 == $ssd_display_meta ) ? ' checked="checked"' : ''; ?>><label
     630                                                for="display_meta_yes"><?php esc_html_e( 'Yes', 'social-stream-design' ); ?></label>
     631                                            <input type="radio" id="ssd_display_meta_no"
     632                                                class="ssd_display_post_meta no" name="ssd[ssd_display_meta]" value="0"
     633                                                <?php echo ( 0 == $ssd_display_meta ) ? ' checked="checked"' : ''; ?>><label
     634                                                for="ssd_display_meta_no"><?php esc_html_e( 'No', 'social-stream-design' ); ?></label>
     635                                        </div>
     636                                        <p class="description">
     637                                            <b><?php esc_html_e( 'Note', 'social-stream-design' ); ?></b> :
     638                                            <?php esc_html_e( 'Display comments, like, dislikes, views, tweets in each post.', 'social-stream-design' ); ?>
     639                                        </p>
    553640                                    </td>
    554641                                </tr>
     
    556643                                    <td><?php esc_html_e( 'Custom CSS', 'social-stream-design' ); ?></td>
    557644                                    <td>
    558                                                                             <textarea placeholder="<?php echo esc_html( '.class_name{ color:#ffffff }' ); ?>" name="ssd[ssd_custom_css]"><?php echo isset( $ssd_settings['ssd_custom_css'] ) ? esc_html( $ssd_settings['ssd_custom_css'] ) : ''; ?></textarea>
     645                                        <textarea
     646                                            placeholder="<?php echo esc_html( '.class_name{ color:#ffffff }' ); ?>"
     647                                            name="ssd[ssd_custom_css]"><?php echo isset( $ssd_settings['ssd_custom_css'] ) ? esc_html( $ssd_settings['ssd_custom_css'] ) : ''; ?></textarea>
    559648                                    </td>
    560649                                </tr>
     
    578667                                                }
    579668                                                ?>
    580                                                 <div class="ssd_item-template layout-<?php echo intval( $i ); ?>">
     669                                                <div data-id="<?php echo intval( $i ); ?>" class="ssd_item-template layout-<?php echo intval( $i ); ?>">
    581670                                                    <label class="ssd_item-content
    582671                                                    <?php
    583672                                                    if ( $class === $ssd_design_layout ) {
    584                                                         echo esc_attr( 'selected' ); }
    585                                                         echo esc_attr( $disble_class );
     673                                                        echo esc_attr( 'selected' );
     674                                                    }
     675                                                    echo esc_attr( $disble_class );
    586676                                                    ?>
    587                                                     "
    588                                                         for="ssd_design_layout_<?php echo intval( $i ); ?>">
    589                                                         <img src="<?php echo esc_url( WPSOCIALSTREAMDESIGNER_URL ) . '/images/style-' . intval( $i ) . '.png'; ?>" >
     677                                                    " for="ssd_design_layout_<?php echo intval( $i ); ?>">
     678                                                        <img
     679                                                            src="<?php echo esc_url( WPSOCIALSTREAMDESIGNER_URL ) . '/images/style-' . intval( $i ) . '.png'; ?>">
    590680                                                        <?php if ( $i < 3 ) { ?>
    591                                                         <input id="ssd_design_layout_<?php echo intval( $i ); ?>" type="radio" name="ssd[ssd_design_layout]"
    592                                                             <?php checked( $ssd_design_layout, $class ); ?> value="layout-<?php echo intval( $i ); ?>">
     681                                                            <input id="ssd_design_layout_<?php echo intval( $i ); ?>"
     682                                                                type="radio" name="ssd[ssd_design_layout]" <?php checked( $ssd_design_layout, $class ); ?>
     683                                                                value="layout-<?php echo intval( $i ); ?>">
    593684                                                            <?php
    594685                                                        }
    595686                                                        if ( $i > 2 ) {
    596687                                                            ?>
    597                                                         <span class="disable_div_l"><i class="fa fa-lock"></i></span>
     688                                                            <span class="disable_div_l"><i class="fa fa-lock"></i></span>
    598689                                                        <?php } ?>
    599690                                                    </label>
     
    603694                                            ?>
    604695                                        </div>
    605                                         <p class="description"><?php esc_html_e( 'Select the layout which is more suitable as per your requirement.', 'social-stream-design' ); ?></p>
     696                                        <p class="description">
     697                                            <?php esc_html_e( 'Select the layout which is more suitable as per your requirement.', 'social-stream-design' ); ?>
     698                                        </p>
    606699                                    </td>
    607700                                    <td>
     
    624717                                        }
    625718                                        ?>
    626                                         <h4 class="text-center"><?php esc_html_e( 'Drag and Drop Builder', 'social-stream-design' ); ?></h4>
    627                                         <div class="ssd-col-item ssd-container ssd-col <?php echo esc_attr( $ssd_design_layout . ' ' . $ssd_extra_class . ' ssd-' . $ssd_social_share_type ); ?>">
     719                                        <h4 class="text-center">
     720                                            <?php esc_html_e( 'Drag and Drop Builder', 'social-stream-design' ); ?></h4>
     721                                        <div
     722                                            class="ssd-col-item ssd-container ssd-col <?php echo esc_attr( $ssd_design_layout . ' ' . $ssd_extra_class . ' ssd-' . $ssd_social_share_type ); ?>">
    628723                                            <div class="ssd-card facebook">
    629724                                                <ul id="sortable" data-shortcode-id="<?php echo intval( $id_ss ); ?>">
    630                                                 <?php
    631                                                 $ssd_social_order_c = count( $ssd_social_order );
    632                                                 for ( $i = 0; $i < $ssd_social_order_c; $i++ ) {
    633                                                     if ( 'title' === $ssd_social_order[ $i ] ) {
    634                                                         ?>
    635                                                         <li class="" data-order="title">
    636                                                             <h3><?php esc_html_e( '41 landing page optimization best practices', 'social-stream-design' ); ?></h3>
    637                                                         </li>
    638                                                         <?php
    639                                                     }
    640                                                     if ( 'content' === $ssd_social_order[ $i ] ) {
    641                                                         ?>
    642                                                         <li class="" data-order="content">
    643                                                             <p style="margin:0"><?php echo esc_html( 'At ornare ullamcorper potenti pulvinar wisi. Nibh faucibus nec duis elit eleifend accumsan libero sociis metus id feugiat. Quis interdum senectus. Luctus etiam consequat adipiscing lobortis nec. Massa wisi cras.' ); ?></p>
    644                                                         </li>
    645                                                         <?php
    646                                                     }
    647                                                     if ( 'social-share' === $ssd_social_order[ $i ] ) {
    648                                                         ?>
    649                                                         <li class=" ssd-social-share-sortable" data-order="social-share">
    650                                                             <div class="facebook-cover"><i class="fab fa-facebook-f"></i><?php esc_html_e( 'Facebook', 'social-stream-design' ); ?></div>
    651                                                         </li>
    652                                                         <?php
    653                                                     }
    654                                                     if ( 'media' === $ssd_social_order[ $i ] ) {
    655                                                         ?>
    656                                                         <li class=" ssd-media-sortable" data-order="media">
    657                                                             <img src="<?php echo esc_url( WPSOCIALSTREAMDESIGNER_URL ) . '/images/layout-media.png'; ?>" alt="<?php esc_html_e( 'Sample Image', 'social-stream-design' ); ?>">
    658                                                         </li>
    659                                                         <?php
    660                                                     }
    661                                                     if ( 'author' === $ssd_social_order[ $i ] ) {
    662                                                         ?>
    663                                                         <li class=" ssd-author-sortable" data-order="author">
    664                                                             <div class="ssd-author-detail">
    665                                                                 <div class='ssd-author-image'></div>
    666                                                                 <div class="ssd-author-name">
    667                                                                     <a href=''><?php esc_html_e( 'Solwin Infotech', 'social-stream-design' ); ?></a>
    668                                                                     <a href=''>
    669                                                                     <?php
    670                                                                     esc_html_e( 'SolwinInfotech', 'social-stream-design' );
    671                                                                     echo ' - ';
    672                                                                     esc_html_e( '3h ago', 'social-stream-design' );
    673                                                                     ?>
     725                                                    <?php
     726                                                    $ssd_social_order_c = count( $ssd_social_order );
     727                                                    for ( $i = 0; $i < $ssd_social_order_c; $i++ ) {
     728                                                        if ( 'title' === $ssd_social_order[ $i ] ) {
     729                                                            ?>
     730                                                            <li class="" data-order="title">
     731                                                                <h3><?php esc_html_e( '41 landing page optimization best practices', 'social-stream-design' ); ?>
     732                                                                </h3>
     733                                                            </li>
     734                                                            <?php
     735                                                        }
     736                                                        if ( 'content' === $ssd_social_order[ $i ] ) {
     737                                                            ?>
     738                                                            <li class="" data-order="content">
     739                                                                <p style="margin:0">
     740                                                                    <?php echo esc_html( 'At ornare ullamcorper potenti pulvinar wisi. Nibh faucibus nec duis elit eleifend accumsan libero sociis metus id feugiat. Quis interdum senectus. Luctus etiam consequat adipiscing lobortis nec. Massa wisi cras.' ); ?>
     741                                                                </p>
     742                                                            </li>
     743                                                            <?php
     744                                                        }
     745                                                        if ( 'social-share' === $ssd_social_order[ $i ] ) {
     746                                                            ?>
     747                                                            <li class=" ssd-social-share-sortable" data-order="social-share">
     748                                                                <div class="facebook-cover"><i
     749                                                                        class="fab fa-facebook-f"></i><?php esc_html_e( 'Facebook', 'social-stream-design' ); ?>
     750                                                                </div>
     751                                                            </li>
     752                                                            <?php
     753                                                        }
     754                                                        if ( 'media' === $ssd_social_order[ $i ] ) {
     755                                                            ?>
     756                                                            <li class=" ssd-media-sortable" data-order="media">
     757                                                                <img src="<?php echo esc_url( WPSOCIALSTREAMDESIGNER_URL ) . '/images/layout-media.png'; ?>"
     758                                                                    alt="<?php esc_html_e( 'Sample Image', 'social-stream-design' ); ?>">
     759                                                            </li>
     760                                                            <?php
     761                                                        }
     762                                                        if ( 'author' === $ssd_social_order[ $i ] ) {
     763                                                            ?>
     764                                                            <li class=" ssd-author-sortable" data-order="author">
     765                                                                <div class="ssd-author-detail">
     766                                                                    <div class='ssd-author-image'></div>
     767                                                                    <div class="ssd-author-name">
     768                                                                        <a
     769                                                                            href=''><?php esc_html_e( 'Solwin Infotech', 'social-stream-design' ); ?></a>
     770                                                                        <a href=''>
     771                                                                            <?php
     772                                                                            esc_html_e( 'SolwinInfotech', 'social-stream-design' );
     773                                                                            echo ' - ';
     774                                                                            esc_html_e( '3h ago', 'social-stream-design' );
     775                                                                            ?>
     776                                                                        </a>
     777                                                                    </div>
     778                                                                </div>
     779                                                            </li>
     780                                                            <?php
     781                                                        }
     782                                                        if ( 'count' === $ssd_social_order[ $i ] ) {
     783                                                            ?>
     784                                                            <li class="" data-order="count">
     785                                                                <div class="ssd-action-row">
     786                                                                    <a href="">
     787                                                                        <i class='fas fa-eye'></i>
     788                                                                        <span class='ssd-counts'>17</span>
     789                                                                    </a>
     790                                                                    <a href="">
     791                                                                        <i class='fas fa-comments'></i>
     792                                                                        <span class='ssd-counts'>46</span>
     793                                                                    </a>
     794                                                                    <a href="">
     795                                                                        <i class='fas fa-heart'></i>
     796                                                                        <span class='ssd-counts'>46</span>
     797                                                                    </a>
     798                                                                    <a href="">
     799                                                                        <i class='far fa-thumbs-up'></i>
     800                                                                        <span class='ssd-counts'>5</span>
    674801                                                                    </a>
    675802                                                                </div>
    676                                                             </div>
    677                                                         </li>
    678                                                         <?php
     803                                                            </li>
     804                                                            <?php
     805                                                        }
    679806                                                    }
    680                                                     if ( 'count' === $ssd_social_order[ $i ] ) {
    681                                                         ?>
    682                                                         <li class="" data-order="count">
    683                                                             <div class="ssd-action-row">
    684                                                                 <a href="">
    685                                                                     <i class='fas fa-eye'></i>
    686                                                                     <span class='ssd-counts'>17</span>
    687                                                                 </a>
    688                                                                 <a href="">
    689                                                                     <i class='fas fa-comments'></i>
    690                                                                     <span class='ssd-counts'>46</span>
    691                                                                 </a>
    692                                                                 <a href="">
    693                                                                     <i class='fas fa-heart'></i>
    694                                                                     <span class='ssd-counts'>46</span>
    695                                                                 </a>
    696                                                                 <a href="">
    697                                                                     <i class='far fa-thumbs-up'></i>
    698                                                                     <span class='ssd-counts'>5</span>
    699                                                                 </a>
    700                                                             </div>
    701                                                         </li>
    702                                                         <?php
    703                                                     }
    704                                                 }
    705                                                 ?>
     807                                                    ?>
    706808                                                </ul>
    707809                                            </div>
    708810                                        </div>
    709                                         <p class="description"><?php esc_html_e( 'You can drag and drop element up and down. In layout 2 and layout 3 you can not change the position of author box.', 'social-stream-design' ); ?></p>
     811                                        <p class="description">
     812                                            <?php esc_html_e( 'You can drag and drop element up and down. In layout 2 and layout 3 you can not change the position of author box.', 'social-stream-design' ); ?>
     813                                        </p>
    710814                                    </td>
    711815                                </tr>
     
    723827                                    <td>
    724828                                        <div class="ssd-col-xs-5">
    725                                             <select id="ssdsstmly" class="layout ssd_stream_select" name="ssd[ssd_layout]" >
    726                                                 <option value="listing" selected="selected"><?php echo esc_html( 'Listing' ); ?></option>
    727                                                 <option value="" disabled><i class="fa fa-lock"></i>&nbsp;<?php echo esc_html( 'Slider' ); ?></option>
    728                                                 <option value="" disabled><i class="fa fa-lock"></i>&nbsp;<?php echo esc_html( 'Timeline' ); ?></option>
     829                                            <select id="ssdsstmly" class="layout ssd_stream_select"
     830                                                name="ssd[ssd_layout]">
     831                                                <option value="listing" selected="selected">
     832                                                    <?php echo esc_html( 'Listing' ); ?></option>
     833                                                <option value="" disabled><i
     834                                                        class="fa fa-lock"></i>&nbsp;<?php echo esc_html( 'Slider' ); ?>
     835                                                </option>
     836                                                <option value="" disabled><i
     837                                                        class="fa fa-lock"></i>&nbsp;<?php echo esc_html( 'Timeline' ); ?>
     838                                                </option>
    729839                                            </select>
    730840                                        </div>
    731841                                    </td>
    732842                                </tr>
    733                                 <tr class="ssd_display_columns" >
    734                                     <td>
    735                                     <?php
    736                                     esc_html_e( 'Number of Feeds in One Row', 'social-stream-design' );
    737                                     echo esc_html( ' (Desktop)' );
    738                                     ?>
    739                                     </td>
    740                                     <td>
    741                                         <div class="ssd-col-xs-2">
    742                                             <select id="column_type" class="ssd_stream_select column_type" name="ssd[ssd_column_type]" >
     843                                <tr class="ssd_display_columns">
     844                                    <td>
     845                                        <?php
     846                                        esc_html_e( 'Number of Feeds in One Row', 'social-stream-design' );
     847                                        echo esc_html( ' (Desktop)' );
     848                                        ?>
     849                                    </td>
     850                                    <td>
     851                                        <div class="ssd-col-xs-2">
     852                                            <select id="column_type" class="ssd_stream_select column_type"
     853                                                name="ssd[ssd_column_type]">
    743854                                                <option value="1" <?php echo ( '1' == $ssd_column_type ) ? ' selected="selected"' : ''; ?>>1</option>
    744855                                                <option value="2" <?php echo ( '2' == $ssd_column_type ) ? ' selected="selected"' : ''; ?>>2</option>
     
    748859                                        </div>
    749860                                        <p class="description">
     861                                            <?php
     862                                            esc_html_e( 'Enter the number of feeds to display in one row', 'social-stream-design' );
     863                                            echo esc_html( ' (Screen Size 1200px and above)' );
     864                                            ?>
     865                                        </p>
     866                                    </td>
     867                                </tr>
     868                                <tr class="ssd_display_columns">
     869                                    <td>
    750870                                        <?php
    751                                         esc_html_e( 'Enter the number of feeds to display in one row', 'social-stream-design' );
    752                                         echo esc_html( ' (Screen Size 1200px and above)' );
     871                                        esc_html_e( 'Number of Feeds in One Row', 'social-stream-design' );
     872                                        echo esc_html( ' (Laptop)' );
    753873                                        ?>
    754                                         </p>
    755                                     </td>
    756                                 </tr>
    757                                 <tr class="ssd_display_columns" >
    758                                     <td>
    759                                     <?php
    760                                     esc_html_e( 'Number of Feeds in One Row', 'social-stream-design' );
    761                                     echo esc_html( ' (Laptop)' );
    762                                     ?>
    763                                     </td>
    764                                     <td>
    765                                         <div class="ssd-col-xs-2">
    766                                             <select id="column_type_laptop" class="ssd_stream_select column_type_laptop" name="ssd[ssd_column_type_laptop]" >
     874                                    </td>
     875                                    <td>
     876                                        <div class="ssd-col-xs-2">
     877                                            <select id="column_type_laptop" class="ssd_stream_select column_type_laptop"
     878                                                name="ssd[ssd_column_type_laptop]">
    767879                                                <option value="1" <?php echo ( '1' == $ssd_column_type_laptop ) ? ' selected="selected"' : ''; ?>>1</option>
    768880                                                <option value="2" <?php echo ( '2' == $ssd_column_type_laptop ) ? ' selected="selected"' : ''; ?>>2</option>
     
    772884                                        </div>
    773885                                        <p class="description">
     886                                            <?php
     887                                            esc_html_e( 'Enter the number of feeds to display in one row', 'social-stream-design' );
     888                                            echo esc_html( ' (Minimum Screen Size 1024px and Maximum Screen Size 1200px)' );
     889                                            ?>
     890                                        </p>
     891                                    </td>
     892                                </tr>
     893                                <tr class="ssd_display_columns">
     894                                    <td>
    774895                                        <?php
    775                                         esc_html_e( 'Enter the number of feeds to display in one row', 'social-stream-design' );
    776                                         echo esc_html( ' (Minimum Screen Size 1024px and Maximum Screen Size 1200px)' );
     896                                        esc_html_e( 'Number of Feeds in One Row', 'social-stream-design' );
     897                                        echo esc_html( ' (Rotated Tablet)' );
    777898                                        ?>
    778                                         </p>
    779                                     </td>
    780                                 </tr>
    781                                 <tr class="ssd_display_columns" >
    782                                     <td>
    783                                     <?php
    784                                     esc_html_e( 'Number of Feeds in One Row', 'social-stream-design' );
    785                                     echo esc_html( ' (Rotated Tablet)' );
    786                                     ?>
    787                                     </td>
    788                                     <td>
    789                                         <div class="ssd-col-xs-2">
    790                                             <select id="column_type_rotated_tablet" class="ssd_stream_select column_type_rotated_tablet" name="ssd[ssd_column_type_rotated_tablet]" >
     899                                    </td>
     900                                    <td>
     901                                        <div class="ssd-col-xs-2">
     902                                            <select id="column_type_rotated_tablet"
     903                                                class="ssd_stream_select column_type_rotated_tablet"
     904                                                name="ssd[ssd_column_type_rotated_tablet]">
    791905                                                <option value="1" <?php echo ( '1' == $ssd_column_type_rotated_tablet ) ? ' selected="selected"' : ''; ?>>1</option>
    792906                                                <option value="2" <?php echo ( '2' == $ssd_column_type_rotated_tablet ) ? ' selected="selected"' : ''; ?>>2</option>
     
    796910                                        </div>
    797911                                        <p class="description">
     912                                            <?php
     913                                            esc_html_e( 'Enter the number of feeds to display in one row', 'social-stream-design' );
     914                                            echo esc_html( ' (Minimum Screen Size 767px and Maximum Screen Size 1024px)' );
     915                                            ?>
     916                                        </p>
     917                                    </td>
     918                                </tr>
     919                                <tr class="ssd_display_columns">
     920                                    <td>
    798921                                        <?php
    799                                         esc_html_e( 'Enter the number of feeds to display in one row', 'social-stream-design' );
    800                                         echo esc_html( ' (Minimum Screen Size 767px and Maximum Screen Size 1024px)' );
     922                                        esc_html_e( 'Number of Feeds in One Row', 'social-stream-design' );
     923                                        echo esc_html( ' (Tablet)' );
    801924                                        ?>
    802                                         </p>
    803                                     </td>
    804                                 </tr>
    805                                 <tr class="ssd_display_columns" >
    806                                     <td>
    807                                     <?php
    808                                     esc_html_e( 'Number of Feeds in One Row', 'social-stream-design' );
    809                                     echo esc_html( ' (Tablet)' );
    810                                     ?>
    811                                     </td>
    812                                     <td>
    813                                         <div class="ssd-col-xs-2">
    814                                             <select id="column_type_tablet" class="ssd_stream_select column_type_tablet" name="ssd[ssd_column_type_tablet]" >
     925                                    </td>
     926                                    <td>
     927                                        <div class="ssd-col-xs-2">
     928                                            <select id="column_type_tablet" class="ssd_stream_select column_type_tablet"
     929                                                name="ssd[ssd_column_type_tablet]">
    815930                                                <option value="1" <?php echo ( '1' == $ssd_column_type_tablet ) ? ' selected="selected"' : ''; ?>>1</option>
    816931                                                <option value="2" <?php echo ( '2' == $ssd_column_type_tablet ) ? ' selected="selected"' : ''; ?>>2</option>
     
    820935                                        </div>
    821936                                        <p class="description">
     937                                            <?php
     938                                            esc_html_e( 'Enter the number of feeds to display in one row', 'social-stream-design' );
     939                                            echo esc_html( ' (Minimum Screen Size 480px and Maximum Screen Size 767px)' );
     940                                            ?>
     941                                        </p>
     942                                    </td>
     943                                </tr>
     944                                <tr class="ssd_display_columns">
     945                                    <td>
    822946                                        <?php
    823                                         esc_html_e( 'Enter the number of feeds to display in one row', 'social-stream-design' );
    824                                         echo esc_html( ' (Minimum Screen Size 480px and Maximum Screen Size 767px)' );
     947                                        esc_html_e( 'Number of Feeds in One Row', 'social-stream-design' );
     948                                        echo esc_html( ' (Rotated Mobile)' );
    825949                                        ?>
    826                                         </p>
    827                                     </td>
    828                                 </tr>
    829                                 <tr class="ssd_display_columns" >
    830                                     <td>
    831                                     <?php
    832                                     esc_html_e( 'Number of Feeds in One Row', 'social-stream-design' );
    833                                     echo esc_html( ' (Rotated Mobile)' );
    834                                     ?>
    835                                     </td>
    836                                     <td>
    837                                         <div class="ssd-col-xs-2">
    838                                             <select id="column_type_rotated_mobile" class="ssd_stream_select column_type_rotated_mobile" name="ssd[ssd_column_type_rotated_mobile]" >
     950                                    </td>
     951                                    <td>
     952                                        <div class="ssd-col-xs-2">
     953                                            <select id="column_type_rotated_mobile"
     954                                                class="ssd_stream_select column_type_rotated_mobile"
     955                                                name="ssd[ssd_column_type_rotated_mobile]">
    839956                                                <option value="1" <?php echo ( '1' == $ssd_column_type_rotated_mobile ) ? ' selected="selected"' : ''; ?>>1</option>
    840957                                                <option value="2" <?php echo ( '2' == $ssd_column_type_rotated_mobile ) ? ' selected="selected"' : ''; ?>>2</option>
     
    842959                                        </div>
    843960                                        <p class="description">
     961                                            <?php
     962                                            esc_html_e( 'Enter the number of feeds to display in one row', 'social-stream-design' );
     963                                            echo esc_html( ' (Minimum Screen Size 380px and Maximum Screen Size 480px)' );
     964                                            ?>
     965                                        </p>
     966                                    </td>
     967                                </tr>
     968                                <tr class="ssd_display_columns">
     969                                    <td>
    844970                                        <?php
    845                                         esc_html_e( 'Enter the number of feeds to display in one row', 'social-stream-design' );
    846                                         echo esc_html( ' (Minimum Screen Size 380px and Maximum Screen Size 480px)' );
     971                                        esc_html_e( 'Number of Feeds in One Row', 'social-stream-design' );
     972                                        echo esc_html( ' (Mobile)' );
    847973                                        ?>
    848                                         </p>
    849                                     </td>
    850                                 </tr>
    851                                 <tr class="ssd_display_columns" >
    852                                     <td>
    853                                     <?php
    854                                     esc_html_e( 'Number of Feeds in One Row', 'social-stream-design' );
    855                                     echo esc_html( ' (Mobile)' );
    856                                     ?>
    857                                     </td>
    858                                     <td>
    859                                         <div class="ssd-col-xs-2">
    860                                             <select id="column_type_mobile" class="ssd_stream_select column_type_mobile" name="ssd[ssd_column_type_mobile]" >
     974                                    </td>
     975                                    <td>
     976                                        <div class="ssd-col-xs-2">
     977                                            <select id="column_type_mobile" class="ssd_stream_select column_type_mobile"
     978                                                name="ssd[ssd_column_type_mobile]">
    861979                                                <option value="1" <?php echo ( '1' == $ssd_column_type_mobile ) ? ' selected="selected"' : ''; ?>>1</option>
    862980                                                <option value="2" <?php echo ( '2' == $ssd_column_type_mobile ) ? ' selected="selected"' : ''; ?>>2</option>
     
    864982                                        </div>
    865983                                        <p class="description">
    866                                         <?php
    867                                         esc_html_e( 'Enter the number of feeds to display in one row', 'social-stream-design' );
    868                                         echo esc_html( ' (Screen Size 380px and below)' );
    869                                         ?>
     984                                            <?php
     985                                            esc_html_e( 'Enter the number of feeds to display in one row', 'social-stream-design' );
     986                                            echo esc_html( ' (Screen Size 380px and below)' );
     987                                            ?>
    870988                                        </p>
    871989                                    </td>
     
    875993                                    <td>
    876994                                        <div class="radio-group">
    877                                             <input type="radio" id="display_share_with_yes" class="display_share_with yes" name="ssd[ssd_display_share_with]" value="1" <?php echo ( 1 == $ssd_display_share_with ) ? ' checked="checked"' : ''; ?>><label for="display_share_with_yes"><?php esc_html_e( 'Yes', 'social-stream-design' ); ?></label>
    878                                             <input type="radio" id="ssd_display_share_with_no" class="display_share_with no" name="ssd[ssd_display_share_with]" value="0" <?php echo ( 0 == $ssd_display_share_with ) ? ' checked="checked"' : ''; ?> ><label for="ssd_display_share_with_no"><?php esc_html_e( 'No', 'social-stream-design' ); ?></label>
    879                                         </div>
    880                                         <p class="description"><?php esc_html_e( 'Show/Hide share icon. With this you can share you feeds on multiple social media.', 'social-stream-design' ); ?></p>
     995                                            <input type="radio" id="display_share_with_yes"
     996                                                class="display_share_with yes" name="ssd[ssd_display_share_with]"
     997                                                value="1" <?php echo ( 1 == $ssd_display_share_with ) ? ' checked="checked"' : ''; ?>><label
     998                                                for="display_share_with_yes"><?php esc_html_e( 'Yes', 'social-stream-design' ); ?></label>
     999                                            <input type="radio" id="ssd_display_share_with_no"
     1000                                                class="display_share_with no" name="ssd[ssd_display_share_with]"
     1001                                                value="0" <?php echo ( 0 == $ssd_display_share_with ) ? ' checked="checked"' : ''; ?>><label
     1002                                                for="ssd_display_share_with_no"><?php esc_html_e( 'No', 'social-stream-design' ); ?></label>
     1003                                        </div>
     1004                                        <p class="description">
     1005                                            <?php esc_html_e( 'Show/Hide share icon. With this you can share you feeds on multiple social media.', 'social-stream-design' ); ?>
     1006                                        </p>
    8811007                                    </td>
    8821008                                </tr>
    8831009                                <tr class="disable_li">
    884                                     <td><i class="fa fa-lock"></i>&nbsp;<?php esc_html_e( 'Display Filter', 'social-stream-design' ); ?></td>
    885                                     <td>
    886                                         <div class="radio-group">
    887                                             <input type="radio" id="ssd_display_filter_yes" class="ssd_display_filter yes" name="" value="" ><label for="ssd_display_filter_yes"><?php esc_html_e( 'Yes', 'social-stream-design' ); ?></label>
    888                                             <input type="radio" id="ssd_display_filter_no" class="ssd_display_filter no" name="" value="" checked="checked"><label for="ssd_display_filter_no"><?php esc_html_e( 'No', 'social-stream-design' ); ?></label>
    889                                         </div>
    890                                         <p class="description"><?php esc_html_e( 'Show/Hide filter on frontend', 'social-stream-design' ); ?></p>
     1010                                    <td><i
     1011                                            class="fa fa-lock"></i>&nbsp;<?php esc_html_e( 'Display Filter', 'social-stream-design' ); ?>
     1012                                    </td>
     1013                                    <td>
     1014                                        <div class="radio-group">
     1015                                            <input type="radio" id="ssd_display_filter_yes"
     1016                                                class="ssd_display_filter yes" name="" value=""><label
     1017                                                for="ssd_display_filter_yes"><?php esc_html_e( 'Yes', 'social-stream-design' ); ?></label>
     1018                                            <input type="radio" id="ssd_display_filter_no" class="ssd_display_filter no"
     1019                                                name="" value="" checked="checked"><label
     1020                                                for="ssd_display_filter_no"><?php esc_html_e( 'No', 'social-stream-design' ); ?></label>
     1021                                        </div>
     1022                                        <p class="description">
     1023                                            <?php esc_html_e( 'Show/Hide filter on frontend', 'social-stream-design' ); ?>
     1024                                        </p>
    8911025                                    </td>
    8921026                                </tr>
    8931027                                <tr class="disable_li">
    894                                     <td><i class="fa fa-lock"></i>&nbsp;<?php esc_html_e( 'Display Search', 'social-stream-design' ); ?></td>
    895                                     <td>
    896                                         <div class="radio-group">
    897                                             <input type="radio" id="display_search_yes" class="display_search yes" name="ssd[ssd_display_search]" value="1" <?php echo ( 1 == $ssd_display_search ) ? ' checked="checked"' : ''; ?>><label for="display_search_yes"><?php esc_html_e( 'Yes', 'social-stream-design' ); ?></label>
    898                                             <input type="radio" id="display_search_no" class="display_search no" name="ssd[ssd_display_search]" value="0" <?php echo ( 0 == $ssd_display_search ) ? ' checked="checked"' : ''; ?> ><label for="display_search_no"><?php esc_html_e( 'No', 'social-stream-design' ); ?></label>
    899                                         </div>
    900                                         <p class="description"><b><?php esc_html_e( 'Note', 'social-stream-design' ); ?></b> : <?php esc_html_e( 'Available only for listing layouts.', 'social-stream-design' ); ?></p>
     1028                                    <td><i
     1029                                            class="fa fa-lock"></i>&nbsp;<?php esc_html_e( 'Display Search', 'social-stream-design' ); ?>
     1030                                    </td>
     1031                                    <td>
     1032                                        <div class="radio-group">
     1033                                            <input type="radio" id="display_search_yes" class="display_search yes"
     1034                                                name="ssd[ssd_display_search]" value="1" <?php echo ( 1 == $ssd_display_search ) ? ' checked="checked"' : ''; ?>><label
     1035                                                for="display_search_yes"><?php esc_html_e( 'Yes', 'social-stream-design' ); ?></label>
     1036                                            <input type="radio" id="display_search_no" class="display_search no"
     1037                                                name="ssd[ssd_display_search]" value="0" <?php echo ( 0 == $ssd_display_search ) ? ' checked="checked"' : ''; ?>><label
     1038                                                for="display_search_no"><?php esc_html_e( 'No', 'social-stream-design' ); ?></label>
     1039                                        </div>
     1040                                        <p class="description">
     1041                                            <b><?php esc_html_e( 'Note', 'social-stream-design' ); ?></b> :
     1042                                            <?php esc_html_e( 'Available only for listing layouts.', 'social-stream-design' ); ?>
     1043                                        </p>
    9011044                                    </td>
    9021045                                </tr>
     
    9041047                                    <td><?php esc_html_e( 'Theme Color', 'social-stream-design' ); ?></td>
    9051048                                    <td>
    906                                         <input type="text" id="ssd_theme_color" class="ssd_theme_color ssd_cpa-color-picker" name="ssd[ssd_theme_color]" value="<?php echo esc_attr( $ssd_theme_color ); ?>">
     1049                                        <input type="text" id="ssd_theme_color"
     1050                                            class="ssd_theme_color ssd_cpa-color-picker" name="ssd[ssd_theme_color]"
     1051                                            value="<?php echo esc_attr( $ssd_theme_color ); ?>">
    9071052                                    </td>
    9081053                                </tr>
     
    9101055                                    <td><?php esc_html_e( 'Background color', 'social-stream-design' ); ?></td>
    9111056                                    <td>
    912                                         <input type="text" id="ssd_overlay_bg_color" class="ssd_overlay_bg_color ssd_cpa-color-picker" name="ssd[ssd_overlay_bg_color]" value="<?php echo esc_attr( $ssd_overlay_bg_color ); ?>">
     1057                                        <input type="text" id="ssd_overlay_bg_color"
     1058                                            class="ssd_overlay_bg_color ssd_cpa-color-picker"
     1059                                            name="ssd[ssd_overlay_bg_color]"
     1060                                            value="<?php echo esc_attr( $ssd_overlay_bg_color ); ?>">
    9131061                                    </td>
    9141062                                </tr>
     
    9181066                                        <div class="ssd-col-xs-2">
    9191067                                            <div class="ssd_border_cover">
    920                                                 <label><?php echo esc_html( 'Top' ); ?>&nbsp;(px)<br/></label>
    921                                                 <input type="number" class="ssd_number_field" min="0" step="1" name="ssd[ssd_overlay_padding_top]" value="<?php echo isset( $ssd_settings['ssd_overlay_padding_top'] ) ? esc_attr( $ssd_settings['ssd_overlay_padding_top'] ) : '10'; ?>" />
    922                                             </div>
    923                                         </div>
    924                                         <div class="ssd-col-xs-2">
    925                                             <div class="ssd_border_cover">
    926                                                 <label><?php echo esc_html( 'Bottom' ); ?>&nbsp;(px)<br/></label>
    927                                                 <input type="number" class="ssd_number_field" min="0" step="1" name="ssd[ssd_overlay_padding_bottom]" value="<?php echo isset( $ssd_settings['ssd_overlay_padding_bottom'] ) ? esc_attr( $ssd_settings['ssd_overlay_padding_bottom'] ) : '10'; ?>" />
    928                                             </div>
    929                                         </div>
    930                                         <div class="ssd-col-xs-2">
    931                                             <div class="ssd_border_cover">
    932                                                 <label><?php echo esc_html( 'Left' ); ?>&nbsp;(px)<br/></label>
    933                                                 <input type="number" min="0" step="1" class="ssd_number_field" name="ssd[ssd_overlay_padding_left]" value="<?php echo isset( $ssd_settings['ssd_overlay_padding_left'] ) ? esc_attr( $ssd_settings['ssd_overlay_padding_left'] ) : '10'; ?>" />
    934                                             </div>
    935                                         </div>
    936                                         <div class="ssd-col-xs-2">
    937                                             <div class="ssd_border_cover">
    938                                                 <label><?php echo esc_html( 'Right' ); ?>&nbsp;(px)<br/></label>
    939                                                 <input type="number" min="0" step="1" class="ssd_number_field" name="ssd[ssd_overlay_padding_right]" value="<?php echo isset( $ssd_settings['ssd_overlay_padding_right'] ) ? esc_attr( $ssd_settings['ssd_overlay_padding_right'] ) : '10'; ?>" />
     1068                                                <label><?php echo esc_html( 'Top' ); ?>&nbsp;(px)<br /></label>
     1069                                                <input type="number" class="ssd_number_field" min="0" step="1"
     1070                                                    name="ssd[ssd_overlay_padding_top]"
     1071                                                    value="<?php echo isset( $ssd_settings['ssd_overlay_padding_top'] ) ? esc_attr( $ssd_settings['ssd_overlay_padding_top'] ) : '10'; ?>" />
     1072                                            </div>
     1073                                        </div>
     1074                                        <div class="ssd-col-xs-2">
     1075                                            <div class="ssd_border_cover">
     1076                                                <label><?php echo esc_html( 'Bottom' ); ?>&nbsp;(px)<br /></label>
     1077                                                <input type="number" class="ssd_number_field" min="0" step="1"
     1078                                                    name="ssd[ssd_overlay_padding_bottom]"
     1079                                                    value="<?php echo isset( $ssd_settings['ssd_overlay_padding_bottom'] ) ? esc_attr( $ssd_settings['ssd_overlay_padding_bottom'] ) : '10'; ?>" />
     1080                                            </div>
     1081                                        </div>
     1082                                        <div class="ssd-col-xs-2">
     1083                                            <div class="ssd_border_cover">
     1084                                                <label><?php echo esc_html( 'Left' ); ?>&nbsp;(px)<br /></label>
     1085                                                <input type="number" min="0" step="1" class="ssd_number_field"
     1086                                                    name="ssd[ssd_overlay_padding_left]"
     1087                                                    value="<?php echo isset( $ssd_settings['ssd_overlay_padding_left'] ) ? esc_attr( $ssd_settings['ssd_overlay_padding_left'] ) : '10'; ?>" />
     1088                                            </div>
     1089                                        </div>
     1090                                        <div class="ssd-col-xs-2">
     1091                                            <div class="ssd_border_cover">
     1092                                                <label><?php echo esc_html( 'Right' ); ?>&nbsp;(px)<br /></label>
     1093                                                <input type="number" min="0" step="1" class="ssd_number_field"
     1094                                                    name="ssd[ssd_overlay_padding_right]"
     1095                                                    value="<?php echo isset( $ssd_settings['ssd_overlay_padding_right'] ) ? esc_attr( $ssd_settings['ssd_overlay_padding_right'] ) : '10'; ?>" />
    9401096                                            </div>
    9411097                                        </div>
     
    9451101                                    <td><?php esc_html_e( 'Stream Heading', 'social-stream-design' ); ?></td>
    9461102                                    <td>
    947                                         <input type="text" name="ssd[ssd_stream_title]" value="<?php echo isset( $ssd_settings['ssd_stream_title'] ) ? esc_attr( $ssd_settings['ssd_stream_title'] ) : ''; ?>">
    948                                         <p class="description"><?php esc_html_e( 'Enter the Stream title. This will display on frontend.If Leave empty to not show.', 'social-stream-design' ); ?></p>
     1103                                        <input type="text" name="ssd[ssd_stream_title]"
     1104                                            value="<?php echo isset( $ssd_settings['ssd_stream_title'] ) ? esc_attr( $ssd_settings['ssd_stream_title'] ) : ''; ?>">
     1105                                        <p class="description">
     1106                                            <?php esc_html_e( 'Enter the Stream title. This will display on frontend.If Leave empty to not show.', 'social-stream-design' ); ?>
     1107                                        </p>
    9491108                                    </td>
    9501109                                </tr>
     
    9521111                                    <td><?php esc_html_e( 'Heading color', 'social-stream-design' ); ?></td>
    9531112                                    <td>
    954                                         <input type="text" id="ssd_heading_color" class="ssd_heading_color ssd_cpa-color-picker" name="ssd[ssd_heading_color]" value="<?php echo esc_attr( $ssd_heading_color ); ?>">
     1113                                        <input type="text" id="ssd_heading_color"
     1114                                            class="ssd_heading_color ssd_cpa-color-picker" name="ssd[ssd_heading_color]"
     1115                                            value="<?php echo esc_attr( $ssd_heading_color ); ?>">
    9551116                                    </td>
    9561117                                </tr>
     
    9581119                                    <td><?php esc_html_e( 'Stream Sub-Heading', 'social-stream-design' ); ?></td>
    9591120                                    <td>
    960                                         <input type="text" name="ssd[ssd_stream_subtitle]" value="<?php echo isset( $ssd_settings['ssd_stream_subtitle'] ) ? esc_attr( $ssd_settings['ssd_stream_subtitle'] ) : ''; ?>">
    961                                         <p class="description"><?php esc_html_e( 'Enter the Stream sub-title. This will display on frontend.If Leave empty to not show.', 'social-stream-design' ); ?></p>
     1121                                        <input type="text" name="ssd[ssd_stream_subtitle]"
     1122                                            value="<?php echo isset( $ssd_settings['ssd_stream_subtitle'] ) ? esc_attr( $ssd_settings['ssd_stream_subtitle'] ) : ''; ?>">
     1123                                        <p class="description">
     1124                                            <?php esc_html_e( 'Enter the Stream sub-title. This will display on frontend.If Leave empty to not show.', 'social-stream-design' ); ?>
     1125                                        </p>
    9621126                                    </td>
    9631127                                </tr>
     
    9651129                                    <td><?php esc_html_e( 'Sub-Heading color', 'social-stream-design' ); ?></td>
    9661130                                    <td>
    967                                         <input type="text" id="ssd_subheading_color" class="ssd_subheading_color ssd_cpa-color-picker" name="ssd[ssd_subheading_color]" value="<?php echo esc_attr( $ssd_subheading_color ); ?>">
     1131                                        <input type="text" id="ssd_subheading_color"
     1132                                            class="ssd_subheading_color ssd_cpa-color-picker"
     1133                                            name="ssd[ssd_subheading_color]"
     1134                                            value="<?php echo esc_attr( $ssd_subheading_color ); ?>">
    9681135                                    </td>
    9691136                                </tr>
     
    9721139                                    <td>
    9731140                                        <div class="ssd-col-xs-2">
    974                                             <select id="ssd_heading_alignment" class="ssd_stream_select ssd_heading_alignment" name="ssd[ssd_heading_alignment]" >
    975                                                 <option value="left" <?php echo ( 'left' === $ssd_heading_alignment ) ? ' selected="selected"' : ''; ?>><?php echo esc_html( 'Left' ); ?></option>
    976                                                 <option value="center" <?php echo ( 'center' === $ssd_heading_alignment ) ? ' selected="selected"' : ''; ?>><?php echo esc_html( 'Center' ); ?></option>
    977                                                 <option value="right" <?php echo ( 'right' === $ssd_heading_alignment ) ? ' selected="selected"' : ''; ?>><?php echo esc_html( 'Right' ); ?></option>
     1141                                            <select id="ssd_heading_alignment"
     1142                                                class="ssd_stream_select ssd_heading_alignment"
     1143                                                name="ssd[ssd_heading_alignment]">
     1144                                                <option value="left" <?php echo ( 'left' === $ssd_heading_alignment ) ? ' selected="selected"' : ''; ?>><?php echo esc_html( 'Left' ); ?>
     1145                                                </option>
     1146                                                <option value="center" <?php echo ( 'center' === $ssd_heading_alignment ) ? ' selected="selected"' : ''; ?>>
     1147                                                    <?php echo esc_html( 'Center' ); ?></option>
     1148                                                <option value="right" <?php echo ( 'right' === $ssd_heading_alignment ) ? ' selected="selected"' : ''; ?>><?php echo esc_html( 'Right' ); ?>
     1149                                                </option>
    9781150                                            </select>
    9791151                                        </div>
     
    9811153                                </tr>
    9821154                                <tr class="disable_li">
    983                                     <td><i class="fa fa-lock"></i>&nbsp;<?php esc_html_e( 'Heading Background color', 'social-stream-design' ); ?></td>
    984                                     <td>
    985                                         <input disabled type="text" id="ssd_heading_bg_color" class="ssd_heading_bg_color ssd_cpa-color-picker" name="" value="">
     1155                                    <td><i
     1156                                            class="fa fa-lock"></i>&nbsp;<?php esc_html_e( 'Heading Background color', 'social-stream-design' ); ?>
     1157                                    </td>
     1158                                    <td>
     1159                                        <input disabled type="text" id="ssd_heading_bg_color"
     1160                                            class="ssd_heading_bg_color ssd_cpa-color-picker" name="" value="">
    9861161                                    </td>
    9871162                                </tr>
     
    9951170                            <tbody>
    9961171                                <tr class="disable_li">
    997                                     <td class="ssd_label_fit_content"><i class="fa fa-lock"></i>&nbsp;<?php esc_html_e( 'Card Border', 'social-stream-design' ); ?></td>
     1172                                    <td class="ssd_label_fit_content"><i
     1173                                            class="fa fa-lock"></i>&nbsp;<?php esc_html_e( 'Card Border', 'social-stream-design' ); ?>
     1174                                    </td>
    9981175                                    <td>
    9991176                                        <div class="ssd_border_cover">
    1000                                             <label><?php echo esc_html( 'Top' ); ?>&nbsp;(px)<br/></label>
     1177                                            <label><?php echo esc_html( 'Top' ); ?>&nbsp;(px)<br /></label>
    10011178                                            <div class="ssd-col-xs-3">
    1002                                                 <input type="number" class="ssd_number_field" min="0" step="1" name="" value="0" />
     1179                                                <input type="number" class="ssd_number_field" min="0" step="1" name=""
     1180                                                    value="0" />
    10031181                                            </div>
    10041182                                            <div class="ssd-col-xs-3">
    1005                                                 <select class="ssd_stream_select" id="ssd_card_border_top_type"  name="">
    1006                                                     <option value="" ><?php echo esc_html( 'Solid' ); ?></option>
    1007                                                     <option value="" ><?php echo esc_html( 'Dotted' ); ?></option>
    1008                                                     <option value="" ><?php echo esc_html( 'Dash' ); ?></option>
    1009                                                     <option value="" ><?php echo esc_html( 'Double' ); ?></option>
     1183                                                <select class="ssd_stream_select" id="ssd_card_border_top_type" name="">
     1184                                                    <option value=""><?php echo esc_html( 'Solid' ); ?></option>
     1185                                                    <option value=""><?php echo esc_html( 'Dotted' ); ?></option>
     1186                                                    <option value=""><?php echo esc_html( 'Dash' ); ?></option>
     1187                                                    <option value=""><?php echo esc_html( 'Double' ); ?></option>
    10101188                                                </select>
    10111189                                            </div>
     
    10151193                                        </div>
    10161194                                        <div class="ssd_border_cover">
    1017                                             <label><?php echo esc_html( 'Bottom' ); ?>&nbsp;(px)<br/></label>
     1195                                            <label><?php echo esc_html( 'Bottom' ); ?>&nbsp;(px)<br /></label>
    10181196                                            <div class="ssd-col-xs-3">
    1019                                                 <input type="number" class="ssd_number_field" min="0" step="1" name="" value="0" />
     1197                                                <input type="number" class="ssd_number_field" min="0" step="1" name=""
     1198                                                    value="0" />
    10201199                                            </div>
    10211200                                            <div class="ssd-col-xs-3">
     
    10321211                                        </div>
    10331212                                        <div class="ssd_border_cover">
    1034                                             <label><?php echo esc_html( 'Left' ); ?>&nbsp;(px)<br/></label>
     1213                                            <label><?php echo esc_html( 'Left' ); ?>&nbsp;(px)<br /></label>
    10351214                                            <div class="ssd-col-xs-3">
    1036                                                 <input type="number" class="ssd_number_field" min="0" step="1" name="" value="0" />
     1215                                                <input type="number" class="ssd_number_field" min="0" step="1" name=""
     1216                                                    value="0" />
    10371217                                            </div>
    10381218                                            <div class="ssd-col-xs-3">
     
    10491229                                        </div>
    10501230                                        <div class="ssd_border_cover">
    1051                                             <label><?php echo esc_html( 'Right' ); ?>&nbsp;(px)<br/></label>
     1231                                            <label><?php echo esc_html( 'Right' ); ?>&nbsp;(px)<br /></label>
    10521232                                            <div class="ssd-col-xs-3">
    1053                                                 <input type="number" class="ssd_number_field" min="0" step="1" name="" value="0" />
     1233                                                <input type="number" class="ssd_number_field" min="0" step="1" name=""
     1234                                                    value="0" />
    10541235                                            </div>
    10551236                                            <div class="ssd-col-xs-3">
     
    10681249                                </tr>
    10691250                                <tr class="disable_li">
    1070                                     <td><i class="fa fa-lock"></i>&nbsp;<?php esc_html_e( 'Card Border Radius (px)', 'social-stream-design' ); ?></td>
     1251                                    <td><i
     1252                                            class="fa fa-lock"></i>&nbsp;<?php esc_html_e( 'Card Border Radius (px)', 'social-stream-design' ); ?>
     1253                                    </td>
    10711254                                    <td>
    10721255                                        <div class="ssd-col-xs-4">
    10731256                                            <div class="ssd_border_cover">
    1074                                                 <input type="number" class="ssd_number_field" max="25" min="0" step="1" name="" value="0" />
     1257                                                <input type="number" class="ssd_number_field" max="25" min="0" step="1"
     1258                                                    name="" value="0" />
    10751259                                            </div>
    10761260                                        </div>
     
    10781262                                </tr>
    10791263                                <tr class="disable_li">
    1080                                     <td><i class="fa fa-lock"></i>&nbsp;<?php esc_html_e( 'Card Background Color', 'social-stream-design' ); ?></td>
     1264                                    <td><i
     1265                                            class="fa fa-lock"></i>&nbsp;<?php esc_html_e( 'Card Background Color', 'social-stream-design' ); ?>
     1266                                    </td>
    10811267                                    <td>
    10821268                                        <input name="" value="" type="text" class="ssd_cpa-color-picker">
     
    10841270                                </tr>
    10851271                                <tr class="ssd-layout-4">
    1086                                     <td><i class="fa fa-lock"></i>&nbsp;<?php esc_html_e( 'Card Overlay Background Color', 'social-stream-design' ); ?></td>
    1087                                     <td>
    1088                                         <input name="" value="" type="text" data-alpha="true" class="ssd_cpa-color-picker">
     1272                                    <td><i
     1273                                            class="fa fa-lock"></i>&nbsp;<?php esc_html_e( 'Card Overlay Background Color', 'social-stream-design' ); ?>
     1274                                    </td>
     1275                                    <td>
     1276                                        <input name="" value="" type="text" data-alpha="true"
     1277                                            class="ssd_cpa-color-picker">
    10891278                                    </td>
    10901279                                </tr>
    10911280                                <tr class="disable_li">
    1092                                     <td class="ssd_label_fit_content" ><i class="fa fa-lock"></i>&nbsp;<?php esc_html_e( 'Card Box Shadow', 'social-stream-design' ); ?></td>
    1093                                     <td>
    1094                                         <div class="ssd-col-xs-2">
    1095                                             <div class="ssd_border_cover">
    1096                                                 <label><?php echo esc_html( 'H-offset' ); ?>&nbsp;(px)<br/></label>
    1097                                                 <input type="number" class="ssd_number_field" step="1" min='-10' max="10" name="" value="0" />
    1098                                             </div>
    1099                                         </div>
    1100                                         <div class="ssd-col-xs-2">
    1101                                             <div class="ssd_border_cover">
    1102                                                 <label><?php echo esc_html( 'V-offset' ); ?>&nbsp;(px)<br/></label>
    1103                                                 <input type="number" class="ssd_number_field" step="1" min='-10' max="10" name="" value="0" />
    1104                                             </div>
    1105                                         </div>
    1106                                         <div class="ssd-col-xs-2">
    1107                                             <div class="ssd_border_cover">
    1108                                                 <label><?php echo esc_html( 'Blur' ); ?>&nbsp;(px)<br/></label>
    1109                                                 <input type="number" class="ssd_number_field" step="1" min='-10' max="10" name="" value="0" />
    1110                                             </div>
    1111                                         </div>
    1112                                         <div class="ssd-col-xs-2">
    1113                                             <div class="ssd_border_cover">
    1114                                                 <label><?php echo esc_html( 'Spread' ); ?>&nbsp;(px)<br/></label>
    1115                                                 <input type="number" class="ssd_number_field" step="1" min='-10' max="10" name="" value="0" />
     1281                                    <td class="ssd_label_fit_content"><i
     1282                                            class="fa fa-lock"></i>&nbsp;<?php esc_html_e( 'Card Box Shadow', 'social-stream-design' ); ?>
     1283                                    </td>
     1284                                    <td>
     1285                                        <div class="ssd-col-xs-2">
     1286                                            <div class="ssd_border_cover">
     1287                                                <label><?php echo esc_html( 'H-offset' ); ?>&nbsp;(px)<br /></label>
     1288                                                <input type="number" class="ssd_number_field" step="1" min='-10'
     1289                                                    max="10" name="" value="0" />
     1290                                            </div>
     1291                                        </div>
     1292                                        <div class="ssd-col-xs-2">
     1293                                            <div class="ssd_border_cover">
     1294                                                <label><?php echo esc_html( 'V-offset' ); ?>&nbsp;(px)<br /></label>
     1295                                                <input type="number" class="ssd_number_field" step="1" min='-10'
     1296                                                    max="10" name="" value="0" />
     1297                                            </div>
     1298                                        </div>
     1299                                        <div class="ssd-col-xs-2">
     1300                                            <div class="ssd_border_cover">
     1301                                                <label><?php echo esc_html( 'Blur' ); ?>&nbsp;(px)<br /></label>
     1302                                                <input type="number" class="ssd_number_field" step="1" min='-10'
     1303                                                    max="10" name="" value="0" />
     1304                                            </div>
     1305                                        </div>
     1306                                        <div class="ssd-col-xs-2">
     1307                                            <div class="ssd_border_cover">
     1308                                                <label><?php echo esc_html( 'Spread' ); ?>&nbsp;(px)<br /></label>
     1309                                                <input type="number" class="ssd_number_field" step="1" min='-10'
     1310                                                    max="10" name="" value="0" />
    11161311                                            </div>
    11171312                                        </div>
    11181313                                        <div class="ssd-col-xs-6">
    11191314                                            <div class="ssd_card_box_shadow_main">
    1120                                                 <label><?php echo esc_html( 'Color' ); ?>&nbsp;(px)<br/></label>
     1315                                                <label><?php echo esc_html( 'Color' ); ?>&nbsp;(px)<br /></label>
    11211316                                                <input name="" value="" type="text" class="ssd_cpa-color-picker">
    11221317                                            </div>
     
    11271322                                    <td><?php esc_html_e( 'Card Custom Class', 'social-stream-design' ); ?></td>
    11281323                                    <td>
    1129                                         <input type="text" name="ssd[ssd_card_extra_class]" value="<?php echo isset( $ssd_settings['ssd_card_extra_class'] ) ? esc_attr( $ssd_settings['ssd_card_extra_class'] ) : ''; ?>" />
    1130                                         <p class="description"><?php esc_html_e( 'Enter the custom class name here, which will apply to the card and this class use for custom css which you will add from General Setting -> Custom CSS.', 'social-stream-design' ); ?></p>
     1324                                        <input type="text" name="ssd[ssd_card_extra_class]"
     1325                                            value="<?php echo isset( $ssd_settings['ssd_card_extra_class'] ) ? esc_attr( $ssd_settings['ssd_card_extra_class'] ) : ''; ?>" />
     1326                                        <p class="description">
     1327                                            <?php esc_html_e( 'Enter the custom class name here, which will apply to the card and this class use for custom css which you will add from General Setting -> Custom CSS.', 'social-stream-design' ); ?>
     1328                                        </p>
    11311329                                    </td>
    11321330                                </tr>
     
    11431341                                    <td>
    11441342                                        <div class="radio-group">
    1145                                             <input type="radio" id="ssd_display_social_icon_yes" class="ssd_display_social_icon yes" name="ssd[ssd_display_social_icon]" value="1" <?php echo ( 1 == $ssd_display_social_icon ) ? ' checked="checked"' : ''; ?>><label for="ssd_display_social_icon_yes"><?php esc_html_e( 'Yes', 'social-stream-design' ); ?></label>
    1146                                             <input type="radio" id="display_social_icon_no" class="ssd_display_social_icon no" name="ssd[ssd_display_social_icon]" value="0" <?php echo ( 0 == $ssd_display_social_icon ) ? ' checked="checked"' : ''; ?> ><label for="display_social_icon_no"><?php esc_html_e( 'No', 'social-stream-design' ); ?></label>
     1343                                            <input type="radio" id="ssd_display_social_icon_yes"
     1344                                                class="ssd_display_social_icon yes" name="ssd[ssd_display_social_icon]"
     1345                                                value="1" <?php echo ( 1 == $ssd_display_social_icon ) ? ' checked="checked"' : ''; ?>><label
     1346                                                for="ssd_display_social_icon_yes"><?php esc_html_e( 'Yes', 'social-stream-design' ); ?></label>
     1347                                            <input type="radio" id="display_social_icon_no"
     1348                                                class="ssd_display_social_icon no" name="ssd[ssd_display_social_icon]"
     1349                                                value="0" <?php echo ( 0 == $ssd_display_social_icon ) ? ' checked="checked"' : ''; ?>><label
     1350                                                for="display_social_icon_no"><?php esc_html_e( 'No', 'social-stream-design' ); ?></label>
    11471351                                        </div>
    11481352                                    </td>
     
    11521356                                    <td>
    11531357                                        <div class="ssd-col-xs-5">
    1154                                             <select id="ssd_social_share_type" class="ssd_stream_select" name="ssd[ssd_social_share_type]" >
    1155                                                 <option value="icon"  <?php echo ( 'icon' === $ssd_social_share_type ) ? ' selected="selected"' : ''; ?>><?php echo esc_html( 'Icon' ); ?></option>
    1156                                                 <option value="text"  <?php echo ( 'text' === $ssd_social_share_type ) ? ' selected="selected"' : ''; ?>><?php echo esc_html( 'Text' ); ?></option>
    1157                                                 <option value="icon_text"  <?php echo ( 'icon_text' === $ssd_social_share_type ) ? ' selected="selected"' : ''; ?>>
     1358                                            <select id="ssd_social_share_type" class="ssd_stream_select"
     1359                                                name="ssd[ssd_social_share_type]">
     1360                                                <option value="icon" <?php echo ( 'icon' === $ssd_social_share_type ) ? ' selected="selected"' : ''; ?>><?php echo esc_html( 'Icon' ); ?>
     1361                                                </option>
     1362                                                <option value="text" <?php echo ( 'text' === $ssd_social_share_type ) ? ' selected="selected"' : ''; ?>><?php echo esc_html( 'Text' ); ?>
     1363                                                </option>
     1364                                                <option value="icon_text" <?php echo ( 'icon_text' === $ssd_social_share_type ) ? ' selected="selected"' : ''; ?>>
    11581365                                                    <?php
    11591366                                                    esc_html_e( 'Icon', 'social-stream-design' );
     
    11701377                                    <td>
    11711378                                        <div class="radio-group">
    1172                                             <input type="radio" id="ssddimg_no" class="ssddimg no" name="ssd[ssd_display_image]" value="0" <?php echo ( 0 == $ssd_display_image ) ? ' checked="checked"' : ''; ?>><label for="ssddimg_no"><?php esc_html_e( 'Default', 'social-stream-design' ); ?></label>
    1173                                             <input type="radio" id="ssddimg_yes" class="ssddimg yes" name="ssd[ssd_display_image]" value="1" <?php echo ( 1 == $ssd_display_image ) ? ' checked="checked"' : ''; ?> ><label for="ssddimg_yes"><?php esc_html_e( 'Custom', 'social-stream-design' ); ?></label>
     1379                                            <input type="radio" id="ssddimg_no" class="ssddimg no"
     1380                                                name="ssd[ssd_display_image]" value="0" <?php echo ( 0 == $ssd_display_image ) ? ' checked="checked"' : ''; ?>><label
     1381                                                for="ssddimg_no"><?php esc_html_e( 'Default', 'social-stream-design' ); ?></label>
     1382                                            <input type="radio" id="ssddimg_yes" class="ssddimg yes"
     1383                                                name="ssd[ssd_display_image]" value="1" <?php echo ( 1 == $ssd_display_image ) ? ' checked="checked"' : ''; ?>><label
     1384                                                for="ssddimg_yes"><?php esc_html_e( 'Custom', 'social-stream-design' ); ?></label>
    11741385                                        </div>
    11751386                                    </td>
     
    11831394                                            <div class="ssdily_pst ssd_image_layout_<?php echo intval( $i ); ?>">
    11841395                                                <label>
    1185                                                     <input type="radio" name="ssd[ssd_image_layout]" class="ssd_image_layout_<?php echo intval( $i ); ?>" value="ssd_image_layout_<?php echo intval( $i ); ?>"  <?php echo ( "ssd_image_layout_$i" === $ssd_image_layout ) ? ' checked="checked"' : ''; ?>>
    1186                                                     <span class="<?php echo ( "ssd_image_layout_$i" === $ssd_image_layout ) ? 'selected' : ''; ?>"></span>
     1396                                                    <input type="radio" name="ssd[ssd_image_layout]"
     1397                                                        class="ssd_image_layout_<?php echo intval( $i ); ?>"
     1398                                                        value="ssd_image_layout_<?php echo intval( $i ); ?>" <?php echo ( "ssd_image_layout_$i" === $ssd_image_layout ) ? ' checked="checked"' : ''; ?>>
     1399                                                    <span
     1400                                                        class="<?php echo ( "ssd_image_layout_$i" === $ssd_image_layout ) ? 'selected' : ''; ?>"></span>
    11871401                                                </label>
    11881402                                            </div>
     
    11961410                                    <td>
    11971411                                        <div class="radio-group">
    1198                                             <input type="radio" id="ssd_display_corner_icon_yes" class="ssd_display_corner_icon yes" name="ssd[ssd_display_corner_icon]" value="1" <?php echo ( 1 == $ssd_display_corner_icon ) ? ' checked="checked"' : ''; ?>><label for="ssd_display_corner_icon_yes"><?php esc_html_e( 'Yes', 'social-stream-design' ); ?></label>
    1199                                             <input type="radio" id="ssd_display_corner_icon_no" class="ssd_display_corner_icon no" name="ssd[ssd_display_corner_icon]" value="0" <?php echo ( 0 == $ssd_display_corner_icon ) ? ' checked="checked"' : ''; ?> ><label for="ssd_display_corner_icon_no"><?php esc_html_e( 'No', 'social-stream-design' ); ?></label>
    1200                                         </div>
    1201                                         <p class="description"><?php esc_html_e( 'Display social icon on top, bottom, left, right corner.', 'social-stream-design' ); ?></p>
     1412                                            <input type="radio" id="ssd_display_corner_icon_yes"
     1413                                                class="ssd_display_corner_icon yes" name="ssd[ssd_display_corner_icon]"
     1414                                                value="1" <?php echo ( 1 == $ssd_display_corner_icon ) ? ' checked="checked"' : ''; ?>><label
     1415                                                for="ssd_display_corner_icon_yes"><?php esc_html_e( 'Yes', 'social-stream-design' ); ?></label>
     1416                                            <input type="radio" id="ssd_display_corner_icon_no"
     1417                                                class="ssd_display_corner_icon no" name="ssd[ssd_display_corner_icon]"
     1418                                                value="0" <?php echo ( 0 == $ssd_display_corner_icon ) ? ' checked="checked"' : ''; ?>><label
     1419                                                for="ssd_display_corner_icon_no"><?php esc_html_e( 'No', 'social-stream-design' ); ?></label>
     1420                                        </div>
     1421                                        <p class="description">
     1422                                            <?php esc_html_e( 'Display social icon on top, bottom, left, right corner.', 'social-stream-design' ); ?>
     1423                                        </p>
    12021424                                    </td>
    12031425                                </tr>
     
    12061428                                    <td>
    12071429                                        <div class="radio-group">
    1208                                             <input type="radio" id="ssd_display_sticky_yes" class="ssd_display_sticky yes" name="ssd[ssd_display_sticky]" value="1" <?php echo ( 1 == $ssd_display_sticky ) ? ' checked="checked"' : ''; ?>><label for="ssd_display_sticky_yes"><?php esc_html_e( 'Yes', 'social-stream-design' ); ?></label>
    1209                                             <input type="radio" id="ssd_display_sticky_no" class="ssd_display_sticky no" name="ssd[ssd_display_sticky]" value="0" <?php echo ( 0 == $ssd_display_sticky ) ? ' checked="checked"' : ''; ?> ><label for="ssd_display_sticky_no"><?php esc_html_e( 'No', 'social-stream-design' ); ?></label>
    1210                                         </div>
    1211                                         <p class="description"><?php esc_html_e( 'Display social icon sticky on media or author', 'social-stream-design' ); ?></p>
     1430                                            <input type="radio" id="ssd_display_sticky_yes"
     1431                                                class="ssd_display_sticky yes" name="ssd[ssd_display_sticky]" value="1"
     1432                                                <?php echo ( 1 == $ssd_display_sticky ) ? ' checked="checked"' : ''; ?>><label
     1433                                                for="ssd_display_sticky_yes"><?php esc_html_e( 'Yes', 'social-stream-design' ); ?></label>
     1434                                            <input type="radio" id="ssd_display_sticky_no" class="ssd_display_sticky no"
     1435                                                name="ssd[ssd_display_sticky]" value="0" <?php echo ( 0 == $ssd_display_sticky ) ? ' checked="checked"' : ''; ?>><label
     1436                                                for="ssd_display_sticky_no"><?php esc_html_e( 'No', 'social-stream-design' ); ?></label>
     1437                                        </div>
     1438                                        <p class="description">
     1439                                            <?php esc_html_e( 'Display social icon sticky on media or author', 'social-stream-design' ); ?>
     1440                                        </p>
    12121441                                    </td>
    12131442                                </tr>
     
    12171446                                    <td>
    12181447                                        <div class="ssd-col-xs-4">
    1219                                             <select id="ssd_display_sticky_on" class="ssd_stream_select" name="ssd[ssd_display_sticky_on]" >
    1220                                                 <option value="media" <?php echo ( 'media' === $ssd_display_sticky_on ) ? ' selected="selected"' : ''; ?>><?php esc_html_e( 'Media', 'social-stream-design' ); ?></option>
     1448                                            <select id="ssd_display_sticky_on" class="ssd_stream_select"
     1449                                                name="ssd[ssd_display_sticky_on]">
     1450                                                <option value="media" <?php echo ( 'media' === $ssd_display_sticky_on ) ? ' selected="selected"' : ''; ?>>
     1451                                                    <?php esc_html_e( 'Media', 'social-stream-design' ); ?></option>
     1452                                                <?php
     1453                                                if ( 'layout-2' === $ssd_design_layout ) {
     1454                                                    ?>
     1455                                                    <option value="author" <?php echo ( 'author' === $ssd_display_sticky_on ) ? ' selected="selected"' : ''; ?>>
     1456                                                        <?php esc_html_e( 'Author', 'social-stream-design' ); ?></option>
    12211457                                                    <?php
    1222                                                     if ( 'layout-2' === $ssd_design_layout ) {
    1223                                                         ?>
    1224                                                         <option value="author" <?php echo ( 'author' === $ssd_display_sticky_on ) ? ' selected="selected"' : ''; ?>><?php esc_html_e( 'Author', 'social-stream-design' ); ?></option>
    1225                                                         <?php
    1226                                                     } else {
    1227                                                         ?>
    1228                                                         <option value="author" disabled <?php echo ( 'author' === $ssd_display_sticky_on ) ? ' selected="selected"' : ''; ?>><?php esc_html_e( 'Author', 'social-stream-design' ); ?></option>
    1229                                                         <?php
    1230                                                     }
     1458                                                } else {
    12311459                                                    ?>
    1232                                             </select>
    1233                                         </div>
    1234                                     </td>
    1235                                 </tr>
    1236                                 <tr class="ssd_social_row ssd_icon_border_radius_tr">
    1237                                     <td><?php esc_html_e( 'Icon Border Radius', 'social-stream-design' ); ?></td>
    1238                                     <td>
    1239                                         <div class="ssd-col-xs-4">
    1240                                             <div class="ssd_border_cover">
    1241                                                 <input type="number" min="0" class="ssd_number_field" step="1"  name="ssd[ssd_icon_border_radius]" value="<?php echo isset( $ssd_settings['ssd_icon_border_radius'] ) && '' !== $ssd_settings['ssd_icon_border_radius'] ? esc_attr( $ssd_settings['ssd_icon_border_radius'] ) : '0'; ?>" />
    1242                                             </div>
    1243                                         </div>
    1244                                         <div class="ssd-col-xs-4">
    1245                                             <div class="ssd_border_cover">
    1246                                                 <select id="ssd_icon_border_radius_type" class="ssd_stream_select" name="ssd[ssd_icon_border_radius_type]" >
    1247                                                     <option value="px" <?php echo ( 'px' === $ssd_icon_border_radius_type ) ? ' selected="selected"' : ''; ?>><?php echo 'px'; ?></option>
    1248                                                     <option value="%" <?php echo ( '%' === $ssd_icon_border_radius_type ) ? ' selected="selected"' : ''; ?>><?php echo 'percentage'; ?></option>
    1249                                                 </select>
    1250                                             </div>
    1251                                         </div>
    1252                                     </td>
    1253                                 </tr>
    1254                                 <tr class="ssd_social_row ssd_text_border_radius_tr">
    1255                                     <td><?php esc_html_e( 'Text Border Radius', 'social-stream-design' ); ?></td>
    1256                                     <td>
    1257                                         <div class="ssd-col-xs-2">
    1258                                             <div class="ssd_border_cover">
    1259                                                 <input type="number" min="0" class="ssd_number_field" step="1" name="ssd[ssd_text_border_radius]" value="<?php echo isset( $ssd_settings['ssd_text_border_radius'] ) && '' !== $ssd_settings['ssd_text_border_radius'] ? esc_attr( $ssd_settings['ssd_text_border_radius'] ) : '0'; ?>" />
    1260                                             </div>
    1261                                         </div>
    1262                                         <div class="ssd-col-xs-3">
    1263                                             <div class="ssd_border_cover">
    1264                                                 <select id="ssd_text_border_radius_type" class="ssd_stream_select" name="ssd[ssd_text_border_radius_type]" >
    1265                                                     <option value="px" <?php echo ( 'px' === $ssd_text_border_radius_type ) ? ' selected="selected"' : ''; ?>><?php echo 'px'; ?></option>
    1266                                                     <option value="%" <?php echo ( '%' === $ssd_text_border_radius_type ) ? ' selected="selected"' : ''; ?>><?php echo 'percentage'; ?></option>
    1267                                                 </select>
    1268                                             </div>
    1269                                         </div>
    1270                                     </td>
    1271                                 </tr>
    1272                                 <tr class="ssd_social_row ssd_icon_text_alignment_tr">
    1273                                     <td><?php esc_html_e( 'Alignment', 'social-stream-design' ); ?></td>
    1274                                     <td>
    1275                                         <div class="ssd-col-xs-3">
    1276                                             <select id="ssd_icon_alignment" class="ssd_stream_select" name="ssd[ssd_icon_alignment]" >
    1277                                                 <option value="left" <?php echo ( 'left' === $ssd_icon_alignment ) ? ' selected="selected"' : ''; ?>><?php echo esc_html( 'Left' ); ?></option>
    1278                                                 <option value="right" <?php echo ( 'right' === $ssd_icon_alignment ) ? ' selected="selected"' : ''; ?>><?php echo esc_html( 'Right' ); ?></option>
    1279                                                 <?php
    1280                                                 if ( 0 == $ssd_display_corner_icon ) {
    1281                                                     ?>
    1282                                                     <option value="center" <?php echo ( 'center' === $ssd_icon_alignment ) ? ' selected="selected"' : ''; ?>><?php echo esc_html( 'Center' ); ?></option>
     1460                                                    <option value="author" disabled <?php echo ( 'author' === $ssd_display_sticky_on ) ? ' selected="selected"' : ''; ?>><?php esc_html_e( 'Author', 'social-stream-design' ); ?></option>
    12831461                                                    <?php
    12841462                                                }
     
    12861464                                            </select>
    12871465                                        </div>
    1288                                         <p class="description"><?php esc_html_e( 'Select the alignment of social share icon', 'social-stream-design' ); ?></p>
     1466                                    </td>
     1467                                </tr>
     1468                                <tr class="ssd_social_row ssd_icon_border_radius_tr">
     1469                                    <td><?php esc_html_e( 'Icon Border Radius', 'social-stream-design' ); ?></td>
     1470                                    <td>
     1471                                        <div class="ssd-col-xs-4">
     1472                                            <div class="ssd_border_cover">
     1473                                                <input type="number" min="0" class="ssd_number_field" step="1"
     1474                                                    name="ssd[ssd_icon_border_radius]"
     1475                                                    value="<?php echo isset( $ssd_settings['ssd_icon_border_radius'] ) && '' !== $ssd_settings['ssd_icon_border_radius'] ? esc_attr( $ssd_settings['ssd_icon_border_radius'] ) : '0'; ?>" />
     1476                                            </div>
     1477                                        </div>
     1478                                        <div class="ssd-col-xs-4">
     1479                                            <div class="ssd_border_cover">
     1480                                                <select id="ssd_icon_border_radius_type" class="ssd_stream_select"
     1481                                                    name="ssd[ssd_icon_border_radius_type]">
     1482                                                    <option value="px" <?php echo ( 'px' === $ssd_icon_border_radius_type ) ? ' selected="selected"' : ''; ?>><?php echo 'px'; ?></option>
     1483                                                    <option value="%" <?php echo ( '%' === $ssd_icon_border_radius_type ) ? ' selected="selected"' : ''; ?>><?php echo 'percentage'; ?>
     1484                                                    </option>
     1485                                                </select>
     1486                                            </div>
     1487                                        </div>
     1488                                    </td>
     1489                                </tr>
     1490                                <tr class="ssd_social_row ssd_text_border_radius_tr">
     1491                                    <td><?php esc_html_e( 'Text Border Radius', 'social-stream-design' ); ?></td>
     1492                                    <td>
     1493                                        <div class="ssd-col-xs-2">
     1494                                            <div class="ssd_border_cover">
     1495                                                <input type="number" min="0" class="ssd_number_field" step="1"
     1496                                                    name="ssd[ssd_text_border_radius]"
     1497                                                    value="<?php echo isset( $ssd_settings['ssd_text_border_radius'] ) && '' !== $ssd_settings['ssd_text_border_radius'] ? esc_attr( $ssd_settings['ssd_text_border_radius'] ) : '0'; ?>" />
     1498                                            </div>
     1499                                        </div>
     1500                                        <div class="ssd-col-xs-3">
     1501                                            <div class="ssd_border_cover">
     1502                                                <select id="ssd_text_border_radius_type" class="ssd_stream_select"
     1503                                                    name="ssd[ssd_text_border_radius_type]">
     1504                                                    <option value="px" <?php echo ( 'px' === $ssd_text_border_radius_type ) ? ' selected="selected"' : ''; ?>><?php echo 'px'; ?></option>
     1505                                                    <option value="%" <?php echo ( '%' === $ssd_text_border_radius_type ) ? ' selected="selected"' : ''; ?>><?php echo 'percentage'; ?>
     1506                                                    </option>
     1507                                                </select>
     1508                                            </div>
     1509                                        </div>
     1510                                    </td>
     1511                                </tr>
     1512                                <tr class="ssd_social_row ssd_icon_text_alignment_tr">
     1513                                    <td><?php esc_html_e( 'Alignment', 'social-stream-design' ); ?></td>
     1514                                    <td>
     1515                                        <div class="ssd-col-xs-3">
     1516                                            <select id="ssd_icon_alignment" class="ssd_stream_select"
     1517                                                name="ssd[ssd_icon_alignment]">
     1518                                                <option value="left" <?php echo ( 'left' === $ssd_icon_alignment ) ? ' selected="selected"' : ''; ?>><?php echo esc_html( 'Left' ); ?>
     1519                                                </option>
     1520                                                <option value="right" <?php echo ( 'right' === $ssd_icon_alignment ) ? ' selected="selected"' : ''; ?>><?php echo esc_html( 'Right' ); ?>
     1521                                                </option>
     1522                                                <?php
     1523                                                if ( 0 == $ssd_display_corner_icon ) {
     1524                                                    ?>
     1525                                                    <option value="center" <?php echo ( 'center' === $ssd_icon_alignment ) ? ' selected="selected"' : ''; ?>><?php echo esc_html( 'Center' ); ?>
     1526                                                    </option>
     1527                                                    <?php
     1528                                                }
     1529                                                ?>
     1530                                            </select>
     1531                                        </div>
     1532                                        <p class="description">
     1533                                            <?php esc_html_e( 'Select the alignment of social share icon', 'social-stream-design' ); ?>
     1534                                        </p>
    12891535                                    </td>
    12901536                                </tr>
     
    12931539                                    <td>
    12941540                                        <div class="ssd-col-xs-3">
    1295                                             <select id="ssd_icon_position" class="ssd_stream_select" name="ssd[ssd_icon_position]" >
    1296                                                 <option value="top" <?php echo ( 'top' === $ssd_icon_position ) ? ' selected="selected"' : ''; ?>><?php echo esc_html( 'Top' ); ?></option>
    1297                                                 <option value="bottom" <?php echo ( 'bottom' === $ssd_icon_position ) ? ' selected="selected"' : ''; ?>><?php echo esc_html( 'Bottom' ); ?></option>
     1541                                            <select id="ssd_icon_position" class="ssd_stream_select"
     1542                                                name="ssd[ssd_icon_position]">
     1543                                                <option value="top" <?php echo ( 'top' === $ssd_icon_position ) ? ' selected="selected"' : ''; ?>><?php echo esc_html( 'Top' ); ?>
     1544                                                </option>
     1545                                                <option value="bottom" <?php echo ( 'bottom' === $ssd_icon_position ) ? ' selected="selected"' : ''; ?>><?php echo esc_html( 'Bottom' ); ?>
     1546                                                </option>
    12981547                                            </select>
    12991548                                        </div>
    1300                                         <p class="description"><?php esc_html_e( 'Select the position of social share icon', 'social-stream-design' ); ?></p>
     1549                                        <p class="description">
     1550                                            <?php esc_html_e( 'Select the position of social share icon', 'social-stream-design' ); ?>
     1551                                        </p>
    13011552                                    </td>
    13021553                                </tr>
     
    13041555                                    <td><?php esc_html_e( 'Color', 'social-stream-design' ); ?></td>
    13051556                                    <td>
    1306                                         <input name="ssd[ssd_icon_color]" value="<?php echo esc_attr( $ssd_icon_color ); ?>" type="text" class="ssd_cpa-color-picker">
     1557                                        <input name="ssd[ssd_icon_color]"
     1558                                            value="<?php echo esc_attr( $ssd_icon_color ); ?>" type="text"
     1559                                            class="ssd_cpa-color-picker">
    13071560                                    </td>
    13081561                                </tr>
     
    13101563                                    <td><?php esc_html_e( 'Background Color', 'social-stream-design' ); ?></td>
    13111564                                    <td>
    1312                                         <input name="ssd[ssd_icon_bg_color]" value="<?php echo esc_attr( $ssd_icon_bg_color ); ?>" type="text" class="ssd_cpa-color-picker">
     1565                                        <input name="ssd[ssd_icon_bg_color]"
     1566                                            value="<?php echo esc_attr( $ssd_icon_bg_color ); ?>" type="text"
     1567                                            class="ssd_cpa-color-picker">
    13131568                                    </td>
    13141569                                </tr>
     
    13221577                            <tbody>
    13231578                                <tr class="disable_li">
    1324                                     <td><i class="fa fa-lock"></i>&nbsp;<?php esc_html_e( 'Display Title', 'social-stream-design' ); ?></td>
    1325                                     <td>
    1326                                         <div class="radio-group">
    1327                                             <input type="radio" id="ssd_display_title_yes" class="ssd_display_title yes" name="ssd[ssd_display_title]" value="1" <?php echo ( 1 == $ssd_display_title ) ? ' checked="checked"' : ''; ?>><label for="ssd_display_title_yes"><?php esc_html_e( 'Yes', 'social-stream-design' ); ?></label>
    1328                                             <input type="radio" id="display_title_no" class="ssd_display_title no" name="ssd[ssd_display_title]" value="0" <?php echo ( 0 == $ssd_display_title ) ? ' checked="checked"' : ''; ?> ><label for="display_title_no"><?php esc_html_e( 'No', 'social-stream-design' ); ?></label>
    1329                                         </div>
    1330                                     </td>
    1331                                 </tr>
     1579                                    <td><i
     1580                                            class="fa fa-lock"></i>&nbsp;<?php esc_html_e( 'Display Title', 'social-stream-design' ); ?>
     1581                                    </td>
     1582                                    <td>
     1583                                       
     1584                                        <div class="radio-group">
     1585                                            <input type="radio" id="ssd_display_title_yes" class="ssd_display_title yes"
     1586                                                name="ssd[ssd_display_title]" value="1" <?php echo ( 1 == $ssd_display_title ) ? ' checked="checked"' : ''; ?>><label
     1587                                                for="ssd_display_title_yes"><?php esc_html_e( 'Yes', 'social-stream-design' ); ?></label>
     1588                                            <input type="radio" id="display_title_no" class="ssd_display_title no"
     1589                                                name="ssd[ssd_display_title]" value="0" <?php echo ( 0 == $ssd_display_title ) ? ' checked="checked"' : ''; ?>><label
     1590                                                for="display_title_no"><?php esc_html_e( 'No', 'social-stream-design' ); ?></label>
     1591                                        </div>
     1592                                    </td>
     1593                                </tr>
     1594
     1595                                </tr class=>
     1596                                <?php echo esc_attr( isset( $ssd_settings['ssd_title_display_number_lines'] ) ); ?>
     1597
    13321598                                <tr class="ssd_title_settings_tr disable_li">
    1333                                     <td><i class="fa fa-lock"></i>&nbsp;<?php esc_html_e( 'Display Title Link', 'social-stream-design' ); ?></td>
    1334                                     <td>
    1335                                         <div class="radio-group">
    1336                                             <input type="radio" id="ssd_display_title_link_yes" class="ssd_display_title_link yes" name="ssd[ssd_display_title_link]" value="1" <?php echo ( 1 == $ssd_display_title_link ) ? ' checked="checked"' : ''; ?>><label for="ssd_display_title_link_yes"><?php esc_html_e( 'Yes', 'social-stream-design' ); ?></label>
    1337                                             <input type="radio" id="display_title_link_no" class="ssd_display_title_link no" name="ssd[ssd_display_title_link]" value="0" <?php echo ( 0 == $ssd_display_title_link ) ? ' checked="checked"' : ''; ?> ><label for="display_title_link_no"><?php esc_html_e( 'No', 'social-stream-design' ); ?></label>
     1599                                    <td><i
     1600                                            class="fa fa-lock"></i> <?php esc_html_e( 'Post Title Maximum Line', 'social-stream-designer' ); ?></td>
     1601                                    <td>
     1602                                       
     1603                                        <div class="radio-group">
     1604                                            <input type="radio" id="ssd_display_title_post_size_yes" class="ssd_display_title_post_size yes" name="ssd[ssd_display_title_post_size]" value="1" <?php echo ( 1 == $ssd_display_title_post_size ) ? ' checked="checked"' : ''; ?>><label for="ssd_display_title_post_size_yes"><?php esc_html_e( 'Yes', 'social-stream-designer' ); ?></label>
     1605                                            <input type="radio" id="ssd_display_title_post_size_no" class="ssd_display_title_post_size no" name="ssd[ssd_display_title_post_size]" value="0" <?php echo ( 0 == $ssd_display_title_post_size ) ? ' checked="checked"' : ''; ?> ><label for="ssd_display_title_post_size_no"><?php esc_html_e( 'No', 'social-stream-designer' ); ?></label>
     1606                                        </div>
     1607                                    </td>
     1608                                </tr>
     1609
     1610                                <tr class="ssd_title_settings_tr cd-additional-options disable_li">
     1611                                    <td >
     1612                                    <i
     1613                                            class="fa fa-lock"></i>
     1614                                    <?php
     1615                                    esc_html_e( 'Display Maximum Number Of Lines', 'social-stream-designer' );
     1616
     1617                                    ?>
     1618                                    </td>
     1619                                    <td >
     1620                                    <?php
     1621                                    $ssd_title_setting = isset( $ssd_settings['ssd_title_display_number_lines'] ) ? esc_attr( $ssd_settings['ssd_title_display_number_lines'] ) : '4';
     1622                                    ?>
     1623                                   
     1624                                        <div class="ssd-col-xs-6  ">
     1625                                            <input type="number" min="0" step="1" class disabled="ssd_number_fields " name="ssd[ssd_title_display_number_lines]" value="<?php echo isset( $ssd_settings['ssd_title_display_number_lines'] ) ? esc_attr( $ssd_settings['ssd_title_display_number_lines'] ) : '1'; ?>" />
     1626                                        </div>
     1627                                    </td>
     1628                                </tr>
     1629
     1630
     1631                                <tr class="ssd_title_settings_tr disable_li">
     1632                                    <td><i
     1633                                            class="fa fa-lock"></i> <?php esc_html_e( 'Post Title Break Words', 'social-stream-designer' ); ?></td>
     1634                                    <td>
     1635
     1636                                        <div class="radio-group">
     1637
     1638                                            <input type="radio" id="ssd_display_title_post_default"
     1639                                                class="ssd_display_title_post_break yes"
     1640                                                name="ssd[ssd_display_title_post_break]" value="default" <?php echo ( 'default' == $ssd_display_title_post_break ) ? ' checked="checked"' : ''; ?>><label
     1641                                                for="ssd_display_title_post_default"><?php esc_html_e( 'Default', 'social-stream-designer' ); ?></label>
     1642
     1643                                            <input type="radio" id="ssd_display_title_post_break-all"
     1644                                                class="ssd_display_title_post_break yes"
     1645                                                name="ssd[ssd_display_title_post_break]" value="break-all" <?php echo ( 'break-all' == $ssd_display_title_post_break ) ? ' checked="checked"' : ''; ?>><label
     1646                                                for="ssd_display_title_post_break-all"><?php esc_html_e( 'Break-All', 'social-stream-designer' ); ?></label>
     1647
     1648                                            <input type="radio" id="ssd_display_title_post_break-word"
     1649                                                class="ssd_display_title_post_break yes"
     1650                                                name="ssd[ssd_display_title_post_break]" value="break-word" <?php echo ( 'break-word' == $ssd_display_title_post_break ) ? ' checked="checked"' : ''; ?>><label
     1651                                                for="ssd_display_title_post_break-word"><?php esc_html_e( 'Break-Words', 'social-stream-designer' ); ?></label>
     1652
     1653
     1654                                        </div>
     1655                                    </td>
     1656                                </tr>
     1657
     1658                                <tr class="ssd_title_settings_tr disable_li">
     1659                                    <td><i
     1660                                            class="fa fa-lock"></i>&nbsp;<?php esc_html_e( 'Display Title Link', 'social-stream-design' ); ?>
     1661                                    </td>
     1662                                    <td>
     1663                                        <div class="radio-group">
     1664                                            <input type="radio" id="ssd_display_title_link_yes"
     1665                                                class="ssd_display_title_link yes" name="ssd[ssd_display_title_link]"
     1666                                                value="1" <?php echo ( 1 == $ssd_display_title_link ) ? ' checked="checked"' : ''; ?>><label
     1667                                                for="ssd_display_title_link_yes"><?php esc_html_e( 'Yes', 'social-stream-design' ); ?></label>
     1668                                            <input type="radio" id="display_title_link_no"
     1669                                                class="ssd_display_title_link no" name="ssd[ssd_display_title_link]"
     1670                                                value="0" <?php echo ( 0 == $ssd_display_title_link ) ? ' checked="checked"' : ''; ?>><label
     1671                                                for="display_title_link_no"><?php esc_html_e( 'No', 'social-stream-design' ); ?></label>
    13381672                                        </div>
    13391673                                    </td>
     
    13411675                                <tr class="ssd_title_settings_tr disable_li">
    13421676                                    <td><i class="fa fa-lock"></i>&nbsp;
    1343                                     <?php
    1344                                     esc_html_e( 'Title Font Size', 'social-stream-design' );
    1345                                     echo ' (px)';
    1346                                     ?>
     1677                                        <?php
     1678                                        esc_html_e( 'Title Font Size', 'social-stream-design' );
     1679                                        echo ' (px)';
     1680                                        ?>
    13471681                                    </td>
    13481682                                    <td>
    13491683                                        <div class="ssd-col-xs-6">
    1350                                             <input disabled type="number" min="0" step="1" class="ssd_number_field" name="ssd[ssd_title_font_size]" value="<?php echo isset( $ssd_settings['ssd_title_font_size'] ) ? esc_attr( $ssd_settings['ssd_title_font_size'] ) : '16'; ?>" />
     1684                                            <input disabled type="number" min="0" step="1" class="ssd_number_field"
     1685                                                name="ssd[ssd_title_font_size]"
     1686                                                value="<?php echo isset( $ssd_settings['ssd_title_font_size'] ) ? esc_attr( $ssd_settings['ssd_title_font_size'] ) : '16'; ?>" />
    13511687                                        </div>
    13521688                                    </td>
    13531689                                </tr>
    13541690                                <tr class="ssd_title_settings_tr disable_li">
    1355                                     <td><i class="fa fa-lock"></i>&nbsp;<?php esc_html_e( 'Title Color', 'social-stream-design' ); ?></td>
    1356                                     <td>
    1357                                         <input name="ssd[ssd_title_color]" value="<?php echo esc_attr( $ssd_title_color ); ?>" type="text" class="ssd_cpa-color-picker">
     1691                                    <td><i
     1692                                            class="fa fa-lock"></i>&nbsp;<?php esc_html_e( 'Title Color', 'social-stream-design' ); ?>
     1693                                    </td>
     1694                                    <td>
     1695                                        <input name="ssd[ssd_title_color]"
     1696                                            value="<?php echo esc_attr( $ssd_title_color ); ?>" type="text"
     1697                                            class="ssd_cpa-color-picker">
    13581698                                    </td>
    13591699                                </tr>
    13601700                                <tr class="ssd_title_settings_tr ssd_title_hover_settings_tr disable_li">
    1361                                     <td><i class="fa fa-lock"></i>&nbsp;<?php esc_html_e( 'Title Hover Color', 'social-stream-design' ); ?></td>
    1362                                     <td>
    1363                                         <input name="ssd[ssd_title_hover_color]" value="<?php echo esc_attr( $ssd_title_hover_color ); ?>" type="text" class="ssd_cpa-color-picker">
     1701                                    <td><i
     1702                                            class="fa fa-lock"></i>&nbsp;<?php esc_html_e( 'Title Hover Color', 'social-stream-design' ); ?>
     1703                                    </td>
     1704                                    <td>
     1705                                        <input name="ssd[ssd_title_hover_color]"
     1706                                            value="<?php echo esc_attr( $ssd_title_hover_color ); ?>" type="text"
     1707                                            class="ssd_cpa-color-picker">
    13641708                                    </td>
    13651709                                </tr>
    13661710                                <tr class="ssd_title_settings_tr disable_li">
    1367                                     <td><i class="fa fa-lock"></i>&nbsp;<?php esc_html_e( 'Title Background Color', 'social-stream-design' ); ?></td>
     1711                                    <td><i
     1712                                            class="fa fa-lock"></i>&nbsp;<?php esc_html_e( 'Title Background Color', 'social-stream-design' ); ?>
     1713                                    </td>
    13681714                                    <td>
    13691715                                        <input name="" value="" type="text" class="ssd_cpa-color-picker">
     
    13711717                                </tr>
    13721718                                <tr class="ssd_title_settings_tr disable_li">
    1373                                     <td class="ssd_label_fit_content" ><i class="fa fa-lock"></i>&nbsp;<?php esc_html_e( 'Title Padding', 'social-stream-design' ); ?></td>
    1374                                     <td>
    1375                                         <div class="ssd-col-xs-2">
    1376                                             <div class="ssd_border_cover">
    1377                                                 <label><?php echo esc_html( 'Top' ); ?>&nbsp;(px)<br/></label>
    1378                                                 <input type="number" class="ssd_number_field" min="0" step="1" name="" value="20" />
    1379                                             </div>
    1380                                         </div>
    1381                                         <div class="ssd-col-xs-2">
    1382                                             <div class="ssd_border_cover">
    1383                                                 <label><?php echo esc_html( 'Bottom' ); ?>&nbsp;(px)<br/></label>
    1384                                                 <input type="number" class="ssd_number_field" min="0" step="1" name="" value="20" />
     1719                                    <td class="ssd_label_fit_content"><i
     1720                                            class="fa fa-lock"></i>&nbsp;<?php esc_html_e( 'Title Padding', 'social-stream-design' ); ?>
     1721                                    </td>
     1722                                    <td>
     1723                                        <div class="ssd-col-xs-2">
     1724                                            <div class="ssd_border_cover">
     1725                                                <label><?php echo esc_html( 'Top' ); ?>&nbsp;(px)<br /></label>
     1726                                                <input type="number" class="ssd_number_field" min="0" step="1" name=""
     1727                                                    value="20" />
     1728                                            </div>
     1729                                        </div>
     1730                                        <div class="ssd-col-xs-2">
     1731                                            <div class="ssd_border_cover">
     1732                                                <label><?php echo esc_html( 'Bottom' ); ?>&nbsp;(px)<br /></label>
     1733                                                <input type="number" class="ssd_number_field" min="0" step="1" name=""
     1734                                                    value="20" />
    13851735                                            </div>
    13861736                                        </div>
     
    13881738                                </tr>
    13891739                                <tr class="ssd_title_settings_tr disable_li">
    1390                                     <td class="ssd_label_fit_content" ><i class="fa fa-lock"></i>&nbsp;<?php echo esc_html( 'Title Margin' ); ?></td>
    1391                                     <td>
    1392                                         <div class="ssd-col-xs-2">
    1393                                             <div class="ssd_border_cover">
    1394                                                 <label><?php echo esc_html( 'Top' ); ?>&nbsp;(px)<br/></label>
    1395                                                 <input type="number" class="ssd_number_field" min="0" step="1" name="" value="0" />
    1396                                             </div>
    1397                                         </div>
    1398                                         <div class="ssd-col-xs-2">
    1399                                             <div class="ssd_border_cover">
    1400                                                 <label><?php echo esc_html( 'Bottom' ); ?>&nbsp;(px)<br/></label>
    1401                                                 <input type="number" class="ssd_number_field" min="0" step="1" name="" value="0" />
     1740                                    <td class="ssd_label_fit_content"><i
     1741                                            class="fa fa-lock"></i>&nbsp;<?php echo esc_html( 'Title Margin' ); ?></td>
     1742                                    <td>
     1743                                        <div class="ssd-col-xs-2">
     1744                                            <div class="ssd_border_cover">
     1745                                                <label><?php echo esc_html( 'Top' ); ?>&nbsp;(px)<br /></label>
     1746                                                <input type="number" class="ssd_number_field" min="0" step="1" name=""
     1747                                                    value="0" />
     1748                                            </div>
     1749                                        </div>
     1750                                        <div class="ssd-col-xs-2">
     1751                                            <div class="ssd_border_cover">
     1752                                                <label><?php echo esc_html( 'Bottom' ); ?>&nbsp;(px)<br /></label>
     1753                                                <input type="number" class="ssd_number_field" min="0" step="1" name=""
     1754                                                    value="0" />
    14021755                                            </div>
    14031756                                        </div>
     
    14051758                                </tr>
    14061759                                <tr class="ssd_title_settings_tr disable_li">
    1407                                     <td><i class="fa fa-lock"></i>&nbsp;<?php esc_html_e( 'Title Font Weight', 'social-stream-design' ); ?></td>
     1760                                    <td><i
     1761                                            class="fa fa-lock"></i>&nbsp;<?php esc_html_e( 'Title Font Weight', 'social-stream-design' ); ?>
     1762                                    </td>
    14081763                                    <td>
    14091764                                        <div class="ssd-col-xs-4">
    1410                                             <select disabled id="ssd_title_font_weight" class="ssd_stream_select" name="" >
     1765                                            <select disabled id="ssd_title_font_weight" class="ssd_stream_select"
     1766                                                name="">
    14111767                                                <option value=""><?php echo '100'; ?></option>
    14121768                                                <option value=""><?php echo '200'; ?></option>
     
    14361792                                    <td>
    14371793                                        <div class="radio-group">
    1438                                             <input type="radio" id="ssd_display_content_yes" class="ssd_display_content yes" name="ssd[ssd_display_content]" value="1" <?php echo ( 1 == $ssd_display_content ) ? ' checked="checked"' : ''; ?>><label for="ssd_display_content_yes"><?php esc_html_e( 'Yes', 'social-stream-design' ); ?></label>
    1439                                             <input type="radio" id="display_content_no" class="ssd_display_content no" name="ssd[ssd_display_content]" value="0" <?php echo ( 0 == $ssd_display_content ) ? ' checked="checked"' : ''; ?> ><label for="display_content_no"><?php esc_html_e( 'No', 'social-stream-design' ); ?></label>
     1794                                            <input type="radio" id="ssd_display_content_yes"
     1795                                                class="ssd_display_content yes" name="ssd[ssd_display_content]"
     1796                                                value="1" <?php echo ( 1 == $ssd_display_content ) ? ' checked="checked"' : ''; ?>><label
     1797                                                for="ssd_display_content_yes"><?php esc_html_e( 'Yes', 'social-stream-design' ); ?></label>
     1798                                            <input type="radio" id="display_content_no" class="ssd_display_content no"
     1799                                                name="ssd[ssd_display_content]" value="0" <?php echo ( 0 == $ssd_display_content ) ? ' checked="checked"' : ''; ?>><label
     1800                                                for="display_content_no"><?php esc_html_e( 'No', 'social-stream-design' ); ?></label>
    14401801                                        </div>
    14411802                                    </td>
     
    14461807                                    <td>
    14471808                                        <div class="ssd-col-xs-6">
    1448                                             <input type="number" min="0" step="1" name="ssd[ssd_content_limit]" value="<?php echo isset( $ssd_settings['ssd_content_limit'] ) && '' !== $ssd_settings['ssd_content_limit'] ? esc_attr( $ssd_settings['ssd_content_limit'] ) : esc_attr( $ssd_content_limit ); ?>" />&nbsp;
    1449                                         </div>
    1450                                         <p class="description"><?php esc_html_e( 'Enter the number of words to display in content. Leave blank if you want to display whole content.', 'social-stream-design' ); ?></p>
     1809                                            <input type="number" min="0" step="1" name="ssd[ssd_content_limit]"
     1810                                                value="<?php echo isset( $ssd_settings['ssd_content_limit'] ) && '' !== $ssd_settings['ssd_content_limit'] ? esc_attr( $ssd_settings['ssd_content_limit'] ) : esc_attr( $ssd_content_limit ); ?>" />&nbsp;
     1811                                        </div>
     1812                                        <p class="description">
     1813                                            <?php esc_html_e( 'Enter the number of words to display in content. Leave blank if you want to display whole content.', 'social-stream-design' ); ?>
     1814                                        </p>
    14511815                                    </td>
    14521816                                </tr>
    14531817                                <tr class="ssd_content_settings_tr">
    14541818                                    <td>
    1455                                     <?php
    1456                                     esc_html_e( 'Content Font Size', 'social-stream-design' );
    1457                                     echo ' (px)';
    1458                                     ?>
     1819                                        <?php
     1820                                        esc_html_e( 'Content Font Size', 'social-stream-design' );
     1821                                        echo ' (px)';
     1822                                        ?>
    14591823                                    </td>
    14601824                                    <td>
    14611825                                        <div class="ssd-col-xs-6">
    1462                                             <input type="number" min="0" max="50" step="1" class="ssd_number_field" name="ssd[ssd_content_font_size]" value="<?php echo isset( $ssd_settings['ssd_content_font_size'] ) ? esc_attr( $ssd_settings['ssd_content_font_size'] ) : '14'; ?>" />
     1826                                            <input type="number" min="0" max="50" step="1" class="ssd_number_field"
     1827                                                name="ssd[ssd_content_font_size]"
     1828                                                value="<?php echo isset( $ssd_settings['ssd_content_font_size'] ) ? esc_attr( $ssd_settings['ssd_content_font_size'] ) : '14'; ?>" />
    14631829                                        </div>
    14641830                                    </td>
     
    14671833                                    <td><?php esc_html_e( 'Content Color', 'social-stream-design' ); ?></td>
    14681834                                    <td>
    1469                                         <input name="ssd[ssd_content_color]" value="<?php echo esc_attr( $ssd_content_color ); ?>" type="text" class="ssd_cpa-color-picker">
     1835                                        <input name="ssd[ssd_content_color]"
     1836                                            value="<?php echo esc_attr( $ssd_content_color ); ?>" type="text"
     1837                                            class="ssd_cpa-color-picker">
    14701838                                    </td>
    14711839                                </tr>
     
    14771845                                </tr> -->
    14781846                                <tr class="ssd_content_settings_tr disable_li">
    1479                                     <td><i class="fa fa-lock"></i>&nbsp;<?php esc_html_e( 'Content Background Color', 'social-stream-design' ); ?></td>
     1847                                    <td><i
     1848                                            class="fa fa-lock"></i>&nbsp;<?php esc_html_e( 'Content Background Color', 'social-stream-design' ); ?>
     1849                                    </td>
    14801850                                    <td>
    14811851                                        <input name="" value="" type="text" class="ssd_cpa-color-picker">
     
    14831853                                </tr>
    14841854                                <tr class="ssd_content_settings_tr disable_li">
    1485                                     <td class="ssd_label_fit_content" ><i class="fa fa-lock"></i>&nbsp;<?php echo esc_html( 'Content Padding' ); ?></td>
    1486                                     <td>
    1487                                         <div class="ssd-col-xs-2">
    1488                                             <div class="ssd_border_cover">
    1489                                                 <label><?php echo esc_html( 'Top' ); ?>&nbsp;(px)<br/></label>
    1490                                                 <input type="number" class="ssd_number_field" min="0" step="1" name="" value="0" />
    1491                                             </div>
    1492                                         </div>
    1493                                         <div class="ssd-col-xs-2">
    1494                                             <div class="ssd_border_cover">
    1495                                                 <label><?php echo esc_html( 'Bottom' ); ?>&nbsp;(px)<br/></label>
    1496                                                 <input type="number" class="ssd_number_field" min="0" step="1"  name="" value="0" />
     1855                                    <td class="ssd_label_fit_content"><i
     1856                                            class="fa fa-lock"></i>&nbsp;<?php echo esc_html( 'Content Padding' ); ?>
     1857                                    </td>
     1858                                    <td>
     1859                                        <div class="ssd-col-xs-2">
     1860                                            <div class="ssd_border_cover">
     1861                                                <label><?php echo esc_html( 'Top' ); ?>&nbsp;(px)<br /></label>
     1862                                                <input type="number" class="ssd_number_field" min="0" step="1" name=""
     1863                                                    value="0" />
     1864                                            </div>
     1865                                        </div>
     1866                                        <div class="ssd-col-xs-2">
     1867                                            <div class="ssd_border_cover">
     1868                                                <label><?php echo esc_html( 'Bottom' ); ?>&nbsp;(px)<br /></label>
     1869                                                <input type="number" class="ssd_number_field" min="0" step="1" name=""
     1870                                                    value="0" />
    14971871                                            </div>
    14981872                                        </div>
     
    15001874                                </tr>
    15011875                                <tr class="ssd_content_settings_tr disable_li">
    1502                                     <td class="ssd_label_fit_content" ><i class="fa fa-lock"></i>&nbsp;<?php echo esc_html( 'Content Margin' ); ?></td>
    1503                                     <td>
    1504                                         <div class="ssd-col-xs-2">
    1505                                             <div class="ssd_border_cover">
    1506                                                 <label><?php echo esc_html( 'Top' ); ?>&nbsp;(px)<br/></label>
    1507                                                 <input type="number" class="ssd_number_field" min="0" step="1" name="" value="0" />
    1508                                             </div>
    1509                                         </div>
    1510                                         <div class="ssd-col-xs-2">
    1511                                             <div class="ssd_border_cover">
    1512                                                 <label><?php echo esc_html( 'Bottom' ); ?>&nbsp;(px)<br/></label>
    1513                                                 <input type="number" class="ssd_number_field" min="0" step="1" name="" value="15" />
     1876                                    <td class="ssd_label_fit_content"><i
     1877                                            class="fa fa-lock"></i>&nbsp;<?php echo esc_html( 'Content Margin' ); ?>
     1878                                    </td>
     1879                                    <td>
     1880                                        <div class="ssd-col-xs-2">
     1881                                            <div class="ssd_border_cover">
     1882                                                <label><?php echo esc_html( 'Top' ); ?>&nbsp;(px)<br /></label>
     1883                                                <input type="number" class="ssd_number_field" min="0" step="1" name=""
     1884                                                    value="0" />
     1885                                            </div>
     1886                                        </div>
     1887                                        <div class="ssd-col-xs-2">
     1888                                            <div class="ssd_border_cover">
     1889                                                <label><?php echo esc_html( 'Bottom' ); ?>&nbsp;(px)<br /></label>
     1890                                                <input type="number" class="ssd_number_field" min="0" step="1" name=""
     1891                                                    value="15" />
    15141892                                            </div>
    15151893                                        </div>
     
    15251903                            <tbody>
    15261904                                <tr>
    1527                                     <td><?php esc_html_e( 'Display Feeds Without Media', 'social-stream-design' ); ?></td>
    1528                                     <td>
    1529                                         <div class="radio-group">
    1530                                             <input type="radio" id="ssd_display_feed_without_media_yes" class="ssd_display_feed_without_media yes" name="ssd[ssd_display_feed_without_media]" value="1" <?php echo ( 1 == $ssd_display_feed_without_media ) ? ' checked="checked"' : ''; ?>><label for="ssd_display_feed_without_media_yes"><?php esc_html_e( 'Yes', 'social-stream-design' ); ?></label>
    1531                                             <input type="radio" id="ssd_display_feed_without_media_no" class="ssd_display_feed_without_media no" name="ssd[ssd_display_feed_without_media]" value="0" <?php echo ( 0 == $ssd_display_feed_without_media ) ? ' checked="checked"' : ''; ?> ><label for="ssd_display_feed_without_media_no"><?php esc_html_e( 'No', 'social-stream-design' ); ?></label>
    1532                                         </div>
    1533                                         <p class="description"><?php esc_html_e( 'Show/Hide feeds which do not have the media.', 'social-stream-design' ); ?></p>
     1905                                    <td><?php esc_html_e( 'Display Feeds Without Media', 'social-stream-design' ); ?>
     1906                                    </td>
     1907                                    <td>
     1908                                        <div class="radio-group">
     1909                                            <input type="radio" id="ssd_display_feed_without_media_yes"
     1910                                                class="ssd_display_feed_without_media yes"
     1911                                                name="ssd[ssd_display_feed_without_media]" value="1" <?php echo ( 1 == $ssd_display_feed_without_media ) ? ' checked="checked"' : ''; ?>><label
     1912                                                for="ssd_display_feed_without_media_yes"><?php esc_html_e( 'Yes', 'social-stream-design' ); ?></label>
     1913                                            <input type="radio" id="ssd_display_feed_without_media_no"
     1914                                                class="ssd_display_feed_without_media no"
     1915                                                name="ssd[ssd_display_feed_without_media]" value="0" <?php echo ( 0 == $ssd_display_feed_without_media ) ? ' checked="checked"' : ''; ?>><label
     1916                                                for="ssd_display_feed_without_media_no"><?php esc_html_e( 'No', 'social-stream-design' ); ?></label>
     1917                                        </div>
     1918                                        <p class="description">
     1919                                            <?php esc_html_e( 'Show/Hide feeds which do not have the media.', 'social-stream-design' ); ?>
     1920                                        </p>
    15341921                                    </td>
    15351922                                </tr>
     
    15381925                                    <td>
    15391926                                        <div class="radio-group">
    1540                                             <input type="radio" id="display_default_image_yes" class="ssd_display_default_image yes" name="ssd[ssd_display_default_image]" value="1" <?php echo ( 1 == $ssd_display_default_image ) ? ' checked="checked"' : ''; ?>><label for="display_default_image_yes"><?php esc_html_e( 'Yes', 'social-stream-design' ); ?></label>
    1541                                             <input type="radio" id="ssd_display_default_image_no" class="ssd_display_default_image no" name="ssd[ssd_display_default_image]" value="0" <?php echo ( 0 == $ssd_display_default_image ) ? ' checked="checked"' : ''; ?> ><label for="ssd_display_default_image_no"><?php esc_html_e( 'No', 'social-stream-design' ); ?></label>
    1542                                         </div>
    1543                                         <p class="description"><?php esc_html_e( 'Enable default image for the feeds which does not have media', 'social-stream-design' ); ?></p>
    1544                                     </td>
    1545                                 </tr>
    1546                                 <tr class="ssd-feeds-without-media-tr ssd-default-image-tr">
     1927                                            <input type="radio" id="display_default_image_yes"
     1928                                                class="ssd_display_default_image yes"
     1929                                                name="ssd[ssd_display_default_image]" value="1" <?php echo ( 1 == $ssd_display_default_image ) ? ' checked="checked"' : ''; ?>><label
     1930                                                for="display_default_image_yes"><?php esc_html_e( 'Yes', 'social-stream-design' ); ?></label>
     1931                                            <input type="radio" id="ssd_display_default_image_no"
     1932                                                class="ssd_display_default_image no"
     1933                                                name="ssd[ssd_display_default_image]" value="0" <?php echo ( 0 == $ssd_display_default_image ) ? ' checked="checked"' : ''; ?>><label
     1934                                                for="ssd_display_default_image_no"><?php esc_html_e( 'No', 'social-stream-design' ); ?></label>
     1935                                        </div>
     1936                                        <p class="description">
     1937                                            <?php esc_html_e( 'Enable default image for the feeds which does not have media', 'social-stream-design' ); ?>
     1938                                        </p>
     1939                                    </td>
     1940                                </tr>
     1941                                <tr class="ssd-default-image-tr">
    15471942                                    <td><?php esc_html_e( 'Upload Default Image', 'social-stream-design' ); ?></td>
    15481943                                    <td>
     
    15571952                                        if ( isset( $ssd_settings['ssd_default_image_src'] ) && '' !== $ssd_settings['ssd_default_image_src'] ) {
    15581953                                            ?>
    1559                                             <input class="button ssd-remove-image-button" value="<?php esc_html_e( 'Remove Image', 'social-stream-design' ); ?>" type="button">
     1954                                            <input class="button ssd-remove-image-button"
     1955                                                value="<?php esc_html_e( 'Remove Image', 'social-stream-design' ); ?>"
     1956                                                type="button">
    15601957                                            <?php
    15611958                                        } else {
    15621959                                            ?>
    1563                                             <input class="button ssd-upload-image-button" value="<?php esc_html_e( 'Upload Image', 'social-stream-design' ); ?>" type="button">
     1960                                            <input class="button ssd-upload-image-button"
     1961                                                value="<?php esc_html_e( 'Upload Image', 'social-stream-design' ); ?>"
     1962                                                type="button">
    15641963                                            <?php
    15651964                                        }
    15661965                                        ?>
    1567                                         <input name="ssd[ssd_default_image_id]" id="ssd_default_image_id" value="<?php echo isset( $ssd_settings['ssd_default_image_id'] ) ? esc_attr( $ssd_settings['ssd_default_image_id'] ) : ''; ?>" type="hidden">
    1568                                         <input name="ssd[ssd_default_image_src]" id="ssd_default_image_src" value="<?php echo isset( $ssd_settings['ssd_default_image_src'] ) ? esc_url( $ssd_settings['ssd_default_image_src'] ) : ''; ?>" type="hidden">
    1569                                         <p class="description"><?php esc_html_e( 'Upload default image', 'social-stream-design' ); ?></p>
     1966                                        <input name="ssd[ssd_default_image_id]" id="ssd_default_image_id"
     1967                                            value="<?php echo isset( $ssd_settings['ssd_default_image_id'] ) ? esc_attr( $ssd_settings['ssd_default_image_id'] ) : ''; ?>"
     1968                                            type="hidden">
     1969                                        <input name="ssd[ssd_default_image_src]" id="ssd_default_image_src"
     1970                                            value="<?php echo isset( $ssd_settings['ssd_default_image_src'] ) ? esc_url( $ssd_settings['ssd_default_image_src'] ) : ''; ?>"
     1971                                            type="hidden">
     1972                                        <p class="description">
     1973                                            <?php esc_html_e( 'Upload default image', 'social-stream-design' ); ?></p>
    15701974                                    </td>
    15711975                                </tr>
    15721976                                <tr class="disable_li">
    1573                                     <td class="ssd_label_fit_content"><i class="fa fa-lock"></i>&nbsp;<?php esc_html_e( 'Margin', 'social-stream-design' ); ?></td>
    1574                                     <td>
    1575                                         <div class="ssd-col-xs-2">
    1576                                             <div class="ssd_border_cover">
    1577                                                 <label><?php echo esc_html( 'Top' ); ?>&nbsp;(px)<br/></label>
    1578                                                 <input disabled type="number" class="ssd_number_field" min="0" step="1" name="" value="0" />
     1977                                    <td class="ssd_label_fit_content"><i
     1978                                            class="fa fa-lock"></i>&nbsp;<?php esc_html_e( 'Margin', 'social-stream-design' ); ?>
     1979                                    </td>
     1980                                    <td>
     1981                                        <div class="ssd-col-xs-2">
     1982                                            <div class="ssd_border_cover">
     1983                                                <label><?php echo esc_html( 'Top' ); ?>&nbsp;(px)<br /></label>
     1984                                                <input disabled type="number" class="ssd_number_field" min="0" step="1"
     1985                                                    name="" value="0" />
    15791986                                            </div>
    15801987                                        </div>
    15811988                                        <div class="ssd-col-xs-2 ssd-media-margin-bottom">
    15821989                                            <div class="ssd_border_cover">
    1583                                                 <label><?php echo esc_html( 'Bottom' ); ?>&nbsp;(px)<br/></label>
    1584                                                 <input disabled type="number" class="ssd_number_field" min="0" step="1" name="" value="20" />
     1990                                                <label><?php echo esc_html( 'Bottom' ); ?>&nbsp;(px)<br /></label>
     1991                                                <input disabled type="number" class="ssd_number_field" min="0" step="1"
     1992                                                    name="" value="20" />
    15851993                                            </div>
    15861994                                        </div>
     
    15881996                                </tr>
    15891997                                <tr class="disable_li">
    1590                                     <td class="ssd_label_fit_content"><i class="fa fa-lock"></i>&nbsp;<?php esc_html_e( 'Display Gallery Slider Arrows', 'social-stream-design' ); ?></td>
    1591                                     <td>
    1592                                         <div class="radio-group">
    1593                                             <input type="radio" id="display_media_slider_nav_yes" class="display_media_slider_nav yes" name="" value="1" ><label for="display_media_slider_nav_yes"><?php esc_html_e( 'Yes', 'social-stream-design' ); ?></label>
    1594                                             <input type="radio" id="display_media_slider_nav_no" class="display_media_slider_nav no" name="" value="0" checked="checked" ><label for="display_media_slider_nav_no"><?php esc_html_e( 'No', 'social-stream-design' ); ?></label>
    1595                                         </div>
    1596                                         <p class="description"><?php esc_html_e( 'Show/Hide Slider navigation icons for media gallery. This option is only work for Instagram feeds.', 'social-stream-design' ); ?></p>
     1998                                    <td class="ssd_label_fit_content"><i
     1999                                            class="fa fa-lock"></i>&nbsp;<?php esc_html_e( 'Display Gallery Slider Arrows', 'social-stream-design' ); ?>
     2000                                    </td>
     2001                                    <td>
     2002                                        <div class="radio-group">
     2003                                            <input type="radio" id="display_media_slider_nav_yes"
     2004                                                class="display_media_slider_nav yes" name="" value="1"><label
     2005                                                for="display_media_slider_nav_yes"><?php esc_html_e( 'Yes', 'social-stream-design' ); ?></label>
     2006                                            <input type="radio" id="display_media_slider_nav_no"
     2007                                                class="display_media_slider_nav no" name="" value="0"
     2008                                                checked="checked"><label
     2009                                                for="display_media_slider_nav_no"><?php esc_html_e( 'No', 'social-stream-design' ); ?></label>
     2010                                        </div>
     2011                                        <p class="description">
     2012                                            <?php esc_html_e( 'Show/Hide Slider navigation icons for media gallery. This option is only work for Instagram feeds.', 'social-stream-design' ); ?>
     2013                                        </p>
    15972014                                    </td>
    15982015                                </tr>
    15992016                                <tr class="disable_li">
    1600                                     <td class="ssd_label_fit_content"><i class="fa fa-lock"></i>&nbsp;<?php esc_html_e( 'Gallery Slider Autoplay', 'social-stream-design' ); ?></td>
    1601                                     <td>
    1602                                         <div class="radio-group">
    1603                                             <input type="radio" id="ssd_display_media_autoplay_yes" class="ssd_display_media_autoplay yes" name="" value="1"><label for="ssd_display_media_autoplay_yes"><?php esc_html_e( 'Yes', 'social-stream-design' ); ?></label>
    1604                                             <input type="radio" id="display_media_autoplay_no" class="ssd_display_media_autoplay no" name="" value="0" checked="checked" ><label for="display_media_autoplay_no"><?php esc_html_e( 'No', 'social-stream-design' ); ?></label>
    1605                                         </div>
    1606                                         <p class="description"><?php esc_html_e( 'Show/Hide slider autoplay. This option is only work for Instagram feeds.', 'social-stream-design' ); ?></p>
     2017                                    <td class="ssd_label_fit_content"><i
     2018                                            class="fa fa-lock"></i>&nbsp;<?php esc_html_e( 'Gallery Slider Autoplay', 'social-stream-design' ); ?>
     2019                                    </td>
     2020                                    <td>
     2021                                        <div class="radio-group">
     2022                                            <input type="radio" id="ssd_display_media_autoplay_yes"
     2023                                                class="ssd_display_media_autoplay yes" name="" value="1"><label
     2024                                                for="ssd_display_media_autoplay_yes"><?php esc_html_e( 'Yes', 'social-stream-design' ); ?></label>
     2025                                            <input type="radio" id="display_media_autoplay_no"
     2026                                                class="ssd_display_media_autoplay no" name="" value="0"
     2027                                                checked="checked"><label
     2028                                                for="display_media_autoplay_no"><?php esc_html_e( 'No', 'social-stream-design' ); ?></label>
     2029                                        </div>
     2030                                        <p class="description">
     2031                                            <?php esc_html_e( 'Show/Hide slider autoplay. This option is only work for Instagram feeds.', 'social-stream-design' ); ?>
     2032                                        </p>
    16072033                                    </td>
    16082034                                </tr>
    16092035                                <tr class="disable_li">
    1610                                     <td class="ssd_label_fit_content"><i class="fa fa-lock"></i>&nbsp;<?php esc_html_e( 'Enter Gallery slider autoplay intervals', 'social-stream-design' ); ?> (ms)</td>
    1611                                     <td>
    1612                                         <input disabled type="number" class="ssd_number_field" min="0" max="1000" step="1"  name="" value="1000" />
    1613                                         <p class="description"><?php esc_html_e( 'Enter autoplay interval time for gallery slider in ms. This option is only work for Instagram feeds.', 'social-stream-design' ); ?></p>
     2036                                    <td class="ssd_label_fit_content"><i
     2037                                            class="fa fa-lock"></i>&nbsp;<?php esc_html_e( 'Enter Gallery slider autoplay intervals', 'social-stream-design' ); ?>
     2038                                        (ms)</td>
     2039                                    <td>
     2040                                        <input disabled type="number" class="ssd_number_field" min="0" max="1000"
     2041                                            step="1" name="" value="1000" />
     2042                                        <p class="description">
     2043                                            <?php esc_html_e( 'Enter autoplay interval time for gallery slider in ms. This option is only work for Instagram feeds.', 'social-stream-design' ); ?>
     2044                                        </p>
    16142045                                    </td>
    16152046                                </tr>
    16162047                                <tr class="disable_li">
    1617                                     <td class="ssd_label_fit_content"><i class="fa fa-lock"></i>&nbsp;<?php esc_html_e( 'Gallery Slider Speed', 'social-stream-design' ); ?> (ms)</td>
    1618                                     <td>
    1619                                         <input disabled type="number" class="ssd_number_field" min="0" max="1000" step="1" name="" value="1000" />
    1620                                         <p class="description"><?php esc_html_e( 'Enter gallery slider speed in ms. This option is only work for Instagram feeds.', 'social-stream-design' ); ?></p>
     2048                                    <td class="ssd_label_fit_content"><i
     2049                                            class="fa fa-lock"></i>&nbsp;<?php esc_html_e( 'Gallery Slider Speed', 'social-stream-design' ); ?>
     2050                                        (ms)</td>
     2051                                    <td>
     2052                                        <input disabled type="number" class="ssd_number_field" min="0" max="1000"
     2053                                            step="1" name="" value="1000" />
     2054                                        <p class="description">
     2055                                            <?php esc_html_e( 'Enter gallery slider speed in ms. This option is only work for Instagram feeds.', 'social-stream-design' ); ?>
     2056                                        </p>
    16212057                                    </td>
    16222058                                </tr>
     
    16332069                                    <td>
    16342070                                        <div class="radio-group">
    1635                                             <input type="radio" id="ssd_display_author_box_yes" class="ssd_display_author_box yes" name="ssd[ssd_display_author_box]" value="1" <?php echo ( 1 == $ssd_display_author_box ) ? ' checked="checked"' : ''; ?>><label for="ssd_display_author_box_yes"><?php esc_html_e( 'Yes', 'social-stream-design' ); ?></label>
    1636                                             <input type="radio" id="display_author_box_no" class="ssd_display_author_box no" name="ssd[ssd_display_author_box]" value="0" <?php echo ( 0 == $ssd_display_author_box ) ? ' checked="checked"' : ''; ?> ><label for="display_author_box_no"><?php esc_html_e( 'No', 'social-stream-design' ); ?></label>
     2071                                            <input type="radio" id="ssd_display_author_box_yes"
     2072                                                class="ssd_display_author_box yes" name="ssd[ssd_display_author_box]"
     2073                                                value="1" <?php echo ( 1 == $ssd_display_author_box ) ? ' checked="checked"' : ''; ?>><label
     2074                                                for="ssd_display_author_box_yes"><?php esc_html_e( 'Yes', 'social-stream-design' ); ?></label>
     2075                                            <input type="radio" id="display_author_box_no"
     2076                                                class="ssd_display_author_box no" name="ssd[ssd_display_author_box]"
     2077                                                value="0" <?php echo ( 0 == $ssd_display_author_box ) ? ' checked="checked"' : ''; ?>><label
     2078                                                for="display_author_box_no"><?php esc_html_e( 'No', 'social-stream-design' ); ?></label>
    16372079                                        </div>
    16382080                                    </td>
    16392081                                </tr>
    16402082                                <tr class="ssd_author_row">
    1641                                     <td><?php esc_html_e( 'Author Image Border Radius', 'social-stream-design' ); ?></td>
    1642                                     <td>
    1643                                         <div class="ssd-col-xs-2">
    1644                                             <div class="ssd_border_cover">
    1645                                                 <input type="number" class="ssd_number_field" min="0" step="1" name="ssd[ssd_author_border_radius]" value="<?php echo isset( $ssd_settings['ssd_author_border_radius'] ) && '' !== $ssd_settings['ssd_author_border_radius'] ? esc_attr( $ssd_settings['ssd_author_border_radius'] ) : '0'; ?>" />
     2083                                    <td><?php esc_html_e( 'Author Image Border Radius', 'social-stream-design' ); ?>
     2084                                    </td>
     2085                                    <td>
     2086                                        <div class="ssd-col-xs-2">
     2087                                            <div class="ssd_border_cover">
     2088                                                <input type="number" class="ssd_number_field" min="0" step="1"
     2089                                                    name="ssd[ssd_author_border_radius]"
     2090                                                    value="<?php echo isset( $ssd_settings['ssd_author_border_radius'] ) && '' !== $ssd_settings['ssd_author_border_radius'] ? esc_attr( $ssd_settings['ssd_author_border_radius'] ) : '0'; ?>" />
    16462091                                            </div>
    16472092                                        </div>
    16482093                                        <div class="ssd-col-xs-5">
    16492094                                            <div class="ssd_border_cover">
    1650                                                 <select id="ssd_author_border_radius_type" class="ssd_stream_select" name="ssd[ssd_author_border_radius_type]" >
     2095                                                <select id="ssd_author_border_radius_type" class="ssd_stream_select"
     2096                                                    name="ssd[ssd_author_border_radius_type]">
    16512097                                                    <option value="px" <?php echo ( 'px' === $ssd_author_border_radius_type ) ? ' selected="selected"' : ''; ?>><?php echo 'px'; ?></option>
    1652                                                     <option value="%" <?php echo ( '%' === $ssd_author_border_radius_type ) ? ' selected="selected"' : ''; ?>><?php echo 'percentage'; ?></option>
     2098                                                    <option value="%" <?php echo ( '%' === $ssd_author_border_radius_type ) ? ' selected="selected"' : ''; ?>><?php echo 'percentage'; ?>
     2099                                                    </option>
    16532100                                                </select>
    16542101                                            </div>
     
    16572104                                </tr>
    16582105                                <tr class="ssd_author_row disable_li">
    1659                                     <td><i class="fa fa-lock"></i>&nbsp;<?php esc_html_e( 'Author Box Background Color', 'social-stream-design' ); ?></td>
     2106                                    <td><i
     2107                                            class="fa fa-lock"></i>&nbsp;<?php esc_html_e( 'Author Box Background Color', 'social-stream-design' ); ?>
     2108                                    </td>
    16602109                                    <td>
    16612110                                        <input name="" value="" type="text" class="ssd_cpa-color-picker">
     
    16652114                                    <td><?php esc_html_e( 'Author Box Title Color', 'social-stream-design' ); ?></td>
    16662115                                    <td>
    1667                                         <input name="ssd[ssd_author_title_color]" value="<?php echo esc_attr( $ssd_author_title_color ); ?>" type="text" class="ssd_cpa-color-picker">
     2116                                        <input name="ssd[ssd_author_title_color]"
     2117                                            value="<?php echo esc_attr( $ssd_author_title_color ); ?>" type="text"
     2118                                            class="ssd_cpa-color-picker">
    16682119                                    </td>
    16692120                                </tr>
    16702121                                <tr class="ssd_author_row">
    1671                                     <td><?php esc_html_e( 'Author Box Hover Title Color', 'social-stream-design' ); ?></td>
    1672                                     <td>
    1673                                         <input name="ssd[ssd_author_title_hover_color]" value="<?php echo esc_attr( $ssd_author_title_hover_color ); ?>" type="text" class="ssd_cpa-color-picker">
     2122                                    <td><?php esc_html_e( 'Author Box Hover Title Color', 'social-stream-design' ); ?>
     2123                                    </td>
     2124                                    <td>
     2125                                        <input name="ssd[ssd_author_title_hover_color]"
     2126                                            value="<?php echo esc_attr( $ssd_author_title_hover_color ); ?>" type="text"
     2127                                            class="ssd_cpa-color-picker">
    16742128                                    </td>
    16752129                                </tr>
     
    16772131                                    <td><?php esc_html_e( 'Author Box Meta Color', 'social-stream-design' ); ?></td>
    16782132                                    <td>
    1679                                         <input name="ssd[ssd_author_meta_color]" value="<?php echo esc_attr( $ssd_author_meta_color ); ?>" type="text" class="ssd_cpa-color-picker">
     2133                                        <input name="ssd[ssd_author_meta_color]"
     2134                                            value="<?php echo esc_attr( $ssd_author_meta_color ); ?>" type="text"
     2135                                            class="ssd_cpa-color-picker">
    16802136                                    </td>
    16812137                                </tr>
    16822138                                <tr class="ssd_author_row disable_li">
    1683                                     <td class="ssd_label_fit_content" ><i class="fa fa-lock"></i>&nbsp;<?php esc_html_e( 'Author Box Padding', 'social-stream-design' ); ?></td>
    1684                                     <td>
    1685                                         <div class="ssd-col-xs-2">
    1686                                             <div class="ssd_border_cover">
    1687                                                 <label><?php echo esc_html( 'Top' ); ?>&nbsp;(px)<br/></label>
    1688                                                 <input type="number" class="ssd_number_field" min="0" step="1" name="" value="0" />
    1689                                             </div>
    1690                                         </div>
    1691                                         <div class="ssd-col-xs-2">
    1692                                             <div class="ssd_border_cover">
    1693                                                 <label><?php echo esc_html( 'Bottom' ); ?>&nbsp;(px)<br/></label>
    1694                                                 <input type="number" class="ssd_number_field" min="0" step="1" name="" value="0" />
     2139                                    <td class="ssd_label_fit_content"><i
     2140                                            class="fa fa-lock"></i>&nbsp;<?php esc_html_e( 'Author Box Padding', 'social-stream-design' ); ?>
     2141                                    </td>
     2142                                    <td>
     2143                                        <div class="ssd-col-xs-2">
     2144                                            <div class="ssd_border_cover">
     2145                                                <label><?php echo esc_html( 'Top' ); ?>&nbsp;(px)<br /></label>
     2146                                                <input type="number" class="ssd_number_field" min="0" step="1" name=""
     2147                                                    value="0" />
     2148                                            </div>
     2149                                        </div>
     2150                                        <div class="ssd-col-xs-2">
     2151                                            <div class="ssd_border_cover">
     2152                                                <label><?php echo esc_html( 'Bottom' ); ?>&nbsp;(px)<br /></label>
     2153                                                <input type="number" class="ssd_number_field" min="0" step="1" name=""
     2154                                                    value="0" />
    16952155                                            </div>
    16962156                                        </div>
     
    16982158                                </tr>
    16992159                                <tr class="ssd_author_row disable_li">
    1700                                     <td class="ssd_label_fit_content" ><i class="fa fa-lock"></i>&nbsp;<?php esc_html_e( 'Author Box Margin', 'social-stream-design' ); ?></td>
    1701                                     <td>
    1702                                         <div class="ssd-col-xs-2">
    1703                                             <div class="ssd_border_cover">
    1704                                                 <label><?php echo esc_html( 'Top' ); ?>&nbsp;(px)<br/></label>
    1705                                                 <input type="number" class="ssd_number_field" min="0" step="1" name="" value="0" />
     2160                                    <td class="ssd_label_fit_content"><i
     2161                                            class="fa fa-lock"></i>&nbsp;<?php esc_html_e( 'Author Box Margin', 'social-stream-design' ); ?>
     2162                                    </td>
     2163                                    <td>
     2164                                        <div class="ssd-col-xs-2">
     2165                                            <div class="ssd_border_cover">
     2166                                                <label><?php echo esc_html( 'Top' ); ?>&nbsp;(px)<br /></label>
     2167                                                <input type="number" class="ssd_number_field" min="0" step="1" name=""
     2168                                                    value="0" />
    17062169                                            </div>
    17072170                                        </div>
    17082171                                        <div class="ssd-col-xs-2 ssd-author-margin-bottom">
    17092172                                            <div class="ssd_border_cover">
    1710                                                 <label><?php echo esc_html( 'Bottom' ); ?>&nbsp;(px)<br/></label>
    1711                                                 <input type="number" class="ssd_number_field" min="-40" step="1" name="" value="20" />
     2173                                                <label><?php echo esc_html( 'Bottom' ); ?>&nbsp;(px)<br /></label>
     2174                                                <input type="number" class="ssd_number_field" min="-40" step="1" name=""
     2175                                                    value="20" />
    17122176                                            </div>
    17132177                                        </div>
     
    17152179                                </tr>
    17162180                                <tr class="ssd_author_row">
    1717                                     <td><?php esc_html_e( 'Display Author Screen Name', 'social-stream-design' ); ?></td>
    1718                                     <td>
    1719                                         <div class="radio-group">
    1720                                             <input type="radio" id="ssd_view_user_name_yes" class="view_user_name yes" name="ssd[ssd_view_user_name]" value="1" <?php echo ( 1 == $ssd_view_user_name ) ? ' checked="checked"' : ''; ?>><label for="ssd_view_user_name_yes"><?php esc_html_e( 'Yes', 'social-stream-design' ); ?></label>
    1721                                             <input type="radio" id="view_user_name_no" class="view_user_name no" name="ssd[ssd_view_user_name]" value="0" <?php echo ( 0 == $ssd_view_user_name ) ? ' checked="checked"' : ''; ?> ><label for="view_user_name_no"><?php esc_html_e( 'No', 'social-stream-design' ); ?></label>
     2181                                    <td><?php esc_html_e( 'Display Author Screen Name', 'social-stream-design' ); ?>
     2182                                    </td>
     2183                                    <td>
     2184                                        <div class="radio-group">
     2185                                            <input type="radio" id="ssd_view_user_name_yes" class="view_user_name yes"
     2186                                                name="ssd[ssd_view_user_name]" value="1" <?php echo ( 1 == $ssd_view_user_name ) ? ' checked="checked"' : ''; ?>><label
     2187                                                for="ssd_view_user_name_yes"><?php esc_html_e( 'Yes', 'social-stream-design' ); ?></label>
     2188                                            <input type="radio" id="view_user_name_no" class="view_user_name no"
     2189                                                name="ssd[ssd_view_user_name]" value="0" <?php echo ( 0 == $ssd_view_user_name ) ? ' checked="checked"' : ''; ?>><label
     2190                                                for="view_user_name_no"><?php esc_html_e( 'No', 'social-stream-design' ); ?></label>
    17222191                                        </div>
    17232192                                    </td>
     
    17272196                                    <td>
    17282197                                        <div class="radio-group">
    1729                                             <input type="radio" id="ssd_view_date_yes" class="yes" name="ssd[ssd_view_date]" value="1" <?php echo ( 1 == $ssd_date ) ? ' checked="checked"' : ''; ?>><label for="ssd_view_date_yes"><?php esc_html_e( 'Yes', 'social-stream-design' ); ?></label>
    1730                                             <input type="radio" id="view_date_no" class="no" name="ssd[ssd_view_date]" value="0" <?php echo ( 0 == $ssd_date ) ? ' checked="checked"' : ''; ?>><label for="view_date_no"><?php esc_html_e( 'No', 'social-stream-design' ); ?></label>
     2198                                            <input type="radio" id="ssd_view_date_yes" class="yes"
     2199                                                name="ssd[ssd_view_date]" value="1" <?php echo ( 1 == $ssd_date ) ? ' checked="checked"' : ''; ?>><label
     2200                                                for="ssd_view_date_yes"><?php esc_html_e( 'Yes', 'social-stream-design' ); ?></label>
     2201                                            <input type="radio" id="view_date_no" class="no" name="ssd[ssd_view_date]"
     2202                                                value="0" <?php echo ( 0 == $ssd_date ) ? ' checked="checked"' : ''; ?>><label
     2203                                                for="view_date_no"><?php esc_html_e( 'No', 'social-stream-design' ); ?></label>
    17312204                                        </div>
    17322205                                    </td>
     
    17432216                                    <td><?php esc_html_e( 'Color', 'social-stream-design' ); ?></td>
    17442217                                    <td>
    1745                                         <input name="ssd[ssd_count_meta_color]" value="<?php echo esc_attr( $ssd_count_meta_color ); ?>" type="text" class="ssd_cpa-color-picker">
     2218                                        <input name="ssd[ssd_count_meta_color]"
     2219                                            value="<?php echo esc_attr( $ssd_count_meta_color ); ?>" type="text"
     2220                                            class="ssd_cpa-color-picker">
    17462221                                    </td>
    17472222                                </tr>
    17482223                                <tr class="disable_li">
    1749                                     <td><i class="fa fa-lock"></i>&nbsp;<?php esc_html_e( 'Background Color', 'social-stream-design' ); ?></td>
     2224                                    <td><i
     2225                                            class="fa fa-lock"></i>&nbsp;<?php esc_html_e( 'Background Color', 'social-stream-design' ); ?>
     2226                                    </td>
    17502227                                    <td>
    17512228                                        <input name="" value="" type="text" class="ssd_cpa-color-picker">
     
    17532230                                </tr>
    17542231                                <tr class="disable_li">
    1755                                     <td><i class="fa fa-lock"></i>&nbsp;<?php esc_html_e( 'Hover Color', 'social-stream-design' ); ?></td>
     2232                                    <td><i
     2233                                            class="fa fa-lock"></i>&nbsp;<?php esc_html_e( 'Hover Color', 'social-stream-design' ); ?>
     2234                                    </td>
    17562235                                    <td>
    17572236                                        <input name="" value="" type="text" class="ssd_cpa-color-picker">
     
    17592238                                </tr>
    17602239                                <tr class="disable_li">
    1761                                     <td class="ssd_label_fit_content" ><i class="fa fa-lock"></i>&nbsp;<?php echo esc_html( 'Border' ); ?></td>
     2240                                    <td class="ssd_label_fit_content"><i
     2241                                            class="fa fa-lock"></i>&nbsp;<?php echo esc_html( 'Border' ); ?></td>
    17622242                                    <td>
    17632243                                        <div class="ssd_border_cover">
    1764                                             <label><?php echo esc_html( 'Top' ); ?>&nbsp;(px)<br/></label>
     2244                                            <label><?php echo esc_html( 'Top' ); ?>&nbsp;(px)<br /></label>
    17652245                                            <div class="ssd-col-xs-2">
    1766                                                 <input type="number" class="ssd_number_field" min="0" step="1" name="" value="1" />
     2246                                                <input type="number" class="ssd_number_field" min="0" step="1" name=""
     2247                                                    value="1" />
    17672248                                            </div>
    17682249                                            <div class="ssd-col-xs-2">
     
    17792260                                        </div>
    17802261                                        <div class="ssd_border_cover">
    1781                                             <label><?php echo esc_html( 'Bottom' ); ?>&nbsp;(px)<br/></label>
     2262                                            <label><?php echo esc_html( 'Bottom' ); ?>&nbsp;(px)<br /></label>
    17822263                                            <div class="ssd-col-xs-2">
    1783                                                 <input type="number" class="ssd_number_field" min="0" step="1" name="" value="0" />
     2264                                                <input type="number" class="ssd_number_field" min="0" step="1" name=""
     2265                                                    value="0" />
    17842266                                            </div>
    17852267                                            <div class="ssd-col-xs-2">
     
    17972279
    17982280                                        <div class="ssd_border_cover">
    1799                                             <label><?php echo esc_html( 'Right' ); ?>&nbsp;(px)<br/></label>
     2281                                            <label><?php echo esc_html( 'Right' ); ?>&nbsp;(px)<br /></label>
    18002282                                            <div class="ssd-col-xs-2">
    1801                                                 <input type="number" class="ssd_number_field" min="0" step="1" name="" value="0" />
     2283                                                <input type="number" class="ssd_number_field" min="0" step="1" name=""
     2284                                                    value="0" />
    18022285                                            </div>
    18032286                                            <div class="ssd-col-xs-2">
     
    18152298
    18162299                                        <div class="ssd_border_cover">
    1817                                             <label><?php echo esc_html( 'Left' ); ?>&nbsp;(px)<br/></label>
     2300                                            <label><?php echo esc_html( 'Left' ); ?>&nbsp;(px)<br /></label>
    18182301                                            <div class="ssd-col-xs-2">
    1819                                                 <input type="number" class="ssd_number_field" min="0" step="1" name="" value="0" />
     2302                                                <input type="number" class="ssd_number_field" min="0" step="1" name=""
     2303                                                    value="0" />
    18202304                                            </div>
    18212305                                            <div class="ssd-col-xs-2">
     
    18352319                                </tr>
    18362320                                <tr class="disable_li">
    1837                                     <td class="ssd_label_fit_content" ><i class="fa fa-lock"></i>&nbsp;<?php esc_html_e( 'Bar Padding', 'social-stream-design' ); ?></td>
    1838                                     <td>
    1839                                         <div class="ssd-col-xs-2">
    1840                                             <div class="ssd_border_cover">
    1841                                                 <label><?php echo esc_html( 'Top' ); ?>&nbsp;(px)<br/></label>
    1842                                                 <input type="number" class="ssd_number_field" min="0" step="1" name="" value="0" />
    1843                                             </div>
    1844                                         </div>
    1845                                         <div class="ssd-col-xs-2">
    1846                                             <div class="ssd_border_cover">
    1847                                                 <label><?php echo esc_html( 'Bottom' ); ?>&nbsp;(px)<br/></label>
    1848                                                 <input type="number" class="ssd_number_field" min="0" step="1" name="" value="0" />
     2321                                    <td class="ssd_label_fit_content"><i
     2322                                            class="fa fa-lock"></i>&nbsp;<?php esc_html_e( 'Bar Padding', 'social-stream-design' ); ?>
     2323                                    </td>
     2324                                    <td>
     2325                                        <div class="ssd-col-xs-2">
     2326                                            <div class="ssd_border_cover">
     2327                                                <label><?php echo esc_html( 'Top' ); ?>&nbsp;(px)<br /></label>
     2328                                                <input type="number" class="ssd_number_field" min="0" step="1" name=""
     2329                                                    value="0" />
     2330                                            </div>
     2331                                        </div>
     2332                                        <div class="ssd-col-xs-2">
     2333                                            <div class="ssd_border_cover">
     2334                                                <label><?php echo esc_html( 'Bottom' ); ?>&nbsp;(px)<br /></label>
     2335                                                <input type="number" class="ssd_number_field" min="0" step="1" name=""
     2336                                                    value="0" />
    18492337                                            </div>
    18502338                                        </div>
     
    18522340                                </tr>
    18532341                                <tr class="disable_li">
    1854                                     <td class="ssd_label_fit_content" ><i class="fa fa-lock"></i>&nbsp;<?php esc_html_e( 'Bar Margin', 'social-stream-design' ); ?></td>
    1855                                     <td>
    1856                                         <div class="ssd-col-xs-2">
    1857                                             <div class="ssd_border_cover">
    1858                                                 <label><?php echo esc_html( 'Top' ); ?>&nbsp;(px)<br/></label>
    1859                                                 <input type="number" class="ssd_number_field" min="0" step="1" name="ssd[ssd_count_margin_top]" value="<?php echo esc_attr( $ssd_count_margin_top ); ?>" />
    1860                                             </div>
    1861                                         </div>
    1862                                         <div class="ssd-col-xs-2">
    1863                                             <div class="ssd_border_cover">
    1864                                                 <label><?php echo esc_html( 'Bottom' ); ?>&nbsp;(px)<br/></label>
    1865                                                 <input type="number" class="ssd_number_field" min="0" step="1"  name="ssd[ssd_count_margin_bottom]" value="<?php echo esc_attr( $ssd_count_margin_bottom ); ?>" />
     2342                                    <td class="ssd_label_fit_content"><i
     2343                                            class="fa fa-lock"></i>&nbsp;<?php esc_html_e( 'Bar Margin', 'social-stream-design' ); ?>
     2344                                    </td>
     2345                                    <td>
     2346                                        <div class="ssd-col-xs-2">
     2347                                            <div class="ssd_border_cover">
     2348                                                <label><?php echo esc_html( 'Top' ); ?>&nbsp;(px)<br /></label>
     2349                                                <input type="number" class="ssd_number_field" min="0" step="1"
     2350                                                    name="ssd[ssd_count_margin_top]"
     2351                                                    value="<?php echo esc_attr( $ssd_count_margin_top ); ?>" />
     2352                                            </div>
     2353                                        </div>
     2354                                        <div class="ssd-col-xs-2">
     2355                                            <div class="ssd_border_cover">
     2356                                                <label><?php echo esc_html( 'Bottom' ); ?>&nbsp;(px)<br /></label>
     2357                                                <input type="number" class="ssd_number_field" min="0" step="1"
     2358                                                    name="ssd[ssd_count_margin_bottom]"
     2359                                                    value="<?php echo esc_attr( $ssd_count_margin_bottom ); ?>" />
    18662360                                            </div>
    18672361                                        </div>
     
    18722366                                    <td>
    18732367                                        <div class="radio-group">
    1874                                             <input type="radio" id="ssd_user_follower_count_yes" class="user_follower_count yes" name="ssd[ssd_user_follower_count]" value="1" <?php echo ( 1 == $ssd_user_follower_count ) ? ' checked="checked"' : ''; ?>><label for="ssd_user_follower_count_yes"><?php esc_html_e( 'Yes', 'social-stream-design' ); ?></label>
    1875                                             <input type="radio" id="ssd_user_follower_count_no" class="user_follower_count no" name="ssd[ssd_user_follower_count]" value="0" <?php echo ( 0 == $ssd_user_follower_count ) ? ' checked="checked"' : ''; ?> ><label for="ssd_user_follower_count_no"><?php esc_html_e( 'No', 'social-stream-design' ); ?></label>
     2368                                            <input type="radio" id="ssd_user_follower_count_yes"
     2369                                                class="user_follower_count yes" name="ssd[ssd_user_follower_count]"
     2370                                                value="1" <?php echo ( 1 == $ssd_user_follower_count ) ? ' checked="checked"' : ''; ?>><label
     2371                                                for="ssd_user_follower_count_yes"><?php esc_html_e( 'Yes', 'social-stream-design' ); ?></label>
     2372                                            <input type="radio" id="ssd_user_follower_count_no"
     2373                                                class="user_follower_count no" name="ssd[ssd_user_follower_count]"
     2374                                                value="0" <?php echo ( 0 == $ssd_user_follower_count ) ? ' checked="checked"' : ''; ?>><label
     2375                                                for="ssd_user_follower_count_no"><?php esc_html_e( 'No', 'social-stream-design' ); ?></label>
    18762376                                        </div>
    18772377                                    </td>
     
    18812381                                    <td>
    18822382                                        <div class="radio-group">
    1883                                             <input type="radio" id="ssd_user_friend_count_yes" class="user_friend_count yes" name="ssd[ssd_user_friend_count]" value="1" <?php echo ( 1 == $ssd_user_friend_count ) ? ' checked="checked"' : ''; ?>><label for="ssd_user_friend_count_yes"><?php esc_html_e( 'Yes', 'social-stream-design' ); ?></label>
    1884                                             <input type="radio" id="ssd_user_friend_count_no" class="user_friend_count no" name="ssd[ssd_user_friend_count]" value="0" <?php echo ( 0 == $ssd_user_friend_count ) ? ' checked="checked"' : ''; ?> ><label for="ssd_user_friend_count_no"><?php esc_html_e( 'No', 'social-stream-design' ); ?></label>
     2383                                            <input type="radio" id="ssd_user_friend_count_yes"
     2384                                                class="user_friend_count yes" name="ssd[ssd_user_friend_count]"
     2385                                                value="1" <?php echo ( 1 == $ssd_user_friend_count ) ? ' checked="checked"' : ''; ?>><label
     2386                                                for="ssd_user_friend_count_yes"><?php esc_html_e( 'Yes', 'social-stream-design' ); ?></label>
     2387                                            <input type="radio" id="ssd_user_friend_count_no"
     2388                                                class="user_friend_count no" name="ssd[ssd_user_friend_count]" value="0"
     2389                                                <?php echo ( 0 == $ssd_user_friend_count ) ? ' checked="checked"' : ''; ?>><label
     2390                                                for="ssd_user_friend_count_no"><?php esc_html_e( 'No', 'social-stream-design' ); ?></label>
    18852391                                        </div>
    18862392                                    </td>
     
    18902396                                    <td>
    18912397                                        <div class="radio-group">
    1892                                             <input type="radio" id="ssd_retweet_count_yes" class="retweet_count yes" name="ssd[ssd_retweet_count]" value="1" <?php echo ( 1 == $ssd_retweet_count ) ? ' checked="checked"' : ''; ?>><label for="ssd_retweet_count_yes"><?php esc_html_e( 'Yes', 'social-stream-design' ); ?></label>
    1893                                             <input type="radio" id="ssd_retweet_count_no" class="retweet_count no" name="ssd[ssd_retweet_count]" value="0" <?php echo ( 0 == $ssd_retweet_count ) ? ' checked="checked"' : ''; ?> ><label for="ssd_retweet_count_no"><?php esc_html_e( 'No', 'social-stream-design' ); ?></label>
     2398                                            <input type="radio" id="ssd_retweet_count_yes" class="retweet_count yes"
     2399                                                name="ssd[ssd_retweet_count]" value="1" <?php echo ( 1 == $ssd_retweet_count ) ? ' checked="checked"' : ''; ?>><label
     2400                                                for="ssd_retweet_count_yes"><?php esc_html_e( 'Yes', 'social-stream-design' ); ?></label>
     2401                                            <input type="radio" id="ssd_retweet_count_no" class="retweet_count no"
     2402                                                name="ssd[ssd_retweet_count]" value="0" <?php echo ( 0 == $ssd_retweet_count ) ? ' checked="checked"' : ''; ?>><label
     2403                                                for="ssd_retweet_count_no"><?php esc_html_e( 'No', 'social-stream-design' ); ?></label>
    18942404                                        </div>
    18952405                                    </td>
     
    18992409                                    <td>
    19002410                                        <div class="radio-group">
    1901                                             <input type="radio" id="ssd_reply_count_yes" class="reply_count yes" name="ssd[ssd_reply_link]" value="1" <?php echo ( 1 == $ssd_reply_link ) ? ' checked="checked"' : ''; ?>><label for="ssd_reply_count_yes"><?php esc_html_e( 'Yes', 'social-stream-design' ); ?></label>
    1902                                             <input type="radio" id="ssd_reply_count_no" class="reply_count no" name="ssd[ssd_reply_link]" value="0" <?php echo ( 0 == $ssd_reply_link ) ? ' checked="checked"' : ''; ?> ><label for="ssd_reply_count_no"><?php esc_html_e( 'No', 'social-stream-design' ); ?></label>
     2411                                            <input type="radio" id="ssd_reply_count_yes" class="reply_count yes"
     2412                                                name="ssd[ssd_reply_link]" value="1" <?php echo ( 1 == $ssd_reply_link ) ? ' checked="checked"' : ''; ?>><label
     2413                                                for="ssd_reply_count_yes"><?php esc_html_e( 'Yes', 'social-stream-design' ); ?></label>
     2414                                            <input type="radio" id="ssd_reply_count_no" class="reply_count no"
     2415                                                name="ssd[ssd_reply_link]" value="0" <?php echo ( 0 == $ssd_reply_link ) ? ' checked="checked"' : ''; ?>><label
     2416                                                for="ssd_reply_count_no"><?php esc_html_e( 'No', 'social-stream-design' ); ?></label>
    19032417                                        </div>
    19042418                                    </td>
     
    19082422                                    <td>
    19092423                                        <div class="radio-group">
    1910                                             <input type="radio" id="ssd_favorite_count_yes" class="favorite_count yes" name="ssd[ssd_favorite_count]" value="1" <?php echo ( 1 == $ssd_favorite_count ) ? ' checked="checked"' : ''; ?>><label for="ssd_favorite_count_yes"><?php esc_html_e( 'Yes', 'social-stream-design' ); ?></label>
    1911                                             <input type="radio" id="ssd_favorite_count_no" class="favorite_count no" name="ssd[ssd_favorite_count]" value="0" <?php echo ( 0 == $ssd_favorite_count ) ? ' checked="checked"' : ''; ?> ><label for="ssd_favorite_count_no"><?php esc_html_e( 'No', 'social-stream-design' ); ?></label>
     2424                                            <input type="radio" id="ssd_favorite_count_yes" class="favorite_count yes"
     2425                                                name="ssd[ssd_favorite_count]" value="1" <?php echo ( 1 == $ssd_favorite_count ) ? ' checked="checked"' : ''; ?>><label
     2426                                                for="ssd_favorite_count_yes"><?php esc_html_e( 'Yes', 'social-stream-design' ); ?></label>
     2427                                            <input type="radio" id="ssd_favorite_count_no" class="favorite_count no"
     2428                                                name="ssd[ssd_favorite_count]" value="0" <?php echo ( 0 == $ssd_favorite_count ) ? ' checked="checked"' : ''; ?>><label
     2429                                                for="ssd_favorite_count_no"><?php esc_html_e( 'No', 'social-stream-design' ); ?></label>
    19122430                                        </div>
    19132431                                    </td>
     
    19172435                                    <td>
    19182436                                        <div class="radio-group">
    1919                                             <input type="radio" id="ssd_view_count_yes" class="view_count yes" name="ssd[ssd_view_count]" value="1" <?php echo ( 1 == $ssd_view_count ) ? ' checked="checked"' : ''; ?>><label for="ssd_view_count_yes"><?php esc_html_e( 'Yes', 'social-stream-design' ); ?></label>
    1920                                             <input type="radio" id="ssd_view_count_no" class="view_count no" name="ssd[ssd_view_count]" value="0" <?php echo ( 0 == $ssd_view_count ) ? ' checked="checked"' : ''; ?>><label for="ssd_view_count_no"><?php esc_html_e( 'No', 'social-stream-design' ); ?></label>
     2437                                            <input type="radio" id="ssd_view_count_yes" class="view_count yes"
     2438                                                name="ssd[ssd_view_count]" value="1" <?php echo ( 1 == $ssd_view_count ) ? ' checked="checked"' : ''; ?>><label
     2439                                                for="ssd_view_count_yes"><?php esc_html_e( 'Yes', 'social-stream-design' ); ?></label>
     2440                                            <input type="radio" id="ssd_view_count_no" class="view_count no"
     2441                                                name="ssd[ssd_view_count]" value="0" <?php echo ( 0 == $ssd_view_count ) ? ' checked="checked"' : ''; ?>><label
     2442                                                for="ssd_view_count_no"><?php esc_html_e( 'No', 'social-stream-design' ); ?></label>
    19212443                                        </div>
    19222444                                    </td>
     
    19262448                                    <td>
    19272449                                        <div class="radio-group">
    1928                                             <input type="radio" id="ssd_like_count_yes" class="like_count yes" name="ssd[ssd_like_count]" value="1" <?php echo ( 1 == $ssd_like_count ) ? ' checked="checked"' : ''; ?>><label for="ssd_like_count_yes"><?php esc_html_e( 'Yes', 'social-stream-design' ); ?></label>
    1929                                             <input type="radio" id="ssd_like_count_no" class="ssd_like_count_no no" name="ssd[ssd_like_count]" value="0" <?php echo ( 0 == $ssd_like_count ) ? ' checked="checked"' : ''; ?> ><label for="ssd_like_count_no"><?php esc_html_e( 'No', 'social-stream-design' ); ?></label>
     2450                                            <input type="radio" id="ssd_like_count_yes" class="like_count yes"
     2451                                                name="ssd[ssd_like_count]" value="1" <?php echo ( 1 == $ssd_like_count ) ? ' checked="checked"' : ''; ?>><label
     2452                                                for="ssd_like_count_yes"><?php esc_html_e( 'Yes', 'social-stream-design' ); ?></label>
     2453                                            <input type="radio" id="ssd_like_count_no" class="ssd_like_count_no no"
     2454                                                name="ssd[ssd_like_count]" value="0" <?php echo ( 0 == $ssd_like_count ) ? ' checked="checked"' : ''; ?>><label
     2455                                                for="ssd_like_count_no"><?php esc_html_e( 'No', 'social-stream-design' ); ?></label>
    19302456                                        </div>
    19312457                                    </td>
     
    19352461                                    <td>
    19362462                                        <div class="radio-group">
    1937                                             <input type="radio" id="pin_count_yes" class="pin_count yes" name="ssd[ssd_pin_count]" value="1" <?php echo ( 1 == $ssd_pin_count ) ? ' checked="checked"' : ''; ?>><label for="pin_count_yes"><?php esc_html_e( 'Yes', 'social-stream-design' ); ?></label>
    1938                                             <input type="radio" id="pin_count_no" class="pin_count_no no" name="ssd[ssd_pin_count]" value="0" <?php echo ( 0 == $ssd_pin_count ) ? ' checked="checked"' : ''; ?> ><label for="pin_count_no"><?php esc_html_e( 'No', 'social-stream-design' ); ?></label>
     2463                                            <input type="radio" id="pin_count_yes" class="pin_count yes"
     2464                                                name="ssd[ssd_pin_count]" value="1" <?php echo ( 1 == $ssd_pin_count ) ? ' checked="checked"' : ''; ?>><label
     2465                                                for="pin_count_yes"><?php esc_html_e( 'Yes', 'social-stream-design' ); ?></label>
     2466                                            <input type="radio" id="pin_count_no" class="pin_count_no no"
     2467                                                name="ssd[ssd_pin_count]" value="0" <?php echo ( 0 == $ssd_pin_count ) ? ' checked="checked"' : ''; ?>><label
     2468                                                for="pin_count_no"><?php esc_html_e( 'No', 'social-stream-design' ); ?></label>
    19392469                                        </div>
    19402470                                    </td>
     
    19442474                                    <td>
    19452475                                        <div class="radio-group">
    1946                                             <input type="radio" id="ssd_dislike_count_yes" class="dislike_count yes" name="ssd[ssd_dislike_count]" value="1" <?php echo ( 1 == $ssd_dislike_count ) ? ' checked="checked"' : ''; ?> ><label for="ssd_dislike_count_yes"><?php esc_html_e( 'Yes', 'social-stream-design' ); ?></label>
    1947                                             <input type="radio" id="ssd_dislike_count_no" class="dislike_count no" name="ssd[ssd_dislike_count]" value="0" <?php echo ( 0 == $ssd_dislike_count ) ? ' checked="checked"' : ''; ?> ><label for="ssd_dislike_count_no"><?php esc_html_e( 'No', 'social-stream-design' ); ?></label>
     2476                                            <input type="radio" id="ssd_dislike_count_yes" class="dislike_count yes"
     2477                                                name="ssd[ssd_dislike_count]" value="1" <?php echo ( 1 == $ssd_dislike_count ) ? ' checked="checked"' : ''; ?>><label
     2478                                                for="ssd_dislike_count_yes"><?php esc_html_e( 'Yes', 'social-stream-design' ); ?></label>
     2479                                            <input type="radio" id="ssd_dislike_count_no" class="dislike_count no"
     2480                                                name="ssd[ssd_dislike_count]" value="0" <?php echo ( 0 == $ssd_dislike_count ) ? ' checked="checked"' : ''; ?>><label
     2481                                                for="ssd_dislike_count_no"><?php esc_html_e( 'No', 'social-stream-design' ); ?></label>
    19482482                                        </div>
    19492483                                    </td>
     
    19532487                                    <td>
    19542488                                        <div class="radio-group">
    1955                                             <input type="radio" id="ssd_comment_count_yes" class="comment_count yes" name="ssd[ssd_comment_count]" value="1" <?php echo ( 1 == $ssd_comment_count ) ? ' checked="checked"' : ''; ?> ><label for="ssd_comment_count_yes"><?php esc_html_e( 'Yes', 'social-stream-design' ); ?></label>
    1956                                             <input type="radio" id="ssd_comment_count_no" class="comment_count no" name="ssd[ssd_comment_count]" value="0" <?php echo ( 0 == $ssd_comment_count ) ? ' checked="checked"' : ''; ?> ><label for="ssd_comment_count_no"><?php esc_html_e( 'No', 'social-stream-design' ); ?></label>
    1957                                         </div>
    1958                                     </td>
    1959                                 </tr>
    1960                                                                 <tr class="ssd_share_count_tr">
     2489                                            <input type="radio" id="ssd_comment_count_yes" class="comment_count yes"
     2490                                                name="ssd[ssd_comment_count]" value="1" <?php echo ( 1 == $ssd_comment_count ) ? ' checked="checked"' : ''; ?>><label
     2491                                                for="ssd_comment_count_yes"><?php esc_html_e( 'Yes', 'social-stream-design' ); ?></label>
     2492                                            <input type="radio" id="ssd_comment_count_no" class="comment_count no"
     2493                                                name="ssd[ssd_comment_count]" value="0" <?php echo ( 0 == $ssd_comment_count ) ? ' checked="checked"' : ''; ?>><label
     2494                                                for="ssd_comment_count_no"><?php esc_html_e( 'No', 'social-stream-design' ); ?></label>
     2495                                        </div>
     2496                                    </td>
     2497                                </tr>
     2498                                <tr class="ssd_share_count_tr">
    19612499                                    <td><?php esc_html_e( 'Display Share Count', 'social-stream-design' ); ?></td>
    19622500                                    <td>
    19632501                                        <div class="radio-group">
    1964                                             <input type="radio" id="ssd_share_count_yes" class="share_count yes" name="ssd[ssd_share_count]" value="1" <?php echo ( 1 == $ssd_share_count ) ? ' checked="checked"' : ''; ?>><label for="ssd_share_count_yes"><?php esc_html_e( 'Yes', 'social-stream-design' ); ?></label>
    1965                                             <input type="radio" id="ssd_share_count_no" class="share_count no" name="ssd[ssd_share_count]" value="0" <?php echo ( 0 == $ssd_share_count ) ? ' checked="checked"' : ''; ?> ><label for="ssd_share_count_no"><?php esc_html_e( 'No', 'social-stream-design' ); ?></label>
     2502                                            <input type="radio" id="ssd_share_count_yes" class="share_count yes"
     2503                                                name="ssd[ssd_share_count]" value="1" <?php echo ( 1 == $ssd_share_count ) ? ' checked="checked"' : ''; ?>><label
     2504                                                for="ssd_share_count_yes"><?php esc_html_e( 'Yes', 'social-stream-design' ); ?></label>
     2505                                            <input type="radio" id="ssd_share_count_no" class="share_count no"
     2506                                                name="ssd[ssd_share_count]" value="0" <?php echo ( 0 == $ssd_share_count ) ? ' checked="checked"' : ''; ?>><label
     2507                                                for="ssd_share_count_no"><?php esc_html_e( 'No', 'social-stream-design' ); ?></label>
    19662508                                        </div>
    19672509                                    </td>
     
    19752517                        <table class="form-table">
    19762518                            <tbody>
    1977                                 <tr class="ssd_social_stream_pagination_tr" >
     2519                                <tr class="ssd_social_stream_pagination_tr">
    19782520                                    <td><?php esc_html_e( 'Pagination Type', 'social-stream-design' ); ?></td>
    19792521                                    <td>
    19802522                                        <div class="ssd-col-xs-5">
    1981                                             <select id="ssd_pagination_type" class="ssd_pagination_type ssd_stream_select" name="ssd[ssd_pagination_type]" >
    1982                                                 <option value="no_pagination" <?php echo ( 'no_pagination' === $ssd_pagination_type ) ? ' selected="selected"' : ''; ?>><?php esc_html_e( 'No Pagination', 'social-stream-design' ); ?></option>
    1983                                                 <option value="" disabled><?php esc_html_e( 'Paged', 'social-stream-design' ); ?></option>
    1984                                                 <option value="load_more_btn" <?php echo ( 'load_more_btn' === $ssd_pagination_type ) ? ' selected="selected"' : ''; ?>><?php esc_html_e( 'Load More Button', 'social-stream-design' ); ?></option>
    1985                                                 <option value="" disabled><?php esc_html_e( 'Load On Page Scroll', 'social-stream-design' ); ?></option>
     2523                                            <select id="ssd_pagination_type"
     2524                                                class="ssd_pagination_type ssd_stream_select"
     2525                                                name="ssd[ssd_pagination_type]">
     2526                                                <option value="no_pagination" <?php echo ( 'no_pagination' === $ssd_pagination_type ) ? ' selected="selected"' : ''; ?>>
     2527                                                    <?php esc_html_e( 'No Pagination', 'social-stream-design' ); ?>
     2528                                                </option>
     2529                                                <option value="" disabled>
     2530                                                    <?php esc_html_e( 'Paged', 'social-stream-design' ); ?></option>
     2531                                                <option value="load_more_btn" <?php echo ( 'load_more_btn' === $ssd_pagination_type ) ? ' selected="selected"' : ''; ?>>
     2532                                                    <?php esc_html_e( 'Load More Button', 'social-stream-design' ); ?>
     2533                                                </option>
     2534                                                <option value="" disabled>
     2535                                                    <?php esc_html_e( 'Load On Page Scroll', 'social-stream-design' ); ?>
     2536                                                </option>
    19862537                                            </select>
    19872538                                        </div>
    1988                                         <p class="description"><?php esc_html_e( 'Select pagination type', 'social-stream-design' ); ?></p>
    1989                                     </td>
    1990                                 </tr>
    1991                                 <tr class="ssd_social_stream_pagination_tr ssd_load_more_template_tr disable_li" >
    1992                                     <td><i class="fa fa-lock"></i>&nbsp;<?php esc_html_e( 'Load More Button Layout', 'social-stream-design' ); ?></td>
     2539                                        <p class="description">
     2540                                            <?php esc_html_e( 'Select pagination type', 'social-stream-design' ); ?></p>
     2541                                    </td>
     2542                                </tr>
     2543                                <tr class="ssd_social_stream_pagination_tr ssd_load_more_template_tr disable_li">
     2544                                    <td><i
     2545                                            class="fa fa-lock"></i>&nbsp;<?php esc_html_e( 'Load More Button Layout', 'social-stream-design' ); ?>
     2546                                    </td>
    19932547                                    <td>
    19942548                                        <div class="ssd-col-xs-4">
    1995                                             <select id="ssd_load_more_layout" class="ssd_load_more_layout ssd_stream_select" name="ssd[ssd_load_more_layout]" >
    1996                                                 <option value="template-1" <?php echo ( 'template-1' === $ssd_load_more_layout ) ? ' selected="selected"' : ''; ?>><?php esc_html_e( 'Template', 'social-stream-design' ); ?>&nbsp;1</option>
    1997                                                 <option value="" disabled><?php esc_html_e( 'Template', 'social-stream-design' ); ?>&nbsp;2</option>
    1998                                                 <option value="" disabled><?php esc_html_e( 'Template', 'social-stream-design' ); ?>&nbsp;3</option>
     2549                                            <select id="ssd_load_more_layout"
     2550                                                class="ssd_load_more_layout ssd_stream_select"
     2551                                                name="ssd[ssd_load_more_layout]">
     2552                                                <option value="template-1" <?php echo ( 'template-1' === $ssd_load_more_layout ) ? ' selected="selected"' : ''; ?>>
     2553                                                    <?php esc_html_e( 'Template', 'social-stream-design' ); ?>&nbsp;1
     2554                                                </option>
     2555                                                <option value="" disabled>
     2556                                                    <?php esc_html_e( 'Template', 'social-stream-design' ); ?>&nbsp;2
     2557                                                </option>
     2558                                                <option value="" disabled>
     2559                                                    <?php esc_html_e( 'Template', 'social-stream-design' ); ?>&nbsp;3
     2560                                                </option>
    19992561                                            </select>
    20002562                                        </div>
    2001                                         <p class="description"><?php esc_html_e( 'Select load more button layout', 'social-stream-design' ); ?></p>
    2002                                     </td>
    2003                                 </tr>
    2004                                 <tr class="ssd_social_stream_pagination_tr ssd_load_more_template_preview disable_li" >
     2563                                        <p class="description">
     2564                                            <?php esc_html_e( 'Select load more button layout', 'social-stream-design' ); ?>
     2565                                        </p>
     2566                                    </td>
     2567                                </tr>
     2568                                <tr class="ssd_social_stream_pagination_tr ssd_load_more_template_preview disable_li">
    20052569                                    <td></td>
    20062570                                    <td>
    20072571                                        <div class="ssd_load_more_btn">
    2008                                             <button class="<?php echo esc_attr( $ssd_load_more_layout ); ?> ssd-button ssd-black ssd-margin-bottom" disabled=""><?php esc_html_e( 'Load More', 'social-stream-design' ); ?></button>
    2009                                         </div>
    2010                                     </td>
    2011                                 </tr>
    2012                                 <tr class="ssd_social_stream_pagination_tr ssd_load_more_effect_tr disable_li" >
    2013                                     <td><i class="fa fa-lock"></i>&nbsp;<?php esc_html_e( 'Load More Effect', 'social-stream-design' ); ?></td>
    2014                                     <td>
    2015                                         <select id="ssd_load_more_effect" class="ssd_load_more_effect ssd_stream_select" name="" >
     2572                                            <button
     2573                                                class="<?php echo esc_attr( $ssd_load_more_layout ); ?> ssd-button ssd-black ssd-margin-bottom"
     2574                                                disabled=""><?php esc_html_e( 'Load More', 'social-stream-design' ); ?></button>
     2575                                        </div>
     2576                                    </td>
     2577                                </tr>
     2578                                <tr class="ssd_social_stream_pagination_tr ssd_load_more_effect_tr disable_li">
     2579                                    <td><i
     2580                                            class="fa fa-lock"></i>&nbsp;<?php esc_html_e( 'Load More Effect', 'social-stream-design' ); ?>
     2581                                    </td>
     2582                                    <td>
     2583                                        <select id="ssd_load_more_effect" class="ssd_load_more_effect ssd_stream_select"
     2584                                            name="">
    20162585                                            <option value="eff-fadein"><?php echo esc_html( 'FadeIn' ); ?></option>
    20172586                                            <option value="eff-move-up"><?php echo esc_html( 'Move Up' ); ?></option>
    20182587                                            <option value="eff-scale-up"><?php echo esc_html( 'Scale Up' ); ?></option>
    2019                                             <option value="eff-fall-perspective"><?php echo esc_html( 'Fall Perspective' ); ?></option>
     2588                                            <option value="eff-fall-perspective">
     2589                                                <?php echo esc_html( 'Fall Perspective' ); ?></option>
    20202590                                            <option value="eff-fly"><?php echo esc_html( 'Fly' ); ?></option>
    20212591                                            <option value="eff-flip"><?php echo esc_html( 'Flip' ); ?></option>
     
    20232593                                            <option value="eff-popup"><?php echo esc_html( 'PopUp' ); ?></option>
    20242594                                        </select>
    2025                                         <p class="description"><?php esc_html_e( 'Select load more effect', 'social-stream-design' ); ?></p>
     2595                                        <p class="description">
     2596                                            <?php esc_html_e( 'Select load more effect', 'social-stream-design' ); ?>
     2597                                        </p>
    20262598                                    </td>
    20272599                                </tr>
    20282600                                <tr class="ssd_social_stream_pagination_tr ssd_post_per_page_tr">
    2029                                     <td><?php esc_html_e( 'Number Of Posts To Display Per Page', 'social-stream-design' ); ?></td>
    2030                                     <td>
    2031                                         <div class="ssd-col-xs-2">
    2032                                             <input type="number" step="1" min="0" id="no_of_posts_per_page" class="no_of_posts_per_page ssd_number_field" name="ssd[ssd_no_of_posts_per_page]" value="<?php echo esc_attr( $ssd_no_of_posts_per_page ); ?>">
    2033                                         </div>
    2034                                         <p class="description"><b><?php esc_html_e( 'Note', 'social-stream-design' ); ?></b> : <?php esc_html_e( 'Select number of feeds you want to display in single page', 'social-stream-design' ); ?></p>
     2601                                    <td><?php esc_html_e( 'Number Of Posts To Display Per Page', 'social-stream-design' ); ?>
     2602                                    </td>
     2603                                    <td>
     2604                                        <div class="ssd-col-xs-2">
     2605                                            <input type="number" step="1" min="0" id="no_of_posts_per_page"
     2606                                                class="no_of_posts_per_page ssd_number_field"
     2607                                                name="ssd[ssd_no_of_posts_per_page]"
     2608                                                value="<?php echo esc_attr( $ssd_no_of_posts_per_page ); ?>">
     2609                                        </div>
     2610                                        <p class="description">
     2611                                            <b><?php esc_html_e( 'Note', 'social-stream-design' ); ?></b> :
     2612                                            <?php esc_html_e( 'Select number of feeds you want to display in single page', 'social-stream-design' ); ?>
     2613                                        </p>
    20352614                                    </td>
    20362615                                </tr>
     
    20392618                                    <td>
    20402619                                        <div class="ssd-col-xs-2">
    2041                                             <input type="number" step="1" min="-1" id="ssd_no_of_posts" class="ssd_no_of_posts ssd_number_field" name="ssd[ssd_no_of_posts]" value="<?php echo esc_attr( $ssd_no_of_posts ); ?>">
    2042                                         </div>
    2043                                         <p class="description"><b><?php esc_html_e( 'Note', 'social-stream-design' ); ?></b> : <?php esc_html_e( "Select '-1' if you want to display all the feeds.", 'social-stream-design' ); ?></p>
     2620                                            <input type="number" step="1" min="-1" id="ssd_no_of_posts"
     2621                                                class="ssd_no_of_posts ssd_number_field" name="ssd[ssd_no_of_posts]"
     2622                                                value="<?php echo esc_attr( $ssd_no_of_posts ); ?>">
     2623                                        </div>
     2624                                        <p class="description">
     2625                                            <b><?php esc_html_e( 'Note', 'social-stream-design' ); ?></b> :
     2626                                            <?php esc_html_e( "Select '-1' if you want to display all the feeds.", 'social-stream-design' ); ?>
     2627                                        </p>
    20442628                                    </td>
    20452629                                </tr>
     
    20532637                            <tbody>
    20542638                                <tr class="disable_li">
    2055                                     <td><i class="fa fa-lock"></i>&nbsp;<?php esc_html_e( 'Popup open on content click', 'social-stream-design' ); ?></td>
    2056                                     <td>
    2057                                         <div class="radio-group">
    2058                                             <input type="radio" id="ssd_popup_view_on_content_click_yes" class="ssd_view_on_content_click yes" name="" value=""><label for="ssd_popup_view_on_content_click_yes"><?php esc_html_e( 'Yes', 'social-stream-design' ); ?></label>
    2059                                             <input type="radio" id="ssd_popup_view_on_content_click_no" class="ssd_view_on_content_click no" name="" value="0" checked="checked" ><label for="ssd_popup_view_on_content_click_no"><?php esc_html_e( 'No', 'social-stream-design' ); ?></label>
    2060                                         </div>
    2061                                         <p class="description"><?php esc_html_e( 'Show/Hide popup on click of content', 'social-stream-design' ); ?></p>
     2639                                    <td><i
     2640                                            class="fa fa-lock"></i>&nbsp;<?php esc_html_e( 'Popup open on content click', 'social-stream-design' ); ?>
     2641                                    </td>
     2642                                    <td>
     2643                                        <div class="radio-group">
     2644                                            <input type="radio" id="ssd_popup_view_on_content_click_yes"
     2645                                                class="ssd_view_on_content_click yes" name="" value=""><label
     2646                                                for="ssd_popup_view_on_content_click_yes"><?php esc_html_e( 'Yes', 'social-stream-design' ); ?></label>
     2647                                            <input type="radio" id="ssd_popup_view_on_content_click_no"
     2648                                                class="ssd_view_on_content_click no" name="" value="0"
     2649                                                checked="checked"><label
     2650                                                for="ssd_popup_view_on_content_click_no"><?php esc_html_e( 'No', 'social-stream-design' ); ?></label>
     2651                                        </div>
     2652                                        <p class="description">
     2653                                            <?php esc_html_e( 'Show/Hide popup on click of content', 'social-stream-design' ); ?>
     2654                                        </p>
    20622655                                    </td>
    20632656                                </tr>
     
    20692662        </form>
    20702663        <div id="ssd-advertisement-popup">
    2071                 <div class="ssd-advertisement-cover">
    2072                         <a class="ssd-advertisement-link" target="_blank" href="<?php echo esc_url( 'https://codecanyon.net/item/social-stream-design/26344658?irgwc=1&clickid=UtXV9eXjuxyJW5zwUx0Mo3QzUki2HBxlq3kkwU0&iradid=275988&irpid=1195590&iradtype=ONLINE_TRACKING_LINK&irmptype=mediapartner&mp_value1=&utm_campaign=af_impact_radius_1195590&utm_medium=affiliate&utm_source=impact_radius' ); ?>">
    2073                                 <img src="<?php echo esc_url( WPSOCIALSTREAMDESIGNER_URL ) . '/images/Social-stream-designer-wordpress-plugin.jpg'; ?>" />
    2074                         </a>
    2075                 </div>
     2664            <div class="ssd-advertisement-cover">
     2665                <a class="ssd-advertisement-link" target="_blank"
     2666                    href="<?php echo esc_url( 'https://codecanyon.net/item/social-stream-design/26344658?irgwc=1&clickid=UtXV9eXjuxyJW5zwUx0Mo3QzUki2HBxlq3kkwU0&iradid=275988&irpid=1195590&iradtype=ONLINE_TRACKING_LINK&irmptype=mediapartner&mp_value1=&utm_campaign=af_impact_radius_1195590&utm_medium=affiliate&utm_source=impact_radius' ); ?>">
     2667                    <img
     2668                        src="<?php echo esc_url( WPSOCIALSTREAMDESIGNER_URL ) . '/images/Social-stream-designer-wordpress-plugin.jpg'; ?>" />
     2669                </a>
     2670            </div>
    20762671        </div>
    20772672    </div><!-- ssd-screen end -->
  • social-stream-design/trunk/admin/js/admin-script.js

    r3069314 r3116011  
    527527                        ssd_layout_selector();
    528528                        ssd_grid_style_change();
     529                        if($('.ssd_item-template[data-id="2"] > .selected').length > 0){
     530                            $('#ssd_icon_alignment').select2().val('center');
     531                            $('#ssd_icon_position').select2().val('bottom');
     532                        }
    529533                    }
    530534                }
     
    746750                }
    747751            }
     752            $('input[name="ssd[ssd_display_feed_without_media]"]').on("change", function() {
     753                if ($(this).val() == '1') {
     754                    $('.ssd-default-image-tr').hide();
     755                } else {
     756                    $('ssd-default-image-tr').show();
     757                }
     758            });
    748759
    749760            $('.ssd_display_feed_without_media').on(
     
    755766                        $('.ssd_label_fit_content').parent().show();
    756767                        sfwmt.show();
    757                         $('.ssd-feeds-without-media-tr.ssd-default-image-tr').show();
    758                     } else {
     768                        $('.ssd-default-image-tr').show();
     769            if ($( '#ssd_display_default_image_no' ).prop( 'checked' )) {
     770                        sditr.hide()} else {
     771                        sditr.show()}
     772                    }
     773                   
     774                    else {     
    759775                        sfwmt.hide();
    760                         $('.ssd-feeds-without-media-tr.ssd-default-image-tr').hide();
     776                        $('.ssd-default-image-tr').hide();
    761777                        $('.ssd_label_fit_content').parent().hide();
    762778                        if ($('#ssd_display_default_image_no').prop('checked')) {
     
    822838            }
    823839
    824             $('.ssd_display_default_image').on(
    825                 'click',
    826                 function() {
    827                     sditr = $('.ssd-default-image-tr');
    828                     if ($('#ssd_display_default_image_no').prop('checked')) {
    829                         sditr.hide();
    830                     } else {
    831                         sditr.show();
    832                     }
    833                 }
    834             );
    835 
     840       if ($('#ssd_display_default_image_no').prop('checked')) {
     841                $('.ssd-default-image-tr').hide();
     842            } else {
     843                $('.ssd-default-image-tr').show();
     844            }
     845            $('.ssd_display_default_image').on('click', function() {
     846                if ($('#ssd_display_default_image_no').prop('checked')) {
     847                    $('.ssd-default-image-tr').hide();
     848                } else {
     849                    $('.ssd-default-image-tr').show();
     850                }
     851            });
     852
     853            if ($('#ssd_display_feed_without_media_yes').prop('checked')) {
     854                $('.ssd-default-image-tr').hide();
     855
     856            }
    836857            $('#ssd_slider_direction').on('change', function() { ssd_grid_style_change() });
    837858            var sobtr = $('.ssd_order_by_tr');
  • social-stream-design/trunk/class-socialstream.php

    r3069314 r3116011  
    149149        // Get pagination options.
    150150        $no_of_posts_per_page  = ( isset( $social_stream_settings['ssd_no_of_posts_per_page'] ) && $social_stream_settings['ssd_no_of_posts_per_page'] > 1 ) ? $social_stream_settings['ssd_no_of_posts_per_page'] : 6;
    151         $total_number_of_posts = ( isset( $social_stream_settings['ssd_no_of_posts'] ) && $social_stream_settings['ssd_no_of_posts'] > 1 ) ? $social_stream_settings['ssd_no_of_posts'] : '-1';
     151        $total_number_of_posts = ( isset( $social_stream_settings['ssd_no_of_posts'] ) && $social_stream_settings['ssd_no_of_posts'] >= 0 ) ? $social_stream_settings['ssd_no_of_posts'] : '-1';
    152152        $cur_page              = ( isset( $_REQUEST['cur_page'] ) && sanitize_text_field( wp_unslash( $_REQUEST['cur_page'] ) ) > 0 ) ? sanitize_text_field( wp_unslash( $_REQUEST['cur_page'] ) ) : 1;
    153153        $ssd_pagination_type   = 'no_pagination';
  • social-stream-design/trunk/include/class-social-stream-main.php

    r3069314 r3116011  
    826826        } elseif ( 'ssd_design_layout_3' === $layout ) {
    827827            $ssd_social_order_e = 'media,title,content,count,';
    828         } elseif('ssd_design_layout_5' === $layout) {
     828        } elseif ( 'ssd_design_layout_5' === $layout ) {
    829829            $ssd_social_order_e = 'title,content,author,count,social-share,';
    830830        } else {
  • social-stream-design/trunk/include/feeds/class-ssdfrontfeeds.php

    r3009969 r3116011  
    196196        $feed_id          = $this->feed_id;
    197197        if ( is_user_logged_in() ) {
    198             $query = 'select count(*) from ' . $feed_posts_table . ' where feed_id in ( ' . $feed_id . ' )';
    199         } else {
    200             $query = 'select count(*) from ' . $feed_posts_table . ' where feed_id in ( ' . $feed_id . ' ) AND (( moderate = "1" AND lower(post_status) = "yes") OR (moderate IS NULL or moderate ="")) ';
    201         }
    202         $feeds_stream = $wpdb->get_var( $query );
     198            $feeds_stream = $wpdb->prepare( 'select count(*) from %1s where feed_id in ( %s  )', $feed_posts_table, $feed_id );
     199
     200        } else {
     201            $feeds_stream = $wpdb->prepare( 'select count(*) from %1s where feed_id in ( %s ) AND (( moderate = "1" AND lower(post_status) = "yes") OR (moderate IS NULL or moderate ="")) ', $feed_posts_table, $feed_id );
     202        }
     203
    203204        if ( $feeds_stream ) {
    204205            return $feeds_stream;
     206
    205207        } else {
    206208            return '0';
     
    221223            $query = 'select count(*) from ' . $feed_posts_table . ' where feed_id in ( ' . $feed_id . " ) and post_image !='' ";
    222224        } else {
    223             $query = 'select count(*) from ' . $feed_posts_table . ' where feed_id in ( ' . $feed_id . ' ) and post_image !="" AND (( moderate = "1" AND lower(post_status) = "yes") OR (moderate IS NULL or moderate ="")) ';
    224         }
    225         $feeds_stream = $wpdb->get_var( $query );
    226         if ( $feeds_stream ) {
     225            $feeds_stream = $wpdb->get_var(
     226                $wpdb->prepare(
     227                    "SELECT COUNT(*) FROM %s WHERE feed_id IN (%d) AND post_image != '' AND ((moderate = '1' AND LOWER(post_status) = 'yes') OR (moderate IS NULL OR moderate = ''))",
     228                    $feed_posts_table,
     229                    $feed_id
     230                )
     231            );
     232        }
     233        // = $wpdb->get_var( $query );
     234        if ( isset( $feeds_stream ) ) {
    227235            return $feeds_stream;
    228236        } else {
  • social-stream-design/trunk/include/social-stream-layout.php

    r3009969 r3116011  
    66 * @package WP Social Stream Designer
    77 */
     8
    89global $wpdb;
    910$feed_type_stream     = '';
  • social-stream-design/trunk/languages/social-stream-design.pot

    r3030607 r3116011  
    33msgstr ""
    44"Project-Id-Version: WP Social Stream Designer\n"
    5 "POT-Creation-Date: 2024-02-01 17:28+0530\n"
     5"POT-Creation-Date: 2024-07-11 10:09+0530\n"
    66"PO-Revision-Date: 2017-06-24 14:12+0530\n"
    77"Last-Translator: \n"
     
    1212"Content-Transfer-Encoding: 8bit\n"
    1313"Plural-Forms: nplurals=2; plural= n != 1;\n"
    14 "X-Generator: Poedit 3.0.1\n"
     14"X-Generator: Poedit 3.4.4\n"
    1515"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_x:1,2;_n;_ex;_nx;"
    1616"esc_attr_e;esc_attr__;esc_attr_x;esc_html__;esc_html_e;esc_html_x;"
     
    109109
    110110#: admin/assets/feeds/class-ssdadminfacebookfeeds.php:164
    111 #: admin/assets/feeds/class-ssdadminfacebookfeeds.php:271
     111#: admin/assets/feeds/class-ssdadminfacebookfeeds.php:270
    112112#: admin/assets/feeds/class-ssdadmininstagramfeeds.php:137
    113113#: admin/assets/feeds/class-ssdadmininstagramfeeds.php:143
     
    143143msgstr ""
    144144
    145 #: admin/assets/social-stream-add-layout.php:125
     145#: admin/assets/social-stream-add-layout.php:127
    146146msgid "Edit Layout"
    147147msgstr ""
    148148
    149 #: admin/assets/social-stream-add-layout.php:260
     149#: admin/assets/social-stream-add-layout.php:262
     150#: admin/assets/social-stream-add-layout.php:268
     151msgid "Layout has been added successfully."
     152msgstr ""
     153
    150154#: admin/assets/social-stream-add-layout.php:265
    151 msgid "Layout has been added successfully."
    152 msgstr ""
    153 
    154 #: admin/assets/social-stream-add-layout.php:262
    155 #: admin/assets/social-stream-add-layout.php:279
     155#: admin/assets/social-stream-add-layout.php:283
    156156msgid "View Layout"
    157157msgstr ""
    158158
    159 #: admin/assets/social-stream-add-layout.php:277
    160 #: admin/assets/social-stream-add-layout.php:282
     159#: admin/assets/social-stream-add-layout.php:280
     160#: admin/assets/social-stream-add-layout.php:286
    161161msgid "Layout has been updated successfully."
    162162msgstr ""
    163163
    164 #: admin/assets/social-stream-add-layout.php:293
     164#: admin/assets/social-stream-add-layout.php:297
    165165msgid "Error to update layout."
    166166msgstr ""
    167167
    168 #: admin/assets/social-stream-add-layout.php:303
     168#: admin/assets/social-stream-add-layout.php:307
    169169msgid "Layout has been duplicated successfully."
    170170msgstr ""
    171171
    172 #: admin/assets/social-stream-add-layout.php:313
     172#: admin/assets/social-stream-add-layout.php:317
    173173msgid "Layout has been reset successfully."
    174174msgstr ""
    175175
    176 #: admin/assets/social-stream-add-layout.php:344
     176#: admin/assets/social-stream-add-layout.php:350
    177177msgid "Social Stream Layout Settings"
    178178msgstr ""
    179179
    180 #: admin/assets/social-stream-add-layout.php:346
     180#: admin/assets/social-stream-add-layout.php:353
    181181msgid "Show Preview"
    182182msgstr ""
    183183
    184 #: admin/assets/social-stream-add-layout.php:347
     184#: admin/assets/social-stream-add-layout.php:355
    185185msgid "Preview"
    186186msgstr ""
    187187
    188 #: admin/assets/social-stream-add-layout.php:352
     188#: admin/assets/social-stream-add-layout.php:361
    189189msgid "Reset"
    190190msgstr ""
    191191
    192 #: admin/assets/social-stream-add-layout.php:356
     192#: admin/assets/social-stream-add-layout.php:367
    193193msgid "Save"
    194194msgstr ""
    195195
    196 #: admin/assets/social-stream-add-layout.php:364
     196#: admin/assets/social-stream-add-layout.php:376
    197197msgid "General Settings"
    198198msgstr ""
    199199
    200 #: admin/assets/social-stream-add-layout.php:367
     200#: admin/assets/social-stream-add-layout.php:380
    201201msgid "Select Card Layout"
    202202msgstr ""
    203203
    204 #: admin/assets/social-stream-add-layout.php:370
     204#: admin/assets/social-stream-add-layout.php:384
    205205msgid "Layout Settings"
    206206msgstr ""
    207207
    208 #: admin/assets/social-stream-add-layout.php:373
     208#: admin/assets/social-stream-add-layout.php:388
    209209msgid "Card Settings"
    210210msgstr ""
    211211
    212 #: admin/assets/social-stream-add-layout.php:376
     212#: admin/assets/social-stream-add-layout.php:392
    213213msgid "Share Icon Settings"
    214214msgstr ""
    215215
    216 #: admin/assets/social-stream-add-layout.php:379
     216#: admin/assets/social-stream-add-layout.php:396
    217217msgid "Title Settings"
    218218msgstr ""
    219219
    220 #: admin/assets/social-stream-add-layout.php:382
     220#: admin/assets/social-stream-add-layout.php:400
    221221msgid "Content Settings"
    222222msgstr ""
    223223
    224 #: admin/assets/social-stream-add-layout.php:385
     224#: admin/assets/social-stream-add-layout.php:404
    225225msgid "Media Settings"
    226226msgstr ""
    227227
    228 #: admin/assets/social-stream-add-layout.php:388
     228#: admin/assets/social-stream-add-layout.php:408
    229229msgid "Author Content Settings"
    230230msgstr ""
    231231
    232 #: admin/assets/social-stream-add-layout.php:391
     232#: admin/assets/social-stream-add-layout.php:412
    233233msgid "Count Bar Settings"
    234234msgstr ""
    235235
    236 #: admin/assets/social-stream-add-layout.php:394
     236#: admin/assets/social-stream-add-layout.php:416
    237237msgid "Pagination Settings"
    238238msgstr ""
    239239
    240 #: admin/assets/social-stream-add-layout.php:397
     240#: admin/assets/social-stream-add-layout.php:420
    241241msgid "Popup Settings"
    242242msgstr ""
    243243
    244 #: admin/assets/social-stream-add-layout.php:464
     244#: admin/assets/social-stream-add-layout.php:493
    245245msgid "Select the feeds which you have created in feeds tab."
    246246msgstr ""
    247247
    248 #: admin/assets/social-stream-add-layout.php:468
     248#: admin/assets/social-stream-add-layout.php:498
    249249msgid "Title"
    250250msgstr ""
    251251
    252 #: admin/assets/social-stream-add-layout.php:471
     252#: admin/assets/social-stream-add-layout.php:503
    253253msgid ""
    254254"Enter the layout title. This will not display on frontend it is only for "
     
    256256msgstr ""
    257257
    258 #: admin/assets/social-stream-add-layout.php:475
     258#: admin/assets/social-stream-add-layout.php:508
    259259msgid "Select Page for Stream"
    260260msgstr ""
    261261
    262 #: admin/assets/social-stream-add-layout.php:478
     262#: admin/assets/social-stream-add-layout.php:512
    263263msgid "Select Page"
    264264msgstr ""
    265265
    266 #: admin/assets/social-stream-add-layout.php:488
     266#: admin/assets/social-stream-add-layout.php:524
    267267msgid "Select the page for display layout"
    268268msgstr ""
    269269
    270 #: admin/assets/social-stream-add-layout.php:489
     270#: admin/assets/social-stream-add-layout.php:527
    271271msgid "Caution"
    272272msgstr ""
    273273
    274 #: admin/assets/social-stream-add-layout.php:489
     274#: admin/assets/social-stream-add-layout.php:528
    275275msgid ""
    276276"You are about to select the page for your layout, you will lost your page "
     
    278278msgstr ""
    279279
    280 #: admin/assets/social-stream-add-layout.php:493
     280#: admin/assets/social-stream-add-layout.php:533
    281281msgid "Order By"
    282282msgstr ""
    283283
    284 #: admin/assets/social-stream-add-layout.php:502
     284#: admin/assets/social-stream-add-layout.php:547
    285285msgid ""
    286286"Select parameter to sort feeds. If you select \"Social media\" option then "
     
    288288msgstr ""
    289289
    290 #: admin/assets/social-stream-add-layout.php:506
     290#: admin/assets/social-stream-add-layout.php:552
    291291msgid "Order"
    292292msgstr ""
    293293
    294 #: admin/assets/social-stream-add-layout.php:512
     294#: admin/assets/social-stream-add-layout.php:563
    295295msgid ""
    296296"Ascending order from lowest to highest values ( 1,2,3; a,b,c) or Descending "
     
    298298msgstr ""
    299299
    300 #: admin/assets/social-stream-add-layout.php:516
     300#: admin/assets/social-stream-add-layout.php:569
    301301msgid "Private Stream"
    302302msgstr ""
    303303
    304 #: admin/assets/social-stream-add-layout.php:519
    305 #: admin/assets/social-stream-add-layout.php:529
    306 #: admin/assets/social-stream-add-layout.php:539
    307 #: admin/assets/social-stream-add-layout.php:549
    308 #: admin/assets/social-stream-add-layout.php:877
    309 #: admin/assets/social-stream-add-layout.php:887
    310 #: admin/assets/social-stream-add-layout.php:897
    311 #: admin/assets/social-stream-add-layout.php:1145
    312 #: admin/assets/social-stream-add-layout.php:1198
    313 #: admin/assets/social-stream-add-layout.php:1208
    314 #: admin/assets/social-stream-add-layout.php:1327
    315 #: admin/assets/social-stream-add-layout.php:1336
    316 #: admin/assets/social-stream-add-layout.php:1438
    317 #: admin/assets/social-stream-add-layout.php:1530
    318 #: admin/assets/social-stream-add-layout.php:1540
    319 #: admin/assets/social-stream-add-layout.php:1593
    320 #: admin/assets/social-stream-add-layout.php:1603
    321 #: admin/assets/social-stream-add-layout.php:1635
    322 #: admin/assets/social-stream-add-layout.php:1720
    323 #: admin/assets/social-stream-add-layout.php:1729
    324 #: admin/assets/social-stream-add-layout.php:1874
    325 #: admin/assets/social-stream-add-layout.php:1883
    326 #: admin/assets/social-stream-add-layout.php:1892
    327 #: admin/assets/social-stream-add-layout.php:1901
    328 #: admin/assets/social-stream-add-layout.php:1910
    329 #: admin/assets/social-stream-add-layout.php:1919
    330 #: admin/assets/social-stream-add-layout.php:1928
    331 #: admin/assets/social-stream-add-layout.php:1937
    332 #: admin/assets/social-stream-add-layout.php:1946
    333 #: admin/assets/social-stream-add-layout.php:1955
    334 #: admin/assets/social-stream-add-layout.php:1964
    335 #: admin/assets/social-stream-add-layout.php:2058
     304#: admin/assets/social-stream-add-layout.php:576
     305#: admin/assets/social-stream-add-layout.php:594
     306#: admin/assets/social-stream-add-layout.php:613
     307#: admin/assets/social-stream-add-layout.php:630
     308#: admin/assets/social-stream-add-layout.php:998
     309#: admin/assets/social-stream-add-layout.php:1017
     310#: admin/assets/social-stream-add-layout.php:1035
     311#: admin/assets/social-stream-add-layout.php:1346
     312#: admin/assets/social-stream-add-layout.php:1415
     313#: admin/assets/social-stream-add-layout.php:1433
     314#: admin/assets/social-stream-add-layout.php:1587
     315#: admin/assets/social-stream-add-layout.php:1604
     316#: admin/assets/social-stream-add-layout.php:1667
     317#: admin/assets/social-stream-add-layout.php:1797
     318#: admin/assets/social-stream-add-layout.php:1912
     319#: admin/assets/social-stream-add-layout.php:1930
     320#: admin/assets/social-stream-add-layout.php:2005
     321#: admin/assets/social-stream-add-layout.php:2024
     322#: admin/assets/social-stream-add-layout.php:2074
     323#: admin/assets/social-stream-add-layout.php:2187
     324#: admin/assets/social-stream-add-layout.php:2200
     325#: admin/assets/social-stream-add-layout.php:2371
     326#: admin/assets/social-stream-add-layout.php:2386
     327#: admin/assets/social-stream-add-layout.php:2400
     328#: admin/assets/social-stream-add-layout.php:2413
     329#: admin/assets/social-stream-add-layout.php:2426
     330#: admin/assets/social-stream-add-layout.php:2439
     331#: admin/assets/social-stream-add-layout.php:2452
     332#: admin/assets/social-stream-add-layout.php:2465
     333#: admin/assets/social-stream-add-layout.php:2478
     334#: admin/assets/social-stream-add-layout.php:2491
     335#: admin/assets/social-stream-add-layout.php:2504
     336#: admin/assets/social-stream-add-layout.php:2646
    336337#: admin/assets/social-stream-add-social-feed.php:423
    337338msgid "Yes"
    338339msgstr ""
    339340
    340 #: admin/assets/social-stream-add-layout.php:520
    341 #: admin/assets/social-stream-add-layout.php:530
    342 #: admin/assets/social-stream-add-layout.php:540
    343 #: admin/assets/social-stream-add-layout.php:550
    344 #: admin/assets/social-stream-add-layout.php:878
    345 #: admin/assets/social-stream-add-layout.php:888
    346 #: admin/assets/social-stream-add-layout.php:898
    347 #: admin/assets/social-stream-add-layout.php:1146
    348 #: admin/assets/social-stream-add-layout.php:1199
    349 #: admin/assets/social-stream-add-layout.php:1209
    350 #: admin/assets/social-stream-add-layout.php:1328
    351 #: admin/assets/social-stream-add-layout.php:1337
    352 #: admin/assets/social-stream-add-layout.php:1439
    353 #: admin/assets/social-stream-add-layout.php:1531
    354 #: admin/assets/social-stream-add-layout.php:1541
    355 #: admin/assets/social-stream-add-layout.php:1594
    356 #: admin/assets/social-stream-add-layout.php:1604
    357 #: admin/assets/social-stream-add-layout.php:1636
    358 #: admin/assets/social-stream-add-layout.php:1721
    359 #: admin/assets/social-stream-add-layout.php:1730
    360 #: admin/assets/social-stream-add-layout.php:1875
    361 #: admin/assets/social-stream-add-layout.php:1884
    362 #: admin/assets/social-stream-add-layout.php:1893
    363 #: admin/assets/social-stream-add-layout.php:1902
    364 #: admin/assets/social-stream-add-layout.php:1911
    365 #: admin/assets/social-stream-add-layout.php:1920
    366 #: admin/assets/social-stream-add-layout.php:1929
    367 #: admin/assets/social-stream-add-layout.php:1938
    368 #: admin/assets/social-stream-add-layout.php:1947
    369 #: admin/assets/social-stream-add-layout.php:1956
    370 #: admin/assets/social-stream-add-layout.php:1965
    371 #: admin/assets/social-stream-add-layout.php:2059
     341#: admin/assets/social-stream-add-layout.php:579
     342#: admin/assets/social-stream-add-layout.php:597
     343#: admin/assets/social-stream-add-layout.php:616
     344#: admin/assets/social-stream-add-layout.php:634
     345#: admin/assets/social-stream-add-layout.php:1002
     346#: admin/assets/social-stream-add-layout.php:1020
     347#: admin/assets/social-stream-add-layout.php:1038
     348#: admin/assets/social-stream-add-layout.php:1350
     349#: admin/assets/social-stream-add-layout.php:1419
     350#: admin/assets/social-stream-add-layout.php:1436
     351#: admin/assets/social-stream-add-layout.php:1590
     352#: admin/assets/social-stream-add-layout.php:1605
     353#: admin/assets/social-stream-add-layout.php:1671
     354#: admin/assets/social-stream-add-layout.php:1800
     355#: admin/assets/social-stream-add-layout.php:1916
     356#: admin/assets/social-stream-add-layout.php:1934
     357#: admin/assets/social-stream-add-layout.php:2009
     358#: admin/assets/social-stream-add-layout.php:2028
     359#: admin/assets/social-stream-add-layout.php:2078
     360#: admin/assets/social-stream-add-layout.php:2190
     361#: admin/assets/social-stream-add-layout.php:2203
     362#: admin/assets/social-stream-add-layout.php:2375
     363#: admin/assets/social-stream-add-layout.php:2390
     364#: admin/assets/social-stream-add-layout.php:2403
     365#: admin/assets/social-stream-add-layout.php:2416
     366#: admin/assets/social-stream-add-layout.php:2429
     367#: admin/assets/social-stream-add-layout.php:2442
     368#: admin/assets/social-stream-add-layout.php:2455
     369#: admin/assets/social-stream-add-layout.php:2468
     370#: admin/assets/social-stream-add-layout.php:2481
     371#: admin/assets/social-stream-add-layout.php:2494
     372#: admin/assets/social-stream-add-layout.php:2507
     373#: admin/assets/social-stream-add-layout.php:2650
    372374#: admin/assets/social-stream-add-social-feed.php:423
    373375msgid "No"
    374376msgstr ""
    375377
    376 #: admin/assets/social-stream-add-layout.php:522
     378#: admin/assets/social-stream-add-layout.php:582
    377379msgid "Show only for logged in users."
    378380msgstr ""
    379381
    380 #: admin/assets/social-stream-add-layout.php:526
     382#: admin/assets/social-stream-add-layout.php:588
    381383msgid "Hide Stream on a Desktop"
    382384msgstr ""
    383385
    384 #: admin/assets/social-stream-add-layout.php:532
    385 #: admin/assets/social-stream-add-layout.php:542
    386 #: admin/assets/social-stream-add-layout.php:552
    387 #: admin/assets/social-stream-add-layout.php:900
    388 #: admin/assets/social-stream-add-layout.php:2034
    389 #: admin/assets/social-stream-add-layout.php:2043
     386#: admin/assets/social-stream-add-layout.php:600
     387#: admin/assets/social-stream-add-layout.php:619
     388#: admin/assets/social-stream-add-layout.php:637
     389#: admin/assets/social-stream-add-layout.php:1041
     390#: admin/assets/social-stream-add-layout.php:2611
     391#: admin/assets/social-stream-add-layout.php:2625
    390392#: admin/assets/social-stream-add-social-feed.php:163
    391393#: admin/assets/social-stream-add-social-feed.php:208
     
    406408msgstr ""
    407409
    408 #: admin/assets/social-stream-add-layout.php:532
     410#: admin/assets/social-stream-add-layout.php:601
    409411msgid "If you want to create mobiles specific stream only."
    410412msgstr ""
    411413
    412 #: admin/assets/social-stream-add-layout.php:536
     414#: admin/assets/social-stream-add-layout.php:607
    413415msgid "Hide Stream on a Mobile"
    414416msgstr ""
    415417
    416 #: admin/assets/social-stream-add-layout.php:542
     418#: admin/assets/social-stream-add-layout.php:620
    417419msgid "If you want to show stream content only on desktop."
    418420msgstr ""
    419421
    420 #: admin/assets/social-stream-add-layout.php:546
     422#: admin/assets/social-stream-add-layout.php:625
    421423msgid "Display Stream Meta"
    422424msgstr ""
    423425
    424 #: admin/assets/social-stream-add-layout.php:552
     426#: admin/assets/social-stream-add-layout.php:638
    425427msgid "Display comments, like, dislikes, views, tweets in each post."
    426428msgstr ""
    427429
    428 #: admin/assets/social-stream-add-layout.php:556
     430#: admin/assets/social-stream-add-layout.php:643
    429431msgid "Custom CSS"
    430432msgstr ""
    431433
    432 #: admin/assets/social-stream-add-layout.php:605
     434#: admin/assets/social-stream-add-layout.php:697
    433435msgid "Select the layout which is more suitable as per your requirement."
    434436msgstr ""
    435437
    436 #: admin/assets/social-stream-add-layout.php:626
     438#: admin/assets/social-stream-add-layout.php:720
    437439msgid "Drag and Drop Builder"
    438440msgstr ""
    439441
    440 #: admin/assets/social-stream-add-layout.php:636
    441 #: include/class-social-stream-main.php:844
     442#: admin/assets/social-stream-add-layout.php:731
     443#: include/class-social-stream-main.php:846
    442444msgid "41 landing page optimization best practices"
    443445msgstr ""
    444446
    445 #: admin/assets/social-stream-add-layout.php:650
    446 #: include/class-social-stream-main.php:858
     447#: admin/assets/social-stream-add-layout.php:749
     448#: include/class-social-stream-main.php:860
    447449msgid "Facebook"
    448450msgstr ""
    449451
    450 #: admin/assets/social-stream-add-layout.php:657
    451 #: include/class-social-stream-main.php:864
     452#: admin/assets/social-stream-add-layout.php:758
     453#: include/class-social-stream-main.php:866
    452454msgid "Sample Image"
    453455msgstr ""
    454456
    455 #: admin/assets/social-stream-add-layout.php:667
    456 #: include/class-social-stream-main.php:873
     457#: admin/assets/social-stream-add-layout.php:769
     458#: include/class-social-stream-main.php:875
    457459msgid "Solwin Infotech"
    458460msgstr ""
    459461
    460 #: admin/assets/social-stream-add-layout.php:670
    461 #: include/class-social-stream-main.php:876
     462#: admin/assets/social-stream-add-layout.php:772
     463#: include/class-social-stream-main.php:878
    462464msgid "SolwinInfotech"
    463465msgstr ""
    464466
    465 #: admin/assets/social-stream-add-layout.php:672
    466 #: include/class-social-stream-main.php:878
     467#: admin/assets/social-stream-add-layout.php:774
     468#: include/class-social-stream-main.php:880
    467469msgid "3h ago"
    468470msgstr ""
    469471
    470 #: admin/assets/social-stream-add-layout.php:709
     472#: admin/assets/social-stream-add-layout.php:812
    471473msgid ""
    472474"You can drag and drop element up and down. In layout 2 and layout 3 you can "
     
    474476msgstr ""
    475477
    476 #: admin/assets/social-stream-add-layout.php:722
     478#: admin/assets/social-stream-add-layout.php:826
    477479msgid "Layout Type"
    478480msgstr ""
    479481
    480 #: admin/assets/social-stream-add-layout.php:736
    481 #: admin/assets/social-stream-add-layout.php:760
    482 #: admin/assets/social-stream-add-layout.php:784
    483 #: admin/assets/social-stream-add-layout.php:808
    484 #: admin/assets/social-stream-add-layout.php:832
    485 #: admin/assets/social-stream-add-layout.php:854
     482#: admin/assets/social-stream-add-layout.php:846
     483#: admin/assets/social-stream-add-layout.php:871
     484#: admin/assets/social-stream-add-layout.php:896
     485#: admin/assets/social-stream-add-layout.php:922
     486#: admin/assets/social-stream-add-layout.php:947
     487#: admin/assets/social-stream-add-layout.php:971
    486488msgid "Number of Feeds in One Row"
    487489msgstr ""
    488490
    489 #: admin/assets/social-stream-add-layout.php:751
    490 #: admin/assets/social-stream-add-layout.php:775
    491 #: admin/assets/social-stream-add-layout.php:799
    492 #: admin/assets/social-stream-add-layout.php:823
    493 #: admin/assets/social-stream-add-layout.php:845
    494 #: admin/assets/social-stream-add-layout.php:867
     491#: admin/assets/social-stream-add-layout.php:862
     492#: admin/assets/social-stream-add-layout.php:887
     493#: admin/assets/social-stream-add-layout.php:913
     494#: admin/assets/social-stream-add-layout.php:938
     495#: admin/assets/social-stream-add-layout.php:962
     496#: admin/assets/social-stream-add-layout.php:985
    495497msgid "Enter the number of feeds to display in one row"
    496498msgstr ""
    497499
    498 #: admin/assets/social-stream-add-layout.php:874
     500#: admin/assets/social-stream-add-layout.php:992
    499501msgid "Display Share Icon"
    500502msgstr ""
    501503
    502 #: admin/assets/social-stream-add-layout.php:880
     504#: admin/assets/social-stream-add-layout.php:1005
    503505msgid ""
    504506"Show/Hide share icon. With this you can share you feeds on multiple social "
     
    506508msgstr ""
    507509
    508 #: admin/assets/social-stream-add-layout.php:884
     510#: admin/assets/social-stream-add-layout.php:1011
    509511msgid "Display Filter"
    510512msgstr ""
    511513
    512 #: admin/assets/social-stream-add-layout.php:890
     514#: admin/assets/social-stream-add-layout.php:1023
    513515msgid "Show/Hide filter on frontend"
    514516msgstr ""
    515517
    516 #: admin/assets/social-stream-add-layout.php:894
     518#: admin/assets/social-stream-add-layout.php:1029
    517519msgid "Display Search"
    518520msgstr ""
    519521
    520 #: admin/assets/social-stream-add-layout.php:900
     522#: admin/assets/social-stream-add-layout.php:1042
    521523msgid "Available only for listing layouts."
    522524msgstr ""
    523525
    524 #: admin/assets/social-stream-add-layout.php:904
     526#: admin/assets/social-stream-add-layout.php:1047
    525527msgid "Theme Color"
    526528msgstr ""
    527529
    528 #: admin/assets/social-stream-add-layout.php:910
     530#: admin/assets/social-stream-add-layout.php:1055
    529531msgid "Background color"
    530532msgstr ""
    531533
    532 #: admin/assets/social-stream-add-layout.php:945
     534#: admin/assets/social-stream-add-layout.php:1101
    533535msgid "Stream Heading"
    534536msgstr ""
    535537
    536 #: admin/assets/social-stream-add-layout.php:948
     538#: admin/assets/social-stream-add-layout.php:1106
    537539msgid ""
    538540"Enter the Stream title. This will display on frontend.If Leave empty to not "
     
    540542msgstr ""
    541543
    542 #: admin/assets/social-stream-add-layout.php:952
     544#: admin/assets/social-stream-add-layout.php:1111
    543545msgid "Heading color"
    544546msgstr ""
    545547
    546 #: admin/assets/social-stream-add-layout.php:958
     548#: admin/assets/social-stream-add-layout.php:1119
    547549msgid "Stream Sub-Heading"
    548550msgstr ""
    549551
    550 #: admin/assets/social-stream-add-layout.php:961
     552#: admin/assets/social-stream-add-layout.php:1124
    551553msgid ""
    552554"Enter the Stream sub-title. This will display on frontend.If Leave empty to "
     
    554556msgstr ""
    555557
    556 #: admin/assets/social-stream-add-layout.php:965
     558#: admin/assets/social-stream-add-layout.php:1129
    557559msgid "Sub-Heading color"
    558560msgstr ""
    559561
    560 #: admin/assets/social-stream-add-layout.php:971
     562#: admin/assets/social-stream-add-layout.php:1138
    561563msgid "Headings alignment"
    562564msgstr ""
    563565
    564 #: admin/assets/social-stream-add-layout.php:983
     566#: admin/assets/social-stream-add-layout.php:1156
    565567msgid "Heading Background color"
    566568msgstr ""
    567569
    568 #: admin/assets/social-stream-add-layout.php:997
     570#: admin/assets/social-stream-add-layout.php:1173
    569571msgid "Card Border"
    570572msgstr ""
    571573
    572 #: admin/assets/social-stream-add-layout.php:1070
     574#: admin/assets/social-stream-add-layout.php:1252
    573575msgid "Card Border Radius (px)"
    574576msgstr ""
    575577
    576 #: admin/assets/social-stream-add-layout.php:1080
     578#: admin/assets/social-stream-add-layout.php:1265
    577579msgid "Card Background Color"
    578580msgstr ""
    579581
    580 #: admin/assets/social-stream-add-layout.php:1086
     582#: admin/assets/social-stream-add-layout.php:1273
    581583msgid "Card Overlay Background Color"
    582584msgstr ""
    583585
    584 #: admin/assets/social-stream-add-layout.php:1092
     586#: admin/assets/social-stream-add-layout.php:1282
    585587msgid "Card Box Shadow"
    586588msgstr ""
    587589
    588 #: admin/assets/social-stream-add-layout.php:1127
     590#: admin/assets/social-stream-add-layout.php:1322
    589591msgid "Card Custom Class"
    590592msgstr ""
    591593
    592 #: admin/assets/social-stream-add-layout.php:1130
     594#: admin/assets/social-stream-add-layout.php:1327
    593595msgid ""
    594596"Enter the custom class name here, which will apply to the card and this "
     
    597599msgstr ""
    598600
    599 #: admin/assets/social-stream-add-layout.php:1142
     601#: admin/assets/social-stream-add-layout.php:1340
    600602msgid "Display Social Icon"
    601603msgstr ""
    602604
    603 #: admin/assets/social-stream-add-layout.php:1151
     605#: admin/assets/social-stream-add-layout.php:1355
    604606msgid "Social Share Type"
    605607msgstr ""
    606608
    607 #: admin/assets/social-stream-add-layout.php:1159
     609#: admin/assets/social-stream-add-layout.php:1366
    608610msgid "Icon"
    609611msgstr ""
    610612
    611 #: admin/assets/social-stream-add-layout.php:1161
     613#: admin/assets/social-stream-add-layout.php:1368
    612614msgid "Text"
    613615msgstr ""
    614616
    615 #: admin/assets/social-stream-add-layout.php:1169
     617#: admin/assets/social-stream-add-layout.php:1376
    616618msgid "Social Share Icon Style"
    617619msgstr ""
    618620
    619 #: admin/assets/social-stream-add-layout.php:1172 class-socialstream.php:567
     621#: admin/assets/social-stream-add-layout.php:1381
     622#: admin/assets/social-stream-add-layout.php:1641 class-socialstream.php:567
    620623msgid "Default"
    621624msgstr ""
    622625
    623 #: admin/assets/social-stream-add-layout.php:1173
     626#: admin/assets/social-stream-add-layout.php:1384
    624627msgid "Custom"
    625628msgstr ""
    626629
    627 #: admin/assets/social-stream-add-layout.php:1178
     630#: admin/assets/social-stream-add-layout.php:1389
    628631msgid "Select Icon Layout"
    629632msgstr ""
    630633
    631 #: admin/assets/social-stream-add-layout.php:1195
     634#: admin/assets/social-stream-add-layout.php:1409
    632635msgid "Display Corner Icon"
    633636msgstr ""
    634637
    635 #: admin/assets/social-stream-add-layout.php:1201
     638#: admin/assets/social-stream-add-layout.php:1422
    636639msgid "Display social icon on top, bottom, left, right corner."
    637640msgstr ""
    638641
    639 #: admin/assets/social-stream-add-layout.php:1205
     642#: admin/assets/social-stream-add-layout.php:1427
    640643msgid "Display Sticky"
    641644msgstr ""
    642645
    643 #: admin/assets/social-stream-add-layout.php:1211
     646#: admin/assets/social-stream-add-layout.php:1439
    644647msgid "Display social icon sticky on media or author"
    645648msgstr ""
    646649
    647 #: admin/assets/social-stream-add-layout.php:1216
     650#: admin/assets/social-stream-add-layout.php:1445
    648651msgid "Display Sticky on"
    649652msgstr ""
    650653
    651 #: admin/assets/social-stream-add-layout.php:1220 class-socialstream.php:995
     654#: admin/assets/social-stream-add-layout.php:1451 class-socialstream.php:995
    652655#: class-socialstream.php:997
    653656msgid "Media"
    654657msgstr ""
    655658
    656 #: admin/assets/social-stream-add-layout.php:1224
    657 #: admin/assets/social-stream-add-layout.php:1228 class-socialstream.php:995
     659#: admin/assets/social-stream-add-layout.php:1456
     660#: admin/assets/social-stream-add-layout.php:1460 class-socialstream.php:995
    658661#: class-socialstream.php:997
    659662msgid "Author"
    660663msgstr ""
    661664
    662 #: admin/assets/social-stream-add-layout.php:1237
     665#: admin/assets/social-stream-add-layout.php:1469
    663666msgid "Icon Border Radius"
    664667msgstr ""
    665668
    666 #: admin/assets/social-stream-add-layout.php:1255
     669#: admin/assets/social-stream-add-layout.php:1491
    667670msgid "Text Border Radius"
    668671msgstr ""
    669672
    670 #: admin/assets/social-stream-add-layout.php:1273
     673#: admin/assets/social-stream-add-layout.php:1513
    671674msgid "Alignment"
    672675msgstr ""
    673676
    674 #: admin/assets/social-stream-add-layout.php:1288
     677#: admin/assets/social-stream-add-layout.php:1533
    675678msgid "Select the alignment of social share icon"
    676679msgstr ""
    677680
    678 #: admin/assets/social-stream-add-layout.php:1292
     681#: admin/assets/social-stream-add-layout.php:1538
    679682msgid "Position"
    680683msgstr ""
    681684
    682 #: admin/assets/social-stream-add-layout.php:1300
     685#: admin/assets/social-stream-add-layout.php:1550
    683686msgid "Select the position of social share icon"
    684687msgstr ""
    685688
    686 #: admin/assets/social-stream-add-layout.php:1304
    687 #: admin/assets/social-stream-add-layout.php:1743
     689#: admin/assets/social-stream-add-layout.php:1555
     690#: admin/assets/social-stream-add-layout.php:2216
    688691msgid "Color"
    689692msgstr ""
    690693
    691 #: admin/assets/social-stream-add-layout.php:1310
    692 #: admin/assets/social-stream-add-layout.php:1749
     694#: admin/assets/social-stream-add-layout.php:1563
     695#: admin/assets/social-stream-add-layout.php:2225
    693696msgid "Background Color"
    694697msgstr ""
    695698
    696 #: admin/assets/social-stream-add-layout.php:1324
     699#: admin/assets/social-stream-add-layout.php:1580
    697700msgid "Display Title"
    698701msgstr ""
    699702
    700 #: admin/assets/social-stream-add-layout.php:1333
     703#: admin/assets/social-stream-add-layout.php:1600
     704msgid "Post Title Maximum Line"
     705msgstr ""
     706
     707#: admin/assets/social-stream-add-layout.php:1615
     708msgid "Display Maximum Number Of Lines"
     709msgstr ""
     710
     711#: admin/assets/social-stream-add-layout.php:1633
     712msgid "Post Title Break Words"
     713msgstr ""
     714
     715#: admin/assets/social-stream-add-layout.php:1646
     716msgid "Break-All"
     717msgstr ""
     718
     719#: admin/assets/social-stream-add-layout.php:1651
     720msgid "Break-Words"
     721msgstr ""
     722
     723#: admin/assets/social-stream-add-layout.php:1660
    701724msgid "Display Title Link"
    702725msgstr ""
    703726
    704 #: admin/assets/social-stream-add-layout.php:1344
     727#: admin/assets/social-stream-add-layout.php:1678
    705728msgid "Title Font Size"
    706729msgstr ""
    707730
    708 #: admin/assets/social-stream-add-layout.php:1355
     731#: admin/assets/social-stream-add-layout.php:1692
    709732msgid "Title Color"
    710733msgstr ""
    711734
    712 #: admin/assets/social-stream-add-layout.php:1361
     735#: admin/assets/social-stream-add-layout.php:1702
    713736msgid "Title Hover Color"
    714737msgstr ""
    715738
    716 #: admin/assets/social-stream-add-layout.php:1367
     739#: admin/assets/social-stream-add-layout.php:1712
    717740msgid "Title Background Color"
    718741msgstr ""
    719742
    720 #: admin/assets/social-stream-add-layout.php:1373
     743#: admin/assets/social-stream-add-layout.php:1720
    721744msgid "Title Padding"
    722745msgstr ""
    723746
    724 #: admin/assets/social-stream-add-layout.php:1407
     747#: admin/assets/social-stream-add-layout.php:1761
    725748msgid "Title Font Weight"
    726749msgstr ""
    727750
    728 #: admin/assets/social-stream-add-layout.php:1435
     751#: admin/assets/social-stream-add-layout.php:1791
    729752msgid "Display Content"
    730753msgstr ""
    731754
    732 #: admin/assets/social-stream-add-layout.php:1445
     755#: admin/assets/social-stream-add-layout.php:1806
    733756msgid "Content Word Limit"
    734757msgstr ""
    735758
    736 #: admin/assets/social-stream-add-layout.php:1450
     759#: admin/assets/social-stream-add-layout.php:1813
    737760msgid ""
    738761"Enter the number of words to display in content. Leave blank if you want to "
     
    740763msgstr ""
    741764
    742 #: admin/assets/social-stream-add-layout.php:1456
     765#: admin/assets/social-stream-add-layout.php:1820
    743766msgid "Content Font Size"
    744767msgstr ""
    745768
    746 #: admin/assets/social-stream-add-layout.php:1467
     769#: admin/assets/social-stream-add-layout.php:1833
    747770msgid "Content Color"
    748771msgstr ""
    749772
    750 #: admin/assets/social-stream-add-layout.php:1479
     773#: admin/assets/social-stream-add-layout.php:1848
    751774msgid "Content Background Color"
    752775msgstr ""
    753776
    754 #: admin/assets/social-stream-add-layout.php:1527
     777#: admin/assets/social-stream-add-layout.php:1905
    755778msgid "Display Feeds Without Media"
    756779msgstr ""
    757780
    758 #: admin/assets/social-stream-add-layout.php:1533
     781#: admin/assets/social-stream-add-layout.php:1919
    759782msgid "Show/Hide feeds which do not have the media."
    760783msgstr ""
    761784
    762 #: admin/assets/social-stream-add-layout.php:1537
     785#: admin/assets/social-stream-add-layout.php:1924
    763786msgid "Display Default Image"
    764787msgstr ""
    765788
    766 #: admin/assets/social-stream-add-layout.php:1543
     789#: admin/assets/social-stream-add-layout.php:1937
    767790msgid "Enable default image for the feeds which does not have media"
    768791msgstr ""
    769792
    770 #: admin/assets/social-stream-add-layout.php:1547
     793#: admin/assets/social-stream-add-layout.php:1942
    771794msgid "Upload Default Image"
    772795msgstr ""
    773796
    774 #: admin/assets/social-stream-add-layout.php:1559
     797#: admin/assets/social-stream-add-layout.php:1955
    775798msgid "Remove Image"
    776799msgstr ""
    777800
    778 #: admin/assets/social-stream-add-layout.php:1563
     801#: admin/assets/social-stream-add-layout.php:1961
    779802msgid "Upload Image"
    780803msgstr ""
    781804
    782 #: admin/assets/social-stream-add-layout.php:1569
     805#: admin/assets/social-stream-add-layout.php:1973
    783806msgid "Upload default image"
    784807msgstr ""
    785808
    786 #: admin/assets/social-stream-add-layout.php:1573
     809#: admin/assets/social-stream-add-layout.php:1978
    787810msgid "Margin"
    788811msgstr ""
    789812
    790 #: admin/assets/social-stream-add-layout.php:1590
     813#: admin/assets/social-stream-add-layout.php:1999
    791814msgid "Display Gallery Slider Arrows"
    792815msgstr ""
    793816
    794 #: admin/assets/social-stream-add-layout.php:1596
     817#: admin/assets/social-stream-add-layout.php:2012
    795818msgid ""
    796819"Show/Hide Slider navigation icons for media gallery. This option is only "
     
    798821msgstr ""
    799822
    800 #: admin/assets/social-stream-add-layout.php:1600
     823#: admin/assets/social-stream-add-layout.php:2018
    801824msgid "Gallery Slider Autoplay"
    802825msgstr ""
    803826
    804 #: admin/assets/social-stream-add-layout.php:1606
     827#: admin/assets/social-stream-add-layout.php:2031
    805828msgid ""
    806829"Show/Hide slider autoplay. This option is only work for Instagram feeds."
    807830msgstr ""
    808831
    809 #: admin/assets/social-stream-add-layout.php:1610
     832#: admin/assets/social-stream-add-layout.php:2037
    810833msgid "Enter Gallery slider autoplay intervals"
    811834msgstr ""
    812835
    813 #: admin/assets/social-stream-add-layout.php:1613
     836#: admin/assets/social-stream-add-layout.php:2043
    814837msgid ""
    815838"Enter autoplay interval time for gallery slider in ms. This option is only "
     
    817840msgstr ""
    818841
    819 #: admin/assets/social-stream-add-layout.php:1617
     842#: admin/assets/social-stream-add-layout.php:2049
    820843msgid "Gallery Slider Speed"
    821844msgstr ""
    822845
    823 #: admin/assets/social-stream-add-layout.php:1620
     846#: admin/assets/social-stream-add-layout.php:2055
    824847msgid ""
    825848"Enter gallery slider speed in ms. This option is only work for Instagram "
     
    827850msgstr ""
    828851
    829 #: admin/assets/social-stream-add-layout.php:1632
     852#: admin/assets/social-stream-add-layout.php:2068
    830853msgid "Display Author Box"
    831854msgstr ""
    832855
    833 #: admin/assets/social-stream-add-layout.php:1641
     856#: admin/assets/social-stream-add-layout.php:2083
    834857msgid "Author Image Border Radius"
    835858msgstr ""
    836859
    837 #: admin/assets/social-stream-add-layout.php:1659
     860#: admin/assets/social-stream-add-layout.php:2107
    838861msgid "Author Box Background Color"
    839862msgstr ""
    840863
    841 #: admin/assets/social-stream-add-layout.php:1665
     864#: admin/assets/social-stream-add-layout.php:2114
    842865msgid "Author Box Title Color"
    843866msgstr ""
    844867
    845 #: admin/assets/social-stream-add-layout.php:1671
     868#: admin/assets/social-stream-add-layout.php:2122
    846869msgid "Author Box Hover Title Color"
    847870msgstr ""
    848871
    849 #: admin/assets/social-stream-add-layout.php:1677
     872#: admin/assets/social-stream-add-layout.php:2131
    850873msgid "Author Box Meta Color"
    851874msgstr ""
    852875
    853 #: admin/assets/social-stream-add-layout.php:1683
     876#: admin/assets/social-stream-add-layout.php:2140
    854877msgid "Author Box Padding"
    855878msgstr ""
    856879
    857 #: admin/assets/social-stream-add-layout.php:1700
     880#: admin/assets/social-stream-add-layout.php:2161
    858881msgid "Author Box Margin"
    859882msgstr ""
    860883
    861 #: admin/assets/social-stream-add-layout.php:1717
     884#: admin/assets/social-stream-add-layout.php:2181
    862885msgid "Display Author Screen Name"
    863886msgstr ""
    864887
    865 #: admin/assets/social-stream-add-layout.php:1726
     888#: admin/assets/social-stream-add-layout.php:2195
    866889msgid "Display Time"
    867890msgstr ""
    868891
    869 #: admin/assets/social-stream-add-layout.php:1755
     892#: admin/assets/social-stream-add-layout.php:2233
    870893msgid "Hover Color"
    871894msgstr ""
    872895
    873 #: admin/assets/social-stream-add-layout.php:1837
     896#: admin/assets/social-stream-add-layout.php:2322
    874897msgid "Bar Padding"
    875898msgstr ""
    876899
    877 #: admin/assets/social-stream-add-layout.php:1854
     900#: admin/assets/social-stream-add-layout.php:2343
    878901msgid "Bar Margin"
    879902msgstr ""
    880903
    881 #: admin/assets/social-stream-add-layout.php:1871
     904#: admin/assets/social-stream-add-layout.php:2365
    882905msgid "Display User Followers"
    883906msgstr ""
    884907
    885 #: admin/assets/social-stream-add-layout.php:1880
     908#: admin/assets/social-stream-add-layout.php:2380
    886909msgid "Display User Friends"
    887910msgstr ""
    888911
    889 #: admin/assets/social-stream-add-layout.php:1889
     912#: admin/assets/social-stream-add-layout.php:2395
    890913msgid "Display Retweet Count"
    891914msgstr ""
    892915
    893 #: admin/assets/social-stream-add-layout.php:1898
     916#: admin/assets/social-stream-add-layout.php:2408
    894917msgid "Display Reply Count"
    895918msgstr ""
    896919
    897 #: admin/assets/social-stream-add-layout.php:1907
     920#: admin/assets/social-stream-add-layout.php:2421
    898921msgid "Display Favorite Count"
    899922msgstr ""
    900923
    901 #: admin/assets/social-stream-add-layout.php:1916
     924#: admin/assets/social-stream-add-layout.php:2434
    902925msgid "Display Views Count"
    903926msgstr ""
    904927
    905 #: admin/assets/social-stream-add-layout.php:1925
     928#: admin/assets/social-stream-add-layout.php:2447
    906929msgid "Display Likes Count"
    907930msgstr ""
    908931
    909 #: admin/assets/social-stream-add-layout.php:1934
     932#: admin/assets/social-stream-add-layout.php:2460
    910933msgid "Display Pin Count"
    911934msgstr ""
    912935
    913 #: admin/assets/social-stream-add-layout.php:1943
     936#: admin/assets/social-stream-add-layout.php:2473
    914937msgid "Display Dislikes Count"
    915938msgstr ""
    916939
    917 #: admin/assets/social-stream-add-layout.php:1952
     940#: admin/assets/social-stream-add-layout.php:2486
    918941msgid "Display Comments Count"
    919942msgstr ""
    920943
    921 #: admin/assets/social-stream-add-layout.php:1961
     944#: admin/assets/social-stream-add-layout.php:2499
    922945msgid "Display Share Count"
    923946msgstr ""
    924947
    925 #: admin/assets/social-stream-add-layout.php:1978
     948#: admin/assets/social-stream-add-layout.php:2520
    926949msgid "Pagination Type"
    927950msgstr ""
    928951
    929 #: admin/assets/social-stream-add-layout.php:1982
     952#: admin/assets/social-stream-add-layout.php:2527
    930953msgid "No Pagination"
    931954msgstr ""
    932955
    933 #: admin/assets/social-stream-add-layout.php:1983
     956#: admin/assets/social-stream-add-layout.php:2530
    934957msgid "Paged"
    935958msgstr ""
    936959
    937 #: admin/assets/social-stream-add-layout.php:1984
     960#: admin/assets/social-stream-add-layout.php:2532
    938961msgid "Load More Button"
    939962msgstr ""
    940963
    941 #: admin/assets/social-stream-add-layout.php:1985
     964#: admin/assets/social-stream-add-layout.php:2535
    942965msgid "Load On Page Scroll"
    943966msgstr ""
    944967
    945 #: admin/assets/social-stream-add-layout.php:1988
     968#: admin/assets/social-stream-add-layout.php:2540
    946969msgid "Select pagination type"
    947970msgstr ""
    948971
    949 #: admin/assets/social-stream-add-layout.php:1992
     972#: admin/assets/social-stream-add-layout.php:2545
    950973msgid "Load More Button Layout"
    951974msgstr ""
    952975
    953 #: admin/assets/social-stream-add-layout.php:1996
    954 #: admin/assets/social-stream-add-layout.php:1997
    955 #: admin/assets/social-stream-add-layout.php:1998
     976#: admin/assets/social-stream-add-layout.php:2553
     977#: admin/assets/social-stream-add-layout.php:2556
     978#: admin/assets/social-stream-add-layout.php:2559
    956979msgid "Template"
    957980msgstr ""
    958981
    959 #: admin/assets/social-stream-add-layout.php:2001
     982#: admin/assets/social-stream-add-layout.php:2564
    960983msgid "Select load more button layout"
    961984msgstr ""
    962985
    963 #: admin/assets/social-stream-add-layout.php:2008 class-socialstream.php:328
     986#: admin/assets/social-stream-add-layout.php:2574 class-socialstream.php:328
    964987msgid "Load More"
    965988msgstr ""
    966989
    967 #: admin/assets/social-stream-add-layout.php:2013
     990#: admin/assets/social-stream-add-layout.php:2580
    968991msgid "Load More Effect"
    969992msgstr ""
    970993
    971 #: admin/assets/social-stream-add-layout.php:2025
     994#: admin/assets/social-stream-add-layout.php:2596
    972995msgid "Select load more effect"
    973996msgstr ""
    974997
    975 #: admin/assets/social-stream-add-layout.php:2029
     998#: admin/assets/social-stream-add-layout.php:2601
    976999msgid "Number Of Posts To Display Per Page"
    9771000msgstr ""
    9781001
    979 #: admin/assets/social-stream-add-layout.php:2034
     1002#: admin/assets/social-stream-add-layout.php:2612
    9801003msgid "Select number of feeds you want to display in single page"
    9811004msgstr ""
    9821005
    983 #: admin/assets/social-stream-add-layout.php:2038
     1006#: admin/assets/social-stream-add-layout.php:2617
    9841007msgid "Maximum Posts to Display"
    9851008msgstr ""
    9861009
    987 #: admin/assets/social-stream-add-layout.php:2043
     1010#: admin/assets/social-stream-add-layout.php:2626
    9881011msgid "Select '-1' if you want to display all the feeds."
    9891012msgstr ""
    9901013
    991 #: admin/assets/social-stream-add-layout.php:2055
     1014#: admin/assets/social-stream-add-layout.php:2640
    9921015msgid "Popup open on content click"
    9931016msgstr ""
    9941017
    995 #: admin/assets/social-stream-add-layout.php:2061
     1018#: admin/assets/social-stream-add-layout.php:2653
    9961019msgid "Show/Hide popup on click of content"
    9971020msgstr ""
     
    13911414msgstr ""
    13921415
    1393 #: include/class-social-stream-main.php:950
     1416#: include/class-social-stream-main.php:952
    13941417msgid "Credentials are required to save the file."
    13951418msgstr ""
  • social-stream-design/trunk/readme.txt

    r3069314 r3116011  
    44Tags: Social Media Aggregator, social Media Embed, Social Media Feed, Social Media Wall, Social Feed
    55Requires at least: 5.4
    6 Tested up to: 6.5.2
    7 Stable tag: 1.2
     6Tested up to: 6.5.5
     7Stable tag: 1.3
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    7070
    7171== Changelog ==
     72
     73= 1.3 =
     74
     75Release Date: 11th July, 2024
     76
     77* Updated: Make compatible with WordPress 6.5.5
     78* Updated: Make compatible with Facebook API v19
     79* Fixed: Minor bug fix
    7280
    7381= 1.2 =
  • social-stream-design/trunk/social-stream-design.php

    r3069314 r3116011  
    4343    }
    4444    $shortcode_table_name = $wpdb->prefix . 'ssd_shortcodes';
    45     if ( $wpdb->get_var( "SHOW TABLES LIKE '" . $shortcode_table_name . "'" ) != $shortcode_table_name ) {
     45    if ( $wpdb->get_var( $wpdb->prepare( 'SHOW TABLES LIKE %s', $shortcode_table_name ) ) != $shortcode_table_name ) {
    4646        $sql = "CREATE TABLE $shortcode_table_name (ID int(9) NOT NULL AUTO_INCREMENT,shortcode_name tinytext NOT NULL,social_stream_name text NOT NULL,social_stream_settings text NOT NULL,UNIQUE KEY ID (ID)) $charset_collate;";
    4747        dbDelta( $sql );
    4848    }
    4949    $feeds_table_name = $wpdb->prefix . 'ssd_feeds';
    50     if ( $wpdb->get_var( "SHOW TABLES LIKE '" . $feeds_table_name . "'" ) != $feeds_table_name ) {
     50    if ( $wpdb->get_var( "SHOW TABLES LIKE '" . $wpdb->prefix . 'ssd_feeds' . "'" ) != $feeds_table_name ) {
    5151        $sql = "CREATE TABLE $feeds_table_name (id int(9) NOT NULL AUTO_INCREMENT,feeds_settings text NOT NULL,refresh_feed_date DATETIME NOT NULL,PRIMARY KEY (id)) $charset_collate;";
    5252        dbDelta( $sql );
    5353    }
    5454    $feeds_post_table_name = $wpdb->prefix . 'ssd_feed_posts';
    55     if ( $wpdb->get_var( "SHOW TABLES LIKE '" . $feeds_post_table_name . "'" ) != $feeds_post_table_name ) {
     55    if ( $wpdb->get_var( "SHOW TABLES LIKE '" . $wpdb->prefix . 'ssd_feed_posts' . "'" ) != $feeds_post_table_name ) {
    5656        $sql = "CREATE TABLE $feeds_post_table_name (feed_id int(11) NOT NULL,feed_type varchar(80) NULL,unique_id varchar(200) NULL,post_title text NULL,post_description blob,post_date datetime NULL,post_link varchar(200) NULL,type_in varchar(200) NULL,post_image varchar(1000) NULL,post_video varchar(1000) NULL,post_retweet_count int(11) NULL,post_comment_count int(11) NULL,post_favorite_count int(11) NULL,post_plays_count int(11) NULL,post_likes_count int(11) NULL,post_dislikes_count int(11) NULL,reply_to_link varchar(255) NULL,retweet_link varchar(255) NULL,favourite_link varchar(255) NULL,like_link varchar(255) NULL,play_link varchar(255) NULL,post_language varchar(30) NULL,post_user_name varchar(200) NULL,post_user_screen_name varchar(200) NULL,post_user_location varchar(200) NULL,post_user_description text NULL,post_user_link varchar(200) NULL,post_user_image varchar(200) NULL,post_user_followers_count int(11) NULL,post_user_friends_count int(11) NULL,post_refresh_date datetime) $charset_collate;";
    5757        dbDelta( $sql );
Note: See TracChangeset for help on using the changeset viewer.