Title: Webizito's Replies | WordPress.org

---

# nik9099

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Tab unset doesn’t work](https://wordpress.org/support/topic/tab-unset-doesnt-work/)
 *  [nik9099](https://wordpress.org/support/users/nik9099/)
 * (@nik9099)
 * [4 years, 8 months ago](https://wordpress.org/support/topic/tab-unset-doesnt-work/#post-14955125)
 * i don’t realize without seeing your issue, i will know it once i see it
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Tab unset doesn’t work](https://wordpress.org/support/topic/tab-unset-doesnt-work/)
 *  [nik9099](https://wordpress.org/support/users/nik9099/)
 * (@nik9099)
 * [4 years, 8 months ago](https://wordpress.org/support/topic/tab-unset-doesnt-work/#post-14955040)
 * Okay No problems
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Problem with cart at the front page](https://wordpress.org/support/topic/problem-with-cart-at-the-front-page-2/)
 *  [nik9099](https://wordpress.org/support/users/nik9099/)
 * (@nik9099)
 * [4 years, 8 months ago](https://wordpress.org/support/topic/problem-with-cart-at-the-front-page-2/#post-14954335)
 * Send me login details i will check this
 *   Forum: [Developing with WordPress](https://wordpress.org/support/forum/wp-advanced/)
   
   In reply to: [add_action publish_post get_post_meta](https://wordpress.org/support/topic/add_action-publish_post-get_post_meta/)
 *  [nik9099](https://wordpress.org/support/users/nik9099/)
 * (@nik9099)
 * [4 years, 8 months ago](https://wordpress.org/support/topic/add_action-publish_post-get_post_meta/#post-14954185)
 *     ```
       function map_update($post_id) {
       $ID=$post_id;
       //if ($post->post_type = 'post') return;
           $link = get_permalink ( $ID );
           $title = get_the_title ( $ID );
           $mapaddress = get_post_meta ( $ID, 'address', true );  
         global $wpdb;
   
           $table = $wpdb->prefix . 'wpgmza';
   
           $data = array(
                       'link' => $link,
                       'title' => $title,
                       'address' => $mapaddress,<code></code>
   
                   );
   
           $wpdb->insert($table , $data);
       }
       add_action('publish_post', 'map_update' );
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Tab unset doesn’t work](https://wordpress.org/support/topic/tab-unset-doesnt-work/)
 *  [nik9099](https://wordpress.org/support/users/nik9099/)
 * (@nik9099)
 * [4 years, 8 months ago](https://wordpress.org/support/topic/tab-unset-doesnt-work/#post-14954180)
 * add_filter( ‘woocommerce_product_tabs’, ‘misha_remove_description_tab’, 11 );
 * function misha_remove_description_tab( $tabs ) {
 *  unset( $tabs[‘description’] );
    return $tabs;
 * }
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Woocommerce does not auto fill billing details from loged in users](https://wordpress.org/support/topic/woocommerce-does-not-auto-fill-billing-details-from-loged-in-users/)
 *  [nik9099](https://wordpress.org/support/users/nik9099/)
 * (@nik9099)
 * [4 years, 8 months ago](https://wordpress.org/support/topic/woocommerce-does-not-auto-fill-billing-details-from-loged-in-users/#post-14931578)
 * Try This one
    add_filter(‘woocommerce_checkout_get_value’, function($input, $
   key ) { global $current_user; switch ($key) : case ‘billing_first_name’: case‘
   shipping_first_name’: return $current_user->first_name; break;
 *  case ‘billing_last_name’:
    case ‘shipping_last_name’: return $current_user->
   last_name; break; case ‘billing_email’: return $current_user->user_email; break;
   case ‘billing_phone’: return $current_user->phone; break; endswitch; }, 10, 2);

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