Plugin Directory

Changeset 2942414


Ignore:
Timestamp:
07/24/2023 09:08:52 AM (3 years ago)
Author:
managedorg
Message:

single product load, high priority fix

Location:
managedorg-product-driver
Files:
59 added
4 edited

Legend:

Unmodified
Added
Removed
  • managedorg-product-driver/trunk/css/modd_style.css

    r2940285 r2942414  
    10051005    margin-top: -10px;
    10061006}
     1007.campaignWishList .col {
     1008    margin-right: 0 !important;
     1009}
    10071010
    10081011@media screen and (max-width: 770px) {
  • managedorg-product-driver/trunk/donative.php

    r2941103 r2942414  
    44Plugin URI: https://wordpress.org/plugins/managedorg-product-driver/
    55Description: Managedorg Product Driver for Amazon Business Integration.
    6 Version: 1.0.7.3
     6Version: 1.0.7.4
    77Author: Managedorg
    88Author URI: https://managedorg.io/
     
    1111   
    1212if (!class_exists('MODD_Donation')) :
    13 define('MODD_VERSION', '1.0.7.3');
     13define('MODD_VERSION', '1.0.7.4');
    1414define('MODD_PLUGIN_URL', plugin_dir_url(__FILE__));
    1515define('MODD_PLUGIN_MAIN_PATH', plugin_dir_path(__FILE__));
  • managedorg-product-driver/trunk/js/modd_myscript.js

    r2941103 r2942414  
    12261226                        var imageUrl        = '';
    12271227                        var high_priority = pList[j].attributes.HighPriority;
    1228                         if(high_priority == null){
     1228                        if(high_priority == true){
     1229                            high_priority = 1;
     1230                        } else{
    12291231                            high_priority = 0;
    1230                         } else{
    1231                             high_priority = 1;
    12321232                        }
    12331233                        var surchargeType = res.data.data.attributes.surchargeType;
     
    13611361                                                    campaignReqId   = innerCRArray[k].id;
    13621362                                                    productId       = innerCRArray[k].product;
     1363                                                    console.log(innerCRArray[k].minimumQuantity)
    13631364                                                    break;
    13641365                                                }
    13651366                                            }
    1366                                             loadProductSummaryFromDB(res.data.data.attributes.asin, pCount, pName, res.data.data.id, productQty, campaignReqId, campaignId, currencyCode, amount, imageUrl,high_priority, paymentTag, productDescription);
     1367                                           
     1368                                            loadProductSummaryFromDB(res.data.data.attributes.asin, pCount, pName, res.data.data.id, productQty,productMinimumQty, campaignReqId, campaignId, currencyCode, amount, imageUrl,high_priority, paymentTag, productDescription);
    13671369                                           
    13681370                                        }).catch((error) => {
  • managedorg-product-driver/trunk/readme.txt

    r2941103 r2942414  
    44Requires at least: 4.7
    55Tested up to: 6.2
    6 Stable tag: 1.0.7.3
     6Stable tag: 1.0.7.4
    77Requires PHP: 7.0
    88License: GPLv2 or later
     
    144144* Pricing format modified.
    145145
    146 = 1.0.7.3 =
     146= 1.0.7.4 =
    147147* New design
    148148* New shortcode attributes products_per_page, campaigns_per_page, cart_checkbox
Note: See TracChangeset for help on using the changeset viewer.