Title: Splitterside's Replies | WordPress.org

---

# Splitterside

  [  ](https://wordpress.org/support/users/splitterside/)

 *   [Profile](https://wordpress.org/support/users/splitterside/)
 *   [Topics Started](https://wordpress.org/support/users/splitterside/topics/)
 *   [Replies Created](https://wordpress.org/support/users/splitterside/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/splitterside/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/splitterside/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/splitterside/engagements/)
 *   [Favorites](https://wordpress.org/support/users/splitterside/favorites/)

 Search replies:

## Forum Replies Created

Viewing 7 replies - 1 through 7 (of 7 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Contact Form Submissions] Collecting attachments](https://wordpress.org/support/topic/collecting-attachments/)
 *  [Splitterside](https://wordpress.org/support/users/splitterside/)
 * (@splitterside)
 * [9 years ago](https://wordpress.org/support/topic/collecting-attachments/#post-9089799)
 * Hey Jason,
 * Looking at possibly using your plugin today and saw this post. Another option
   would be to have the plugin prepend an ID of some sort to the attached file’s
   name so that there would be no conflicts. This would eliminate the possibility
   of a duplicate file conflict.
 * Just my ¢¢. Hope this helps.
 * Thanks for making a helpful plugin.
    -Adam
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP All Import – Product Import for WooCommerce] Import always sets product Stock to 0/Out of Stock](https://wordpress.org/support/topic/import-always-sets-product-stock-to-0out-of-stock/)
 *  Thread Starter [Splitterside](https://wordpress.org/support/users/splitterside/)
 * (@splitterside)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/import-always-sets-product-stock-to-0out-of-stock/#post-6597214)
 * Shouldn’t the new items that are created have the correct value as well? When
   I run the import that way, new items are added, but what if I don’t want existing
   items to be updated? The new items should at least have the correct stock value
   that was set in the import file.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Akismet Anti-spam: Spam Protection] Blank page in Settings > Akismet](https://wordpress.org/support/topic/blank-page-in-settings-akismet/)
 *  [Splitterside](https://wordpress.org/support/users/splitterside/)
 * (@splitterside)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/blank-page-in-settings-akismet/#post-5918517)
 * Getting the same issue and WPNI’s fix did not work for me.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Email Template Remove SKU](https://wordpress.org/support/topic/plugin-woocommerce-excelling-ecommerce-email-template-remove-sku/)
 *  [Splitterside](https://wordpress.org/support/users/splitterside/)
 * (@splitterside)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/plugin-woocommerce-excelling-ecommerce-email-template-remove-sku/#post-5552274)
 * Here is the solution I found that worked for me.
 * Disable e-mail order items table from e-mail template and copy the function as
   a custom function into your theme.
 *     ```
       <tbody>
           <?php //echo $order->email_order_items_table( $order->is_download_permitted(), true, ($order->status=='processing') ? true : false );
           echo custom_order_table($order);
           ?>
       </tbody>
       ```
   
 * So your custom function will look like:
 *     ```
       function custom_order_table($order) {
   
               foreach($order->get_items() as $item) : 
   
               $_product = $order->get_product_from_item( $item );
   
               $file = $variation = $image = '';
   
               if ($show_image) :
                 $src = wp_get_attachment_image_src( get_post_thumbnail_id( $_product->id ), 'thumbnail');
                 $image = apply_filters('woocommerce_order_product_image', '<img src="'.$src[0].'" alt="Product Image" height="'.$image_size[1].'" width="'.$image_size[0].'" style="vertical-align:middle; margin-right: 10px;" />', $_product);
               endif;
   
               $return .= '<tr>
                 <td style="text-align:left; vertical-align:middle; border: 1px solid #eee;">'. $image . apply_filters('woocommerce_order_product_title', $item['name'], $_product) . $file . $variation . '</td>
                 <td style="text-align:left; vertical-align:middle; border: 1px solid #eee;">'.$item['qty'].'</td>';
                 $return .= '<td style="text-align:left; vertical-align:middle; border: 1px solid #eee;">';
   
                   if ( $order->display_cart_ex_tax || !$order->prices_include_tax ) :
                     $ex_tax_label = ( $order->prices_include_tax ) ? 1 : 0;
                     $return .= woocommerce_price( $order->get_line_subtotal( $item ), array('ex_tax_label' => $ex_tax_label ));
                   else :
                     $return .= woocommerce_price( $order->get_line_subtotal( $item, true ) );
                   endif;
   
               $return .= '</td></tr>';
   
               // Show any purchase notes
               if ($show_purchase_note) :
                 if ($purchase_note = get_post_meta( $_product->id, '_purchase_note', true)) :
                   $return .= '<tr><td colspan="3" style="text-align:left; vertical-align:middle; border: 1px solid #eee;">' . apply_filters('the_content', $purchase_note) . '</td></tr>';
                 endif;
               endif;
   
             endforeach;
   
             echo $return;
             }
       ```
   
 * This is a modified version from [here](http://stackoverflow.com/questions/20860132/how-to-remove-price-from-woocommerce-email).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Email Template Remove SKU](https://wordpress.org/support/topic/plugin-woocommerce-excelling-ecommerce-email-template-remove-sku/)
 *  [Splitterside](https://wordpress.org/support/users/splitterside/)
 * (@splitterside)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/plugin-woocommerce-excelling-ecommerce-email-template-remove-sku/#post-5552273)
 * I am also trying to figure this one out. Will post if I find a solution.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Smush – Image Optimization, Compression, Lazy Load, WebP & CDN] HTTP Error](https://wordpress.org/support/topic/http-error-36/)
 *  [Splitterside](https://wordpress.org/support/users/splitterside/)
 * (@splitterside)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/http-error-36/#post-4871000)
 * Looks like the Yahoo APIs are down. Even accessing the Smush.it website stalls
   till timeout.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Photo Gallery, Sliders, Proofing and Themes - NextGEN Gallery] Known Plugin & Theme Conflicts with NextGEN 2.0](https://wordpress.org/support/topic/known-plugin-conflicts-with-nextgen-20/)
 *  [Splitterside](https://wordpress.org/support/users/splitterside/)
 * (@splitterside)
 * [12 years, 10 months ago](https://wordpress.org/support/topic/known-plugin-conflicts-with-nextgen-20/page/4/#post-3979497)
 * Have tried using the update on my sites using the Mingle Theme: [http://themeforest.net/item/mingle-multipurpose-wordpress-theme/235056](http://themeforest.net/item/mingle-multipurpose-wordpress-theme/235056)
 * This seems to break the css of the website itself.
    Will have to hold off with
   the update until this gets fixed. Some pre-launch testing really goes a long 
   way guys.

Viewing 7 replies - 1 through 7 (of 7 total)