Title: sofiahz's Replies | WordPress.org

---

# sofiahz

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

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

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 17 total)

1 [2](https://wordpress.org/support/users/sofiahz/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/sofiahz/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Error with wishlist for woocommerce by wpfactory](https://wordpress.org/support/topic/error-with-wishlist-for-woocommerce-by-wpfactory/)
 *  Thread Starter [sofiahz](https://wordpress.org/support/users/sofiahz/)
 * (@sofiahz)
 * [10 months ago](https://wordpress.org/support/topic/error-with-wishlist-for-woocommerce-by-wpfactory/#post-18587437)
 * Thank you! then I will ask there.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[PDF Invoices & Packing Slips for WooCommerce] Location removed in PDF after update](https://wordpress.org/support/topic/location-removed-in-pdf-after-update/)
 *  Thread Starter [sofiahz](https://wordpress.org/support/users/sofiahz/)
 * (@sofiahz)
 * [1 year, 3 months ago](https://wordpress.org/support/topic/location-removed-in-pdf-after-update/#post-18334686)
 *     ```wp-block-code
       <tbody>        <?php foreach ( $this->get_order_items() as $item_id => $item ) : ?>            <tr class="<?php echo esc_html( $item['row_class'] ); ?>">                <td class="product">                    <p class="item-name"><?php echo esc_html( $item['name'] ); ?></p>                    <?php do_action( 'wpo_wcpdf_before_item_meta', $this->get_type(), $item, $this->order ); ?>                    <div class="item-meta">                        <?php if ( ! empty( $item['sku'] ) ) : ?>                            <p class="sku"><span class="label"><?php $this->sku_title(); ?></span> <?php echo esc_attr( $item['sku'] ); ?></p>                        <?php endif; ?>                        <?php if ( ! empty( $item['weight'] ) ) : ?>                            <p class="weight"><span class="label"><?php $this->weight_title(); ?></span> <?php echo esc_attr( $item['weight'] ); ?><?php echo esc_attr( get_option( 'woocommerce_weight_unit' ) ); ?></p>                        <?php endif; ?>                        <?php if ( ! empty( $location['wp_list_filter'] ) ) : ?>                            <p class="item_location"><span class="inventory_labels"><?php $this->inventory_labels(); ?></span> <?php echo esc_html( $inventory_labels); ?><?php echo esc_html( get_option( 'get_location_labels' ) ); ?></                                <?php endif; ?>                        <!-- ul.wc-item-meta -->                        <?php if ( ! empty( $item['meta'] ) ) : ?>                            <?php echo wp_kses_post( $item['meta'] ); ?>                        <?php endif; ?>                        <!-- / ul.wc-item-meta -->                    </div>                    <?php do_action( 'wpo_wcpdf_after_item_meta', $this->get_type(), $item, $this->order ); ?>                </td>                <td class="quantity"><?php echo esc_html( $item['quantity'] ); ?></td>            </tr>        <?php endforeach; ?>    </tbody>
       ```
   
 * Here is the code from the body to see where I have put the code trying to get
   it in. I have managed to get the name there but not the location information.
 * If we buy pro version does that mean we can just choose to add this information?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[PDF Invoices & Packing Slips for WooCommerce] Location removed in PDF after update](https://wordpress.org/support/topic/location-removed-in-pdf-after-update/)
 *  Thread Starter [sofiahz](https://wordpress.org/support/users/sofiahz/)
 * (@sofiahz)
 * [1 year, 3 months ago](https://wordpress.org/support/topic/location-removed-in-pdf-after-update/#post-18332693)
 * Hi! I am using ATUM for the locations. It show in the order details on woocommerce.
   I have tried some codes now but none of them works unfortunately. This is the
   last one I tried. With this one I get an error in the php function file. The 
   other I tried no error but nothing shows up.
 *     ```wp-block-code
       <?php add_action( 'wpo_wcpdf_after_order_data', 'wpo_wcpdf_atum_location', 10, 2 );function wpo_wcpdf_atum_location($template_type, $order) {    if ($template_type == 'packing-slip') {        $document = wcpdf_get_document( $template_type, $order );                     $atum_location = get_post_meta( $order->get_id(), '_atum_location', true );           if ( ! empty( $atum_location ) ) {            ?>            <tr class="atum-location">                <th>ATUM Location:</th>                <td><?php echo esc_html( $atum_location ); ?></td>            </tr>   
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[PDF Invoices & Packing Slips for WooCommerce] Location removed in PDF after update](https://wordpress.org/support/topic/location-removed-in-pdf-after-update/)
 *  Thread Starter [sofiahz](https://wordpress.org/support/users/sofiahz/)
 * (@sofiahz)
 * [1 year, 3 months ago](https://wordpress.org/support/topic/location-removed-in-pdf-after-update/#post-18332444)
 * Hi,
 * No I did not add any code I belive since I have no idea where to add a code, 
   cannot find a place to add extra code. I unfortunately dont have good php skills
   and the customer does not want to pay for the pro version.
 * I will have to continue to google then. So strange we had it before but not after
   the update.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Critical error only on iphone](https://wordpress.org/support/topic/critical-error-only-on-iphone/)
 *  Thread Starter [sofiahz](https://wordpress.org/support/users/sofiahz/)
 * (@sofiahz)
 * [1 year, 6 months ago](https://wordpress.org/support/topic/critical-error-only-on-iphone/#post-18159349)
 * Ok thank you. I have contacted my hosting to see if they can help.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Forminator Forms – Contact Form, Payment Form & Custom Form Builder] Change address on the submissions email](https://wordpress.org/support/topic/change-address-on-the-submissions-email/)
 *  Thread Starter [sofiahz](https://wordpress.org/support/users/sofiahz/)
 * (@sofiahz)
 * [1 year, 6 months ago](https://wordpress.org/support/topic/change-address-on-the-submissions-email/#post-18154237)
 * Ah sorry I thought this was a forum with other users answering. My bad 🙂
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Forminator Forms – Contact Form, Payment Form & Custom Form Builder] Change address on the submissions email](https://wordpress.org/support/topic/change-address-on-the-submissions-email/)
 *  Thread Starter [sofiahz](https://wordpress.org/support/users/sofiahz/)
 * (@sofiahz)
 * [1 year, 6 months ago](https://wordpress.org/support/topic/change-address-on-the-submissions-email/#post-18154182)
 * Hi, As I wrote above I have tried but that did not work for me. I have tried 
   adding the code in different places but none of them works for me. Maybe I am
   doing it wrong. Do I have to use the MU -plugin folder etc? I have tried with
   code plugin.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Forminator Forms – Contact Form, Payment Form & Custom Form Builder] Geolocation change order](https://wordpress.org/support/topic/geolocation-change-order/)
 *  Thread Starter [sofiahz](https://wordpress.org/support/users/sofiahz/)
 * (@sofiahz)
 * [1 year, 7 months ago](https://wordpress.org/support/topic/geolocation-change-order/#post-18115271)
 * Thank you! I thought maybe somebody has found a solution for now that I can use.
   Hope to get the update soon 🙂
 *   Forum: [Developing with WordPress](https://wordpress.org/support/forum/wp-advanced/)
   
   In reply to: [Vulnerability in WordPress 6.6.2](https://wordpress.org/support/topic/vulnerability-in-wordpress-6-6-2/)
 *  Thread Starter [sofiahz](https://wordpress.org/support/users/sofiahz/)
 * (@sofiahz)
 * [1 year, 7 months ago](https://wordpress.org/support/topic/vulnerability-in-wordpress-6-6-2/#post-18095168)
 * Thank you all. This is from defender Pro. We have solved the hacking issue that
   was months ago but am keeping a look at it to make sure it does not happen again.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Email notifications when someone changes password](https://wordpress.org/support/topic/email-notifications-when-someone-changes-password/)
 *  Thread Starter [sofiahz](https://wordpress.org/support/users/sofiahz/)
 * (@sofiahz)
 * [1 year, 7 months ago](https://wordpress.org/support/topic/email-notifications-when-someone-changes-password/#post-18066778)
 * Not working still. I put this in a code plug in I have. But still getting loads
   of changed password emails.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Email notifications when someone changes password](https://wordpress.org/support/topic/email-notifications-when-someone-changes-password/)
 *  Thread Starter [sofiahz](https://wordpress.org/support/users/sofiahz/)
 * (@sofiahz)
 * [1 year, 7 months ago](https://wordpress.org/support/topic/email-notifications-when-someone-changes-password/#post-18066637)
 * Thank you! I will try that. I tried another code but that did not work.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Email notifications when someone changes password](https://wordpress.org/support/topic/email-notifications-when-someone-changes-password/)
 *  Thread Starter [sofiahz](https://wordpress.org/support/users/sofiahz/)
 * (@sofiahz)
 * [1 year, 8 months ago](https://wordpress.org/support/topic/email-notifications-when-someone-changes-password/#post-18065319)
 * I still want the user to get an email of their password change I just dont want
   to recieve as admin all of the users password notification changes. Quite stupid
   that it does send this and there is no easy way to just say I do not want this.
 * I have added one of the codes from your links. Lets hope it works.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [URL category base](https://wordpress.org/support/topic/url-category-base/)
 *  Thread Starter [sofiahz](https://wordpress.org/support/users/sofiahz/)
 * (@sofiahz)
 * [1 year, 9 months ago](https://wordpress.org/support/topic/url-category-base/#post-17998753)
 * Thank you! that worked.
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[ATUM WooCommerce Inventory Management and Stock Tracking] Need to use IDs and not SKU](https://wordpress.org/support/topic/need-to-use-ids-and-not-sku/)
 *  Thread Starter [sofiahz](https://wordpress.org/support/users/sofiahz/)
 * (@sofiahz)
 * [1 year, 9 months ago](https://wordpress.org/support/topic/need-to-use-ids-and-not-sku/#post-17975275)
 * Have tried that ofcourse. The problem is that the list I have with the supplier
   information is not the same as the list of products on the page, it has fewer
   products. So then we still need to go through all of the products and match them
   with the ID. So however we do it it needs lots of extra work unfortunately. And
   in the future the client will get lists from the suppliers with their products
   and new prices. They will have the SKU but not the IDs so again they need to 
   manually ad the IDs to the lists to be able to import them to update the prices.
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[ATUM WooCommerce Inventory Management and Stock Tracking] Need to use IDs and not SKU](https://wordpress.org/support/topic/need-to-use-ids-and-not-sku/)
 *  Thread Starter [sofiahz](https://wordpress.org/support/users/sofiahz/)
 * (@sofiahz)
 * [1 year, 9 months ago](https://wordpress.org/support/topic/need-to-use-ids-and-not-sku/#post-17975220)
 * Ok did not think about just reviewing the basic part. But I think many do need
   some extra add-ons also. If I would have known that before started with the free
   version I might have looked for another. But now that I already added the ATUM
   free for the client it was to much of work to start over when we noticed we could
   not upload all information so had to do it manually for hours.

Viewing 15 replies - 1 through 15 (of 17 total)

1 [2](https://wordpress.org/support/users/sofiahz/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/sofiahz/replies/page/2/?output_format=md)