Apostolis

Results 5 comments of Apostolis

Hi again. I tested and it works perfect. Thanks In my project I want to let the user select a layout in a radio form like the attach image: ![untitled-1](https://cloud.githubusercontent.com/assets/10621109/9350332/8a3bd2fa-4658-11e5-979d-2eb1c47e2f4a.jpg)...

Thanks @jcchavezs. I appreciate your help. I will tested and if I found something I will post back. Thanks again.

You can add to your theme folder the plugin like this: `theme_name/folder_name/cmb2-conditionals/` then include this line to your functions.php `require get_template_directory() . '/folder_name/cmb2-conditionals/cmb2-conditionals.php';` Last change this code from cmb2-conditionals.php `wp_enqueue_script('cmb2-conditionals',...

Hi @S-Amin , I have managed to filter products by category like this: `$client->products->get( null, array( 'filter[category]' => category_slug_here, 'filter[limit]' => '-1' );` Use limit -1 in order to get...

Hi @rito-zainmax , check below. ```require_once( "lib/woocommerce-api.php" ); $options = array( "debug" => false, "return_as_array" => true, "validate_url" => false, "timeout" => 30, "ssl_verify" => false, ); try { $client...