softclue.net

Increase Aws EC2 Disk Space

For anyone that has this problem, here’s a link to the answer: https://aws.amazon.com/premiumsupport/knowledge-center/ebs-volume-size-increase/

Summary

  1. Run df -h to verify your root partition is full (100%)
  2. Run lsblk and then lsblk -f to get block device details
  3. sudo mount -o size=10M,rw,nodev,nosuid -t tmpfs tmpfs /tmp
  4. sudo growpart /dev/DEVICE_ID PARTITION_NUMBER
  5. lsblk to verify partition has expanded
  6. sudo resize2fs /dev/DEVICE_IDPARTITION_NUMBER
  7. Run df -h to verify your resized disk
  8. sudo umount /tmp
Posted by softclue.net in Blog, 0 comments

Elementor mini cart widget appear empty without any content

Hello everyone!

Thank you for submitting your issue, and for the feedback! 🙏

We are aware of this issue and our team is already working on a fix. We are planning on releasing this fix together with Elementor Pro v3.14.0 next week.

Meanwhile, a workaround is to either Rollback your WooCommerce version to 7.7.2, or to use the following code snippet that can be added to your functions.php child theme file, or use the Code Snippets plugin:

 

add_action( 'wp_enqueue_scripts', 'custom_enqueue_wc_cart_fragments' ); 
function custom_enqueue_wc_cart_fragments() 
{ 
wp_enqueue_script( 'wc-cart-fragments' ); 
}
Posted by softclue.net in php, Wordpress with Woocommerce, 0 comments