Title: varange's Replies | WordPress.org

---

# varange

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[Checkout Files Upload for WooCommerce] Awful customer support](https://wordpress.org/support/topic/awful-customer-support-3/)
 *  Thread Starter [varange](https://wordpress.org/support/users/varange/)
 * (@varange)
 * [2 years, 7 months ago](https://wordpress.org/support/topic/awful-customer-support-3/#post-17320177)
 * Thanks for the reply.
 * Good to see that I understood correctly: You are a small team and have no to 
   little time for customer and product support.
 * Exactly as I said.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Perfect Brands for WooCommerce] Coupon codes stopped working with latest update.](https://wordpress.org/support/topic/coupon-codes-stopped-working-with-latest-update/)
 *  [varange](https://wordpress.org/support/users/varange/)
 * (@varange)
 * [8 years, 6 months ago](https://wordpress.org/support/topic/coupon-codes-stopped-working-with-latest-update/#post-9969958)
 * Sorry, it worked for me.
 * Varange
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Perfect Brands for WooCommerce] Coupon codes stopped working with latest update.](https://wordpress.org/support/topic/coupon-codes-stopped-working-with-latest-update/)
 *  [varange](https://wordpress.org/support/users/varange/)
 * (@varange)
 * [8 years, 6 months ago](https://wordpress.org/support/topic/coupon-codes-stopped-working-with-latest-update/#post-9950664)
 * Jos at soft79.nl supplied the fix!
 * Well,
 * actually it’s related to a change I proposed to the WPB guys.
 * For a quick fix, please find the file plugins/perfect-woocommerce-brands/classes/
   admin/class-pwb-coupon.php
 * and replace
 * `if ( empty( $selected_brands ) ) return;`
 * with:
 * `if ( empty( $selected_brands ) ) return $valid;`
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Newsletter Sign-Up] Not working with Aweber Please help](https://wordpress.org/support/topic/not-working-with-aweber-please-help/)
 *  [varange](https://wordpress.org/support/users/varange/)
 * (@varange)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/not-working-with-aweber-please-help/#post-6803970)
 * Yes, a setup guide for AWeber is absolutely essential! I have a bunch of lists
   on AWeber and I’m not going to Mailchimp for this one list only.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[MailPoet Newsletters (Previous)] How to remove custom fields](https://wordpress.org/support/topic/how-to-remove-custom-fields-1/)
 *  Thread Starter [varange](https://wordpress.org/support/users/varange/)
 * (@varange)
 * [11 years ago](https://wordpress.org/support/topic/how-to-remove-custom-fields-1/#post-6388537)
 * The table is called wp_wysija_user.
 * I have deleted the three columns that were added automatically now.
 * When I add a new subscriber, those columns still show up.
 * And when I try to enter the values from those columns into a message with shortcodes,
   it doesn’t replace the shortcodes with the values.
 * Really?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[NextScripts: Social Networks Auto-Poster] Facebook "Invalid Scopes: user_groups" and other problems](https://wordpress.org/support/topic/july-8-2015-facebook-invalid-scopes-user_groups-and-other-problems/)
 *  [varange](https://wordpress.org/support/users/varange/)
 * (@varange)
 * [11 years, 1 month ago](https://wordpress.org/support/topic/july-8-2015-facebook-invalid-scopes-user_groups-and-other-problems/#post-6309716)
 * Same here. Isn’t it fun in the world of development? Some genius at FB decides
   to change things and a gazillion man hours are lost around the planet.
 * Thanks for prioritizing this Ludwig.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [slow-queries with many posts. what is this sql SELECT doing?](https://wordpress.org/support/topic/slow-queries-with-many-posts-what-is-this-sql-select-doing/)
 *  Thread Starter [varange](https://wordpress.org/support/users/varange/)
 * (@varange)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/slow-queries-with-many-posts-what-is-this-sql-select-doing/#post-5802396)
 * This query exists in wp-content/plugins/wordpress-seo/inc/class-sitemaps.php 
   on line 707.
 *     ```
       $query = $wpdb->prepare( "SELECT l.ID, post_title, post_content, post_name, post_author, post_parent, ".
                       "post_modified_gmt, post_date, post_date_gmt FROM ".
                       "( SELECT ID FROM $wpdb->posts {$join_filter} WHERE ".
                       "post_status = '%s' AND post_password = '' AND post_type = '%s' AND post_author != 0 ".
                       "AND post_date != '0000-00-00 00:00:00' {$where_filter} ".
                       "ORDER BY post_modified ASC LIMIT %d OFFSET %d ) o JOIN $wpdb->posts l ON l.ID = o.ID ORDER BY l.ID",
                       $status, $post_type, $steps, $offset
                   );
       ```
   
 * There was already a problem with this query being slow in the past, but Yoast
   updated it.
 * [https://wordpress.org/support/topic/plugin-wordpress-seo-by-yoast-performance-suggestion?replies=6](https://wordpress.org/support/topic/plugin-wordpress-seo-by-yoast-performance-suggestion?replies=6)
   
   and [http://explainextended.com/2009/10/23/mysql-order-by-limit-performance-late-row-lookups/](http://explainextended.com/2009/10/23/mysql-order-by-limit-performance-late-row-lookups/)
 * I’m stuck now.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [slow-queries with many posts. what is this sql SELECT doing?](https://wordpress.org/support/topic/slow-queries-with-many-posts-what-is-this-sql-select-doing/)
 *  Thread Starter [varange](https://wordpress.org/support/users/varange/)
 * (@varange)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/slow-queries-with-many-posts-what-is-this-sql-select-doing/#post-5802394)
 * Ah, found it. Yoast wordpress-SEO plugin. I’ll see if I can run that query on
   a cron-basis, and post what I find..
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[W3 Total Cache] "Set expires header" option, in browser settings is disabled](https://wordpress.org/support/topic/set-expires-header-option-in-browser-settings-is-disabled/)
 *  [varange](https://wordpress.org/support/users/varange/)
 * (@varange)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/set-expires-header-option-in-browser-settings-is-disabled/page/2/#post-4818272)
 * Yes, I had the same problem and the fixes suggested by vignesh and others works
   just fine. Jakobde: learn to read.
 * Thanks for posting a fix!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[NextScripts: Social Networks Auto-Poster] Any support available??](https://wordpress.org/support/topic/any-support-available/)
 *  [varange](https://wordpress.org/support/users/varange/)
 * (@varange)
 * [11 years, 8 months ago](https://wordpress.org/support/topic/any-support-available/#post-5587225)
 * Yes. Send out messages to all social media accounts you have to let people know
   how bad the support is.
 * Wash, rinse, repeat.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Customizr] Which Template File for Posts?](https://wordpress.org/support/topic/which-template-file-for-posts/)
 *  Thread Starter [varange](https://wordpress.org/support/users/varange/)
 * (@varange)
 * [11 years, 8 months ago](https://wordpress.org/support/topic/which-template-file-for-posts/#post-5536068)
 * Here’s a [screenshot of the Reading page](http://www.naturalblacksalve.com/wordpress/wp-content/uploads/customizr.png).
   All OK there?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Problem with quantity of items in cart woocommerce](https://wordpress.org/support/topic/problem-with-quantity-of-items-in-cart-woocommerce/)
 *  [varange](https://wordpress.org/support/users/varange/)
 * (@varange)
 * [12 years ago](https://wordpress.org/support/topic/problem-with-quantity-of-items-in-cart-woocommerce/#post-5145377)
 * Quick update: I had a few plugins from InboundNow installed: CallToAction, LandingPages
   and Leads.
 * Disabled them and the “proceed to checkout” works.
 * Man oh man.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Problem with quantity of items in cart woocommerce](https://wordpress.org/support/topic/problem-with-quantity-of-items-in-cart-woocommerce/)
 *  [varange](https://wordpress.org/support/users/varange/)
 * (@varange)
 * [12 years ago](https://wordpress.org/support/topic/problem-with-quantity-of-items-in-cart-woocommerce/#post-5145374)
 * I have exactly the same problem.
 * I see that the form action for the cart form is set to /cart/ and not /checkout/.
   Is this normal?

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