Plugin Directory

Changeset 3133258


Ignore:
Timestamp:
08/09/2024 02:31:09 PM (19 months ago)
Author:
solwininfotech
Message:

Easy select and share version 1.4 update

Location:
easy-select-and-share/trunk
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • easy-select-and-share/trunk/admin/css/admin_style.css

    r3116004 r3133258  
    11551155    }
    11561156}
     1157.wrap #asas_admin_settings_form .asas_row  {
     1158    display: flex;
     1159    flex-wrap: wrap;
     1160    align-items: center;
     1161}
     1162@media screen and (max-width: 480px) {
     1163    .asas_topdiv .nav-tab-wrapper .nav-tab .asas_title {
     1164      padding: 15px 2px;
     1165    }
     1166  }
     1167
     1168
  • easy-select-and-share/trunk/admin/css/sas-grid-style.css

    r3001296 r3133258  
    139139    width:device-width
    140140}
     141@media(max-width:1200px){
     142    .wrap #asas_admin_settings_form #asas_share_settings .sas-col-md-7 {
     143        width: 100% ;
     144    }
     145    .wrap #asas_admin_settings_form #asas_share_items   .sas-col-md-7 {
     146        width: 100%;
     147    }
     148}
     149@media(max-width:767px){
     150    .wrap #asas_admin_settings_form #asas_share_settings .sas-col-xs-12 {   
     151        padding-right: 0;
     152    }
     153    .wrap #asas_admin_settings_form #asas_share_items .sas-col-xs-12 { 
     154        padding-right: 0;
     155    }
     156    .wrap #asas_admin_settings_form #asas_fontawesome_setting .sas-col-xs-12 {
     157        padding-right: 0;
     158    }
     159    .wrap #asas_admin_settings_form #asas_other_setting .sas-col-xs-12 {
     160        padding-right: 0;
     161    }
     162}
     163@media(max-width:991px) {
     164    .wrap #asas_admin_settings_form #asas_widgets_setting .sas-col-sm-2 {
     165        width: 25%;
     166    }
     167    .wrap #asas_admin_settings_form #asas_widgets_setting .button_type_image  .asas_row .sas-col-sm-10 {
     168        width: 70%;
     169    }
     170}
     171@media (max-width: 575px) {
     172    .wrap #asas_admin_settings_form #asas_widgets_setting .sas-col-sm-2 {
     173      width: 100%;
     174    }
     175  }
     176  @media (max-width: 480px) {
     177    .wrap #asas_admin_settings_form #asas_widgets_setting .button_type_image .asas_row .sas-col-sm-10 {
     178      width: 100%;
     179    }
     180  }
     181
  • easy-select-and-share/trunk/asset/css/clients_style.css

    r3116004 r3133258  
    700700    outline: none;
    701701}
     702
     703.asas_button_type_img .asas_share_btn:focus {
     704    outline: none;
     705}
  • easy-select-and-share/trunk/class-easyselectandshare.php

    r3069306 r3133258  
    593593        global $post;
    594594        $options = self::esas_get_option();
    595         if ( 'con' === $options['asas_share_text'] && ! empty( $options['asas_excerpt_limit'] ) && $options['asas_excerpt_limit'] > 0 ) {
     595        $share_text = isset($options['asas_share_text']) ? $options['asas_share_text'] : '';
     596        $excerpt_limit = isset($options['asas_excerpt_limit']) ? intval($options['asas_excerpt_limit']) : 0;
     597        if ( 'con' === $share_text && $excerpt_limit > 0 ) {
    596598            $content = wp_trim_words( $content, intval( $options['asas_excerpt_limit'] ), '...' );
    597599        }
     
    832834                $post_content            = wp_strip_all_tags( $post_content );
    833835                $asas_words              = explode( ' ', $post_content );
    834                 $asas_add_soc_word_limit = $options['asas_excerpt_limit'];
     836                $excerpt_limit = isset($options['asas_excerpt_limit']) ? intval($options['asas_excerpt_limit']) : 0;
     837                $asas_add_soc_word_limit = $excerpt_limit;
    835838                if ( count( $asas_words ) > $asas_add_soc_word_limit ) {
    836839                    $post_excerpt = implode( ' ', array_splice( $asas_words, 0, $asas_add_soc_word_limit ) );
     
    867870                    </div>
    868871                    <?php if ( '' !== $asas_widget_title || '1' === $asas_display_close_button ) { ?>
    869                         <div class="share-this-popup-top" <?php echo isset( $text_to_share ) && $text_to_share != "sel" ? 'style="margin-bottom: 0;"' : ""; ?> >
     872                        <div class="share-this-popup-top" <?php echo isset( $text_to_share ) && $text_to_share != "sel" ? 'style="margin-bottom: 20px;"' : ""; ?> >
    870873                            <?php
    871874                            if ( '' !== $asas_widget_title ) :
     
    889892                            <?php
    890893                                $asas_social_order = get_option( 'asas_social_order' );
    891                             if ( '' === $asas_social_order ) {
     894                            if ( '' == $asas_social_order ) {
    892895                                $asas_social_order = 'twitter, linkedin, facebook';
    893896                            }
     
    14941497                </div>
    14951498                <?php if ( '' !== $asas_widget_title || '1' === $asas_display_close_button ) { ?>
    1496                     <div class="share-this-popup-top" <?php echo isset( $text_to_share ) && $text_to_share != "sel" ? 'style="margin-bottom: 0;"' : ""; ?>>
     1499                    <div class="share-this-popup-top" <?php echo isset( $text_to_share ) && $text_to_share != "sel" ? 'style="margin-bottom: 20px;"' : ""; ?>>
    14971500                        <?php
    14981501                        if ( '' !== $asas_widget_title ) :
  • easy-select-and-share/trunk/easy-select-and-share.php

    r3116004 r3133258  
    77 * Author URI: https://www.solwininfotech.com/
    88 * Copyright: Solwin Infotech
    9  * Version: 1.3
     9 * Version: 1.4
    1010 * Requires at least: 5.0
    11  * Tested up to: 6.5.4
     11 * Tested up to: 6.6.1
    1212 * License: GPLv2 or later
    1313 *
  • easy-select-and-share/trunk/languages/easy-select-and-share.pot

    r3116004 r3133258  
    33msgstr ""
    44"Project-Id-Version: Easy Select and Share\n"
    5 "POT-Creation-Date: 2024-06-11 14:04+0530\n"
     5"POT-Creation-Date: 2024-08-09 18:52+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;"
     
    167167msgstr ""
    168168
    169 #: admin/class-esasadminedit.php:244 class-easyselectandshare.php:1323
     169#: admin/class-esasadminedit.php:244 class-easyselectandshare.php:1326
    170170msgid "Select Social Share options"
    171171msgstr ""
     
    691691msgstr ""
    692692
    693 #: class-easyselectandshare.php:1025 class-easyselectandshare.php:1614
     693#: class-easyselectandshare.php:1028 class-easyselectandshare.php:1617
    694694msgid "You can't share this post"
    695695msgstr ""
    696696
    697 #: class-easyselectandshare.php:1074
     697#: class-easyselectandshare.php:1077
    698698msgid "If you like "
    699699msgstr ""
    700700
    701 #: class-easyselectandshare.php:1075
     701#: class-easyselectandshare.php:1078
    702702msgid "Easy Select and Share Plugin "
    703703msgstr ""
    704704
    705 #: class-easyselectandshare.php:1076
     705#: class-easyselectandshare.php:1079
    706706msgid "please leave us a"
    707707msgstr ""
    708708
    709 #: class-easyselectandshare.php:1078
     709#: class-easyselectandshare.php:1081
    710710msgid "rating. A huge thank you from Solwin Infotech in advance!"
    711711msgstr ""
    712712
    713 #: class-easyselectandshare.php:1105 class-easyselectandshare.php:1119
     713#: class-easyselectandshare.php:1108 class-easyselectandshare.php:1122
    714714msgid "News From Solwin Infotech"
    715715msgstr ""
    716716
    717 #: class-easyselectandshare.php:1115
     717#: class-easyselectandshare.php:1118
    718718msgid "Solwin Infotech News"
    719719msgstr ""
    720720
    721 #: class-easyselectandshare.php:1138
     721#: class-easyselectandshare.php:1141
    722722msgid "Latest Product"
    723723msgstr ""
    724724
    725 #: class-easyselectandshare.php:1142
     725#: class-easyselectandshare.php:1145
    726726msgid "Something went wrong"
    727727msgstr ""
    728728
    729 #: class-easyselectandshare.php:1299
     729#: class-easyselectandshare.php:1302
    730730msgid "Share this on"
    731731msgstr ""
  • easy-select-and-share/trunk/readme.txt

    r3116004 r3133258  
    44Tags: content share, post content share, instant content share, facebook share, twitter share, social share, select and share
    55Requires at least: 5.0
    6 Tested up to: 6.5.4
    7 Stable tag: 1.3
     6Tested up to: 6.6.1
     7Stable tag: 1.4
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    7979
    8080== Changelog ==
     81
     82= 1.4
     83Release date: June 17th, 2024
     84
     85* Updated: Make compatible with WordPress 6.6
     86* Fixed: Minor design issue
    8187
    8288= 1.3
Note: See TracChangeset for help on using the changeset viewer.