Hi It says in the description of GK title overlay that you should be able to choose latest products in the widget but you can't. Is there a way?
Thx
Damien
else if($config['data_source_type'] == 'custom') {
$post_type = explode(',', $config['data_source']);
array_push($results, get_posts(array('post_type' => $post_type, 'numberposts' => $amount_of_posts)));
else if($config['data_source_type'] == 'custom') {
$post_type = explode(',', $config['data_source']);
array_push($results, get_posts(array('post_type' => $post_type,
'numberposts' => $amount_of_posts,
'offset' => $config['offset'],
'orderby' => $config['orderby'],
'order' => $config['order'])));
}