function wpla_product_submitbox_misc_actions()
    {
        global $post;
        global $woocommerce;
        if ($post->post_type != 'product') {
            return;
        }
        // handle variable products differently
        $_product = get_product($post->ID);
        if ($_product->product_type == 'variable') {
            return $this->display_submitbox_for_variable_product($_product);
        }
        // if product has been imported from amazon...
        // $this->wpla_product_submitbox_imported_status();
        // echo "<pre>";print_r($post->ID);echo"</pre>";
        // check listing status
        $listingsModel = new WPLA_ListingsModel();
        $status = $listingsModel->getStatusFromPostID($post->ID);
        if (!in_array($status, array('online', 'changed', 'prepared', 'matched', 'submitted', 'failed'))) {
            return;
        }
        // echo "<pre>";print_r($status);echo"</pre>";
        // get item
        $item = $listingsModel->getItemByPostID($post->ID);
        if (!$item) {
            return;
        }
        // warn when changing the SKU for a published item
        if (in_array($status, array('online', 'changed', 'submitted'))) {
            $this->add_js_to_prevent_changing_sku();
        }
        // get proper amazon_url
        if ($item->asin && $item->account_id) {
            $account = new WPLA_AmazonAccount($item->account_id);
            $market = new WPLA_AmazonMarket($account->market_id);
            $amazon_url = 'http://www.' . $market->url . '/dp/' . $item->asin . '/';
        } else {
            $amazon_url = 'http://www.amazon.com/dp/' . $item->asin;
        }
        ?>
		
		<style type="text/css">
		</style>

		<div class="misc-pub-section" id="wpla-submit-options">
			<!-- <input type="hidden" name="wpla_amazon_listing_id" value="<?php 
        echo $item->id;
        ?>
" /> -->

			<?php 
        _e('Amazon listing is', 'wpla');
        ?>
				<b><?php 
        echo $item->status;
        ?>
</b>
				<?php 
        if (!in_array($item->status, array('prepared', 'failed'))) {
            ?>
				<a href="<?php 
            echo $amazon_url;
            ?>
" target="_blank" style="float:right;">
					<?php 
            echo __('View', 'wpla');
            ?>
				</a>
				<?php 
        }
        ?>
			<br>

		</div>
		<?php 
    }