Title: Byteknight Creations's Replies | WordPress.org

---

# Byteknight Creations

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Astra] Mobile caching is affecting Desktop view](https://wordpress.org/support/topic/mobile-caching-is-affecting-desktop-view/)
 *  [Byteknight Creations](https://wordpress.org/support/users/byteknight/)
 * (@byteknight)
 * [3 years, 9 months ago](https://wordpress.org/support/topic/mobile-caching-is-affecting-desktop-view/#post-15912194)
 * I faced same problem using different theme but when I disabled separate copy 
   for mobile cache it solved. That confused me but it solved the issue..
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WCFM - Frontend Manager for WooCommerce] Invalid nonce! Refresh your page and try again.](https://wordpress.org/support/topic/invalid-nonce-refresh-your-page-and-try-again/)
 *  [Byteknight Creations](https://wordpress.org/support/users/byteknight/)
 * (@byteknight)
 * [4 years, 8 months ago](https://wordpress.org/support/topic/invalid-nonce-refresh-your-page-and-try-again/#post-14839177)
 * That didn’t work for me..
 *   Forum: [Localhost Installs](https://wordpress.org/support/forum/localhost-installs/)
   
   In reply to: [ERROR Updating failed. Error message: The response is not a valid JSON response.](https://wordpress.org/support/topic/error-updating-failed-error-message-the-response-is-not-a-valid-json-response/)
 *  [Byteknight Creations](https://wordpress.org/support/users/byteknight/)
 * (@byteknight)
 * [5 years, 3 months ago](https://wordpress.org/support/topic/error-updating-failed-error-message-the-response-is-not-a-valid-json-response/page/5/#post-13913067)
 * for me i removed additioal / from the end eg. [https://abc.com/](https://abc.com/)
   to [https://abc.com](https://abc.com) and it worked.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Calculate shipping cost by city](https://wordpress.org/support/topic/calculate-shipping-cost-by-city/)
 *  [Byteknight Creations](https://wordpress.org/support/users/byteknight/)
 * (@byteknight)
 * [6 years, 2 months ago](https://wordpress.org/support/topic/calculate-shipping-cost-by-city/#post-12520095)
 * There are many regions which are far away and needs divided shipping within states.
   
   For those who still facing problem, below solution may work.
 * I added custom states in specific countries using below
 * Add code to your child theme’s functions.php file or via a plugin that allows
   custom functions to be added, such as the Code snippets plugin. Avoid adding 
   custom code directly to your parent theme’s functions.php file as this will be
   wiped entirely when you update the theme.
 * Add your own or modify shipping states in WooCommerce.
 * Note: You must replace both instances of XX with your country code. This means
   each state id in the array must have your two letter country code before the 
   number you assign to the state.
 *     ```
       /**
        * Add or modify States
        */
       add_filter( 'woocommerce_states', 'custom_woocommerce_states' );
   
       function custom_woocommerce_states( $states ) {
   
         $states['XX'] = array(
           'XX1' => 'State 1', 
           'XX2' => 'State 2'
         );
   
         return $states;
       }
       ```
   
 * Source – [Add / Modify States woocommerce](https://docs.woocommerce.com/document/addmodify-states/)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Calculate shipping cost by city](https://wordpress.org/support/topic/calculate-shipping-cost-by-city/)
 *  [Byteknight Creations](https://wordpress.org/support/users/byteknight/)
 * (@byteknight)
 * [6 years, 2 months ago](https://wordpress.org/support/topic/calculate-shipping-cost-by-city/#post-12517974)
 * Same problem, woocommerce doesn’t have an option to add custom location and calculate
   shipping cost by it.
 *   Forum: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
   
   In reply to: [WordPress Sites all of sudden have broken images](https://wordpress.org/support/topic/wordpress-sites-all-of-sudden-have-broken-images/)
 *  [Byteknight Creations](https://wordpress.org/support/users/byteknight/)
 * (@byteknight)
 * [9 years ago](https://wordpress.org/support/topic/wordpress-sites-all-of-sudden-have-broken-images/#post-9077945)
 * That happened to me when i installed jetpack, somehow it improved everything 
   as it says but broken almost every css and images. try deactivating jetpack.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Fatal error: Allowed memory size of 41943040 bytes exhausted](https://wordpress.org/support/topic/fatal-error-allowed-memory-size-of-41943040-bytes-exhausted-7/)
 *  [Byteknight Creations](https://wordpress.org/support/users/byteknight/)
 * (@byteknight)
 * [9 years, 4 months ago](https://wordpress.org/support/topic/fatal-error-allowed-memory-size-of-41943040-bytes-exhausted-7/#post-8624470)
 * I had the same error yesterday and i was trying to figure out what messed up 
   with my up and running website. turns out it was my recent plugin update which
   exhausted the limits. If you’re not looking to make changes to anything into 
   wp-config then try de-activating your recently updated plugins.

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