Gold paw, yay!
@Nissim_Payoneer I saw Indonesia = USD here http://www.payoneer.com/localBankTransfer-Avail.aspx, so this means the money goes into my bank account in USD? or automatically converted into the IDR by my bank?
Yes they both are very different….Submit again ?
No.. 
Hi guys, thanks for your comments.
@psvent you’re right maybe I have to start with different kind of theme and throw away this theme. 
@niservice, I think so but the reviewer not 
Hi,
My latest submission has been rejected because the theme is too similar with my existing theme, do you think so?
http://www.freshthemes.net/demo/classicpress/ http://www.freshthemes.net/demo/hotnews/Thanks
Absolutely yes, look at the bottom near with the social shares.:bigwink:
The $thumbnail variable must be placed and echo’ed inside of the foreach.
$wp_query = new WP_Query(array('post_type' => 'post', 'posts_per_page' => '3'));
while($wp_query->have_posts()) : $wp_query->the_post();
$slides = get_post_meta($wp_query->post->ID, 'meta_box_gallery', true);
foreach($slides as $slide) {
$gallery = $slide['title'];
$thumbnail = '<div class="rain">'.$gallery.'</div>';
echo $thumbnail;
}
endwhile;$thumbnail = '<div class="rain">'.$gallery.'</div>';Hmm.. I think this is what you’re looking :
$wp_query = new WP_Query(array('post_type' => 'post', 'posts_per_page' => '3'));
while($wp_query->have_posts()) : $wp_query->the_post();
$slides = get_post_meta($wp_query->post->ID, 'meta_box_gallery', true);
foreach($slides as $slide) {
$gallery = $slide['title'];
// let show
echo "Title: $gallery \n";
}
endwhile;
Edit: The code above works for me
