PluginProbe
Welcart e-Commerce / 1.3.5
Welcart e-Commerce v1.3.5
2.12.4 2.12.3 2.11.35 2.12.2 2.12.1 2.11.34 2.11.33 2.11.32 2.11.31 2.11.30 1.3.16 1.3.17 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 1.3.7 1.3.8 1.3.9 1.4.0 1.4.1 1.4.10 1.4.11 1.4.12 All 292 releases
usc-e-shop / functions / shortcode.php

shortcode.php in Welcart e-Commerce 1.3.5, at functions/shortcode.php

17 lines 380 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 function sc_direct_intoCart($atts) {
3 global $usces;
4 extract(shortcode_atts(array(
5 'item' => '',
6 'sku' => '',
7 'value' => NULL,
8 'options' => NULL,
9 ), $atts));
10
11 if( WCUtils::is_blank($item) || WCUtils::is_blank($sku) ) return '';
12
13 $post_id = $usces->get_ID_byItemName($item);
14
15 return usces_direct_intoCart($post_id, $sku, true, $value, $options, 'return');
16 }
17 ?>