Title: skrillaking's Replies | WordPress.org

---

# skrillaking

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

 *   [Profile](https://wordpress.org/support/users/skrillaking/)
 *   [Topics Started](https://wordpress.org/support/users/skrillaking/topics/)
 *   [Replies Created](https://wordpress.org/support/users/skrillaking/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/skrillaking/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/skrillaking/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/skrillaking/engagements/)
 *   [Favorites](https://wordpress.org/support/users/skrillaking/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: [[YASR - Yet Another Star Rating Plugin for WordPress] Stars not showing using Catch Infinite Scroll](https://wordpress.org/support/topic/stars-not-showing-using-catch-infinite-scroll/)
 *  Thread Starter [skrillaking](https://wordpress.org/support/users/skrillaking/)
 * (@skrillaking)
 * [4 years, 7 months ago](https://wordpress.org/support/topic/stars-not-showing-using-catch-infinite-scroll/#post-15004148)
 * It is resolved I think. A cache plugin was loading an older version
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[YASR - Yet Another Star Rating Plugin for WordPress] Stars not showing using Catch Infinite Scroll](https://wordpress.org/support/topic/stars-not-showing-using-catch-infinite-scroll/)
 *  Thread Starter [skrillaking](https://wordpress.org/support/users/skrillaking/)
 * (@skrillaking)
 * [4 years, 7 months ago](https://wordpress.org/support/topic/stars-not-showing-using-catch-infinite-scroll/#post-15003872)
 * Haha long day? That new code hit the nail on the head. Kudos!
 * Edit
 * After further testing it works for Firefox but not for Chrome
    -  This reply was modified 4 years, 7 months ago by [skrillaking](https://wordpress.org/support/users/skrillaking/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[YASR - Yet Another Star Rating Plugin for WordPress] Stars not showing using Catch Infinite Scroll](https://wordpress.org/support/topic/stars-not-showing-using-catch-infinite-scroll/)
 *  Thread Starter [skrillaking](https://wordpress.org/support/users/skrillaking/)
 * (@skrillaking)
 * [4 years, 8 months ago](https://wordpress.org/support/topic/stars-not-showing-using-catch-infinite-scroll/#post-14999440)
 * What file should I download?
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Trusted] Product variation price not showing](https://wordpress.org/support/topic/product-variation-price-not-showing-2/)
 *  Thread Starter [skrillaking](https://wordpress.org/support/users/skrillaking/)
 * (@skrillaking)
 * [5 years, 5 months ago](https://wordpress.org/support/topic/product-variation-price-not-showing-2/#post-13886005)
 * Thanks for the reply but im really glad I didnt start deleting stuff :sweat:.
   I was just dropping by to say I solved this by simply adding this code to Custom
   CSS in the Customizer;
 *     ```
       .woocommerce-variation-price{
       	display: block;
       }
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[ALD - Dropshipping and Fulfillment for AliExpress and WooCommerce] Default Contact Number](https://wordpress.org/support/topic/default-contact-number/)
 *  Thread Starter [skrillaking](https://wordpress.org/support/users/skrillaking/)
 * (@skrillaking)
 * [5 years, 7 months ago](https://wordpress.org/support/topic/default-contact-number/#post-13638132)
 * I havn’t had any issues. I generally just fill it full of zeros. Customers can
   still get in contact and receive their tracking numbers.
 * P.S thats great your adding this feature!
    -  This reply was modified 5 years, 7 months ago by [skrillaking](https://wordpress.org/support/users/skrillaking/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[ALD - Dropshipping and Fulfillment for AliExpress and WooCommerce] Error: Please update your plugin](https://wordpress.org/support/topic/error-please-update-your-plugin/)
 *  [skrillaking](https://wordpress.org/support/users/skrillaking/)
 * (@skrillaking)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/error-please-update-your-plugin/#post-13056028)
 * Also this problem
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] How to remove county field (or billing_state) on checkout if country is UK/GB?](https://wordpress.org/support/topic/how-to-remove-county-field-or-billing_state-on-checkout-if-country-is-uk-gb/)
 *  [skrillaking](https://wordpress.org/support/users/skrillaking/)
 * (@skrillaking)
 * [6 years ago](https://wordpress.org/support/topic/how-to-remove-county-field-or-billing_state-on-checkout-if-country-is-uk-gb/#post-12889547)
 * I got what you need. Lost the original source to credit but use this code. Add
   this to your themes functions.php
 *     ```
       add_filter( 'woocommerce_states' , 'keep_specific_country_states', 10, 1 );
       function keep_specific_country_states( $states ) {
           // HERE define the countries where you want to keep
           $countries = array('US', 'AU', 'CA');
           $new_country_states = array();
   
           // Loop though all country states
           foreach( $states as $country_code => $country_states ){
               if( ! in_array( $country_code, $countries ) ){
                   // Remove states from all countries except the defined ones
                   $states[$country_code] = array();
               }
           }
           return $states;
       }
       ```
   
 * Add countries that require a state to;
 * `$countries = array('US', 'AU', 'CA');`
    -  This reply was modified 6 years ago by [skrillaking](https://wordpress.org/support/users/skrillaking/).
    -  This reply was modified 6 years ago by [skrillaking](https://wordpress.org/support/users/skrillaking/).

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