Plugin Directory

Changeset 2869475


Ignore:
Timestamp:
02/22/2023 03:21:48 PM (3 years ago)
Author:
viaads
Message:

Webshop Id Made to Strings

Location:
viaads
Files:
16 added
3 edited

Legend:

Unmodified
Added
Removed
  • viaads/trunk/readme.txt

    r2866883 r2869475  
    44Requires at least: 5.4
    55Tested up to: 6.1
    6 Stable tag: 1.1.3
     6Stable tag: 1.1.4
    77Requires PHP: 7.0
    88License: GPLv3
  • viaads/trunk/sync.php

    r2862914 r2869475  
    8686    foreach ($productCollection as $product) {
    8787        $product_object = new stdClass();
    88         $product_object->WebshopProductId = $product->get_id();
     88        $product_object->WebshopProductId = "{$product->get_id()}";
    8989        // Image
    9090        $imageArray = array();
     
    183183
    184184                // Product Id
    185                 $child_object->WebshopProductId = $child->get_id();
     185                $child_object->WebshopProductId = "{$child->get_id()}";
    186186                // Parent Product Id
    187187                $child_object->ParentId = $child->get_parent_id();
  • viaads/trunk/viaads.php

    r2866883 r2869475  
    33 * Plugin Name: ViaAds
    44 * Description: Plugin der muliggør forbindelsen til ViaAds / Plug-in enabling the connection to ViaAds.
    5  * Version: 1.1.3
     5 * Version: 1.1.4
    66 * Author: ViaAds
    77 * Author URI: https://www.viaads.dk/
Note: See TracChangeset for help on using the changeset viewer.