Plugin Directory

Changeset 2948083


Ignore:
Timestamp:
08/06/2023 05:48:36 AM (3 years ago)
Author:
wpcommerz
Message:

Added: Card Description feature.

Location:
guidant
Files:
119 added
5 edited

Legend:

Unmodified
Added
Removed
  • guidant/trunk/assets/css/admin.css

    r2667110 r2948083  
    473473}
    474474
     475.guidant_form_group.pro_field.card--description .pro_tag,
    475476.guidant_form_group_small.pro_field .pro_tag {
    476477    color: #DE5819;
     
    480481    cursor: pointer;
    481482}
    482 
    483 
    484 
    485483
    486484
  • guidant/trunk/backend/templates/views/card.php

    r2667110 r2948083  
    2323                    <label for="guidant-gname"> Card Label</label>
    2424                    <input type="text" id="guidant_card_tab_page_label" placeholder="Text to be displayed inside card">
     25                </div>
     26               
     27                <div class="guidant_form_group pro_field card--description">
     28                    <label for="guidant-gname"> Card Description <span class="pro_tag"><strong>Pro</strong></span></label>
     29                    <input type="text" id="guidant_card_tab_page_description" placeholder="Text to be displayed inside card">
    2530                </div>
    2631
  • guidant/trunk/backend/templates/views/guide_update.php

    r2667110 r2948083  
    389389            <div class="guidant_tab_item">
    390390
    391 
     391                <div class="guidant_form_group_small wider_space pro_field">
     392                    <h4> Card Size <?php $this->guidant_field_info("Select card size."); ?></h4>
     393                    <div>
     394                        <select id="guidant_guides_update_guide_card_size">
     395                            <option value="standard">Standard</option>
     396                            <option value="large">Large</option>
     397                            <option value="extra_large">Extra Large</option>
     398                        </select>
     399                    </div>
     400                    <span class="pro_tag"><strong>Pro</strong></span>
     401                </div>
     402               
    392403                <div class="guidant_form_group_small wider_space">
    393404                    <h4> Card Image Height </h4>
     
    412423                    <div>
    413424                        <input type="number" id="guidant_guides_update_card_label_fontsize">
     425                        <span class="guidant-px"> px </span>
     426                    </div>
     427                    <span class="pro_tag"><strong>Pro</strong></span>
     428                </div>
     429                <div class="guidant_form_group_small wider_space pro_field">
     430                    <h4> Description Color </h4>
     431                    <div class="guidant-color-container">
     432                        <input type="color" id="guidant_guides_update_card_description_color">
     433                        <label for="guidant_guides_update_card_description_color">Select Color</label>
     434                    </div>
     435                    <span class="pro_tag"><strong>Pro</strong></span>
     436                </div>
     437
     438
     439                <div class="guidant_form_group_small wider_space pro_field">
     440                    <h4> Description Font Size </h4>
     441                    <div>
     442                        <input type="number" id="guidant_guides_update_card_description_fontsize" value="16">
    414443                        <span class="guidant-px"> px </span>
    415444                    </div>
  • guidant/trunk/guidant.php

    r2921194 r2948083  
    44 * Plugin URI:        https://wpcommerz.com/guidant/
    55 * Description:       Build Multi-step Guided Selling Process & Smart Forms to Convert 10X More Traffic Into Leads & New Customers.
    6  * Version:           1.0.9
     6 * Version:           1.1.0
    77 * Author:            WPCommerz
    88 * Author URI:        https://wpcommerz.com/
     
    1919}
    2020
    21 define( 'GUIDANT_VERSION', '1.0.9' );
     21define( 'GUIDANT_VERSION', '1.1.0' );
    2222defined( 'GUIDANT_PATH' ) or define( 'GUIDANT_PATH', plugin_dir_path( __FILE__ ) );
    2323defined( 'GUIDANT_URL' ) or define( 'GUIDANT_URL', plugin_dir_url( __FILE__ ) );
  • guidant/trunk/readme.txt

    r2921194 r2948083  
    11=== WP Guidant ===
    2 Contributors: wpcommerz, darklup
     2Contributors: wpcommerz, darklup, devmahbub
    33Donate link: https://wpcommerz.com/guidant/
    44Tags: guide plugin, wp guidant, guided selling, recommendation, forms
     
    66Requires at least: 5.1
    77Tested up to: 6.2.2
    8 Stable tag: 1.0.9
     8Stable tag: 1.1.0
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    289289== Changelog ==
    290290
     291= 1.1.0 =
     2921. Added: Card Description feature.
     2932. Added: Make Card Size dynamic.
     2943. Improved: Performance Improved.
     2954. Fixed minor bugs.
     296
    291297= 1.0.9 =
    2922981. Improved: Optimize database query to perform better.
Note: See TracChangeset for help on using the changeset viewer.