Hello Everyone, Today I am going to share my experience of debugging WooCommerce download links which was lost after the transferring the host. Actually transferring the host sometimes broke the serialised data and in our case serialised value of _downloadable_files meta key was broken. After detecting the issue was from broken serialised data I went to …
Tag Archives: Advanced level
How to add Woocommerce product category on customizer?
Here is the steps you need to follow to add product category on customizer without extending customize class: Add section for the woocommerce setting add setting for the category add select option on add control function Create custom function to list category create function for sanitization add_action(‘customize_register’, ‘your theme_theme_customize’); function your_theme_theme_customize($wp_customize) { //create section $wp_customize->add_section( …
Continue reading “How to add Woocommerce product category on customizer?”