I haven’t done any testing with Cart66 Cloud, so I’m not really sure if it will work. The first question is whether or not ClassDex is still able to create products in Cart66 Cloud. If that works, then you should be in good shape.
To change the shortcodes that ClassDex writes to display the “Add to Cart” buttons from Cart66, you’ll have to edit the “shortcode.php” file in ClassDex/includes.
Currently:
On line 114:
$content .= “[add_to_cart item=\”” . $row[‘class_id’] . “\” style=\”padding:0px; display:inline;\” showprice=\”no\” ]”;
On line 168:
$content .= “<td>[add_to_cart item=\”” . $row[‘class_id’] . “\” showprice=\”no\” ]</td>”;
Change to:
On line 114:
$content .= “[cc_product sku=\”” . $row[‘class_id’] . “\” display=\”inline\” price=\”false\” ]”;
On line 168:
$content .= “<td>[cc_product sku=\”” . $row[‘class_id’] . “\” price=\”false\” ]</td>”;
Whether this works will depend on whether or not ClassDex is still successfully creating products in Cart66 Cloud. That’s a more challenging problem, so I hope this does the trick!