Title: andyzz8's Replies | WordPress.org

---

# andyzz8

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

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

 Search replies:

## Forum Replies Created

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

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Sucuri Security - Auditing, Malware Scanner and Security Hardening] Reverse IP](https://wordpress.org/support/topic/reverse-ip/)
 *  Thread Starter [andyzz8](https://wordpress.org/support/users/andyzz/)
 * (@andyzz)
 * [7 years, 7 months ago](https://wordpress.org/support/topic/reverse-ip/#post-10840587)
 * Thanks [@yorman](https://wordpress.org/support/users/yorman/)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[PDF Invoices & Packing Slips for WooCommerce] Add a variable image at the bottom of the invioce](https://wordpress.org/support/topic/add-a-variable-image-at-the-bottom-of-the-invioce/)
 *  Thread Starter [andyzz8](https://wordpress.org/support/users/andyzz/)
 * (@andyzz)
 * [8 years, 3 months ago](https://wordpress.org/support/topic/add-a-variable-image-at-the-bottom-of-the-invioce/#post-10057757)
 * Thank you so much [@pomegranate](https://wordpress.org/support/users/pomegranate/)
   [@kluver](https://wordpress.org/support/users/kluver/)
 * I used:
 *     ```
       <?php
       if( $item['product_id'] == '16' ) {
                   printf( '<img src="%s/uploads/test1.png" />', untrailingslashit( WP_CONTENT_DIR ) );
       }
       ?>
   
       <?php
       if( $item['product_id'] == '17' ) {
                   printf( '<img src="%s/uploads/test2.png" />', untrailingslashit( WP_CONTENT_DIR ) );
       }
       ?>
       ```
   
 * There might be a better way of doing this but it seems to work for now!
    At some
   point I will need to figure out how to add product specific text too.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[PDF Invoices & Packing Slips for WooCommerce] Add a variable image at the bottom of the invioce](https://wordpress.org/support/topic/add-a-variable-image-at-the-bottom-of-the-invioce/)
 *  Thread Starter [andyzz8](https://wordpress.org/support/users/andyzz/)
 * (@andyzz)
 * [8 years, 3 months ago](https://wordpress.org/support/topic/add-a-variable-image-at-the-bottom-of-the-invioce/#post-10034979)
 * Thanks for that [@kluver](https://wordpress.org/support/users/kluver/)
 * For example, I want image ‘test1′ to be on the invoice when product ’16’ is purchased,
   image ‘test2′ to be on the invoice when product ’17’ is purchased ect.
 * I tried the below but no image appeared on the invoice.
    I added this to the 
   invoice template:
 *     ```
       <?php
       if( $item_id == '16' ) {
                   echo '<img src="http://example.com/wp-content/uploads/test1.png" />';
       }
       ?>
   
       <?php
       if( $item_id == '17' ) {
                   echo '<img src="http://example.com/wp-content/uploads/test2.png" />';
       }
       ?>
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[PDF Invoices & Packing Slips for WooCommerce] Add a variable image at the bottom of the invioce](https://wordpress.org/support/topic/add-a-variable-image-at-the-bottom-of-the-invioce/)
 *  Thread Starter [andyzz8](https://wordpress.org/support/users/andyzz/)
 * (@andyzz)
 * [8 years, 3 months ago](https://wordpress.org/support/topic/add-a-variable-image-at-the-bottom-of-the-invioce/#post-10031327)
 * Hi Ewout,
 * Thanks for the message and the plugin!
 * The product / product variation thumbnail isn’t what I am after.
 * I guess I will need to use this:
    get_template_path(); ?>/image.jpg”/>; but I
   don’t know how to change it to select image X for product X, image Y for product
   Y, ect.
 * Found this but I don’t think it is suitable:
    if ($reviews[‘reviews’][‘freshness’]
   == ‘fresh’) { $image = “fresh”; } else { $image = “rotten”; }
 * echo ‘⌊Rotten⌉‘;
    -  This reply was modified 8 years, 3 months ago by [andyzz8](https://wordpress.org/support/users/andyzz/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Woocommerce uncategorized category problem](https://wordpress.org/support/topic/woocommerce-uncategorized-category-problem/)
 *  [andyzz8](https://wordpress.org/support/users/andyzz/)
 * (@andyzz)
 * [8 years, 4 months ago](https://wordpress.org/support/topic/woocommerce-uncategorized-category-problem/#post-9948516)
 * I think the update causes it to default to ‘uncategorized’. Just uncheck the 
   setting in the product page.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce PayPal Checkout Payment Gateway] Customers are unable to complete purchases](https://wordpress.org/support/topic/customers-are-unable-to-complete-purchases/)
 *  Thread Starter [andyzz8](https://wordpress.org/support/users/andyzz/)
 * (@andyzz)
 * [8 years, 10 months ago](https://wordpress.org/support/topic/customers-are-unable-to-complete-purchases/#post-9400755)
 * Hi D Smith!
 * Thanks for the message.
 * No, I have not customised the plugin’s code (i tried and it didn’t work out for
   me, so I reverted the changes I made). The plugin is up to date and the code 
   is not altered it in any way.
 * This problem occurs when a customer refreshes a page (either the product page,
   checkout page or the basket page). This also happens when they click on the same
   product page link more than once.
 * To be honest, it may not be the plugin, it may something to do with caching? 
   I don’t know.
 * Thanks for looking in to this.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Paypal Standard: Unable to leave the ‘Receiver email’ feild empty](https://wordpress.org/support/topic/paypal-standard-unable-to-leave-the-receiver-email-feild-empty/)
 *  Thread Starter [andyzz8](https://wordpress.org/support/users/andyzz/)
 * (@andyzz)
 * [8 years, 10 months ago](https://wordpress.org/support/topic/paypal-standard-unable-to-leave-the-receiver-email-feild-empty/#post-9397181)
 * Sorry, it seems this is not an issue with woo.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Sucuri Security - Auditing, Malware Scanner and Security Hardening] 1.8.8 Language Messed Up](https://wordpress.org/support/topic/1-8-8-language-messed-up/)
 *  [andyzz8](https://wordpress.org/support/users/andyzz/)
 * (@andyzz)
 * [8 years, 10 months ago](https://wordpress.org/support/topic/1-8-8-language-messed-up/#post-9386754)
 * same here, this issue started a few days ago for me.
    Currently affecting two
   different websites. I didn’t actually know it was due to an update…mine updates
   automatically.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] paypal redirect showing white screen](https://wordpress.org/support/topic/paypal-redirect-showing-white-screen/)
 *  [andyzz8](https://wordpress.org/support/users/andyzz/)
 * (@andyzz)
 * [8 years, 11 months ago](https://wordpress.org/support/topic/paypal-redirect-showing-white-screen/#post-9336074)
 * did anyone find a solution to this?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce PayPal Checkout Payment Gateway] Required fields Checkout are disabled](https://wordpress.org/support/topic/required-fields-checkout-are-disabled/)
 *  [andyzz8](https://wordpress.org/support/users/andyzz/)
 * (@andyzz)
 * [8 years, 11 months ago](https://wordpress.org/support/topic/required-fields-checkout-are-disabled/#post-9335939)
 * Hi
 * Is your issue solved by just enabling the ‘Require Billing Address’ & ‘Require
   Phone Number’ in the plugin settings? (for virtual products)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Mailchimp for WooCommerce] Order confirmation emails do not work](https://wordpress.org/support/topic/order-confirmation-emails-do-not-work/)
 *  Thread Starter [andyzz8](https://wordpress.org/support/users/andyzz/)
 * (@andyzz)
 * [8 years, 11 months ago](https://wordpress.org/support/topic/order-confirmation-emails-do-not-work/#post-9295275)
 * [@mcsupport](https://wordpress.org/support/users/mcsupport/) Thanks for the info.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce PayPal Checkout Payment Gateway] How can you remove the ‘deliver to address’?](https://wordpress.org/support/topic/how-can-you-remove-the-deliver-to-address/)
 *  Thread Starter [andyzz8](https://wordpress.org/support/users/andyzz/)
 * (@andyzz)
 * [8 years, 11 months ago](https://wordpress.org/support/topic/how-can-you-remove-the-deliver-to-address/#post-9295202)
 * Hi [@jessepearson](https://wordpress.org/support/users/jessepearson/)
 * Here is the ticket #598790
 * Thanks
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce PayPal Checkout Payment Gateway] How can you remove the ‘deliver to address’?](https://wordpress.org/support/topic/how-can-you-remove-the-deliver-to-address/)
 *  Thread Starter [andyzz8](https://wordpress.org/support/users/andyzz/)
 * (@andyzz)
 * [8 years, 11 months ago](https://wordpress.org/support/topic/how-can-you-remove-the-deliver-to-address/#post-9294568)
 * [@jessepearson](https://wordpress.org/support/users/jessepearson/)
 * Strangely, I can’t seem to create a ticket with my woocommerce account (my email
   has been verified). Alternatively, I can create a pre-sales ticket if you like?
 * I get the first screenshot (but with different wording: ‘Got a PayPal account?
   Log In or Pay with debit or credit card’…maybe it is a UK version).
 * For the second screenshot, I get a ‘Deliver to’ section above the ‘Pay with’ 
   section. (the Deliver to section has the address the customer enter on the checkout
   page)
 * I enabled ‘PayPal checkout on the cart page’ and the same thing happened 🙁
 * I don’t know what else I can try?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce PayPal Checkout Payment Gateway] How can you remove the ‘deliver to address’?](https://wordpress.org/support/topic/how-can-you-remove-the-deliver-to-address/)
 *  Thread Starter [andyzz8](https://wordpress.org/support/users/andyzz/)
 * (@andyzz)
 * [8 years, 11 months ago](https://wordpress.org/support/topic/how-can-you-remove-the-deliver-to-address/#post-9286765)
 * Hi [@jessepearson](https://wordpress.org/support/users/jessepearson/),
 * Yes everything is up to date.
    WC version: 3.1.0 WP version: 4.8 PHP version:
   7.0.14/5.6.29 (tried on two different websites) WooCommerce PayPal Express Checkout
   Payment Gateway: 1.4.1
 * Product settings:
    All products are virtual. Product data setting: Variable product.
   No SKU set. No shipping class. A custom product attribute is used for variations.
   All variations are enabled and virtual. I don’t think there are any other virtual
   product type settings I have missed.
 * Woocommerce settings are:
    Selling location(s): ‘sell to specific countries’ 
   Shipping location(s): ‘disable shipping and shipping calculations’ Add to basket
   behaviour: Redirect to the basket page after successful addition – Check-mark/
   Ticked Enable AJAX add to basket buttons on archives – Not Ticked Guest checkout
   is enabled. WooCommerce PayPal Express Checkout Payment Gateway is the only payment
   option. The purchases are made via the payment button on the checkout page (not
   the basket page) Customer registration is not enabled.
 * PayPal Express Checkout Payment Gateway settings:
    Checkout on cart page: Not
   Enabled PayPal Mark: Enabled Billing Address not required. Landing Page: Billing
   Payment Action: sale Instant Payments required: Ticked/enabled
 * Thank you for looking into this!
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[WP Mail SMTP by WPForms - The Most Popular SMTP and Email Log Plugin] Horrible Security](https://wordpress.org/support/topic/horrible-security/)
 *  [andyzz8](https://wordpress.org/support/users/andyzz/)
 * (@andyzz)
 * [8 years, 11 months ago](https://wordpress.org/support/topic/horrible-security/#post-9286571)
 * It is a serious claim.
    Doesn’t the developer want to respond? It would be helpful
   if they confirmed or denied the above claims.

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

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