7 articles Wordpress

Fixing bad theme import / not working theme import – Justshoppe from themeforest

April 2021 version – import xml has a bug. Many pages are not imported of main demo To fix, import as per documentation Data file = /wp-content/plugins/justshoppe-features/inc/demo-import/main-demo/data.xml Find the xml file load the file in chrome. Chrome will show it has invalid characters / syntax This page contains the follow errors: error on line 7300…

WordPress / Woocommerce Error Logs

If you are facing any transaction errors, and not sure what is causing the issue, best to look for error in the order below. Files: public_html/wp-content/uploads/wc-logs (each transaction is saved as a separate file) Alternatively, can look in WordPress Admin > Woocommerce  > Status > Logs public_html/error_log default apache error / notice log public_html/wp-content/debug.log wordpress…

How to extract image from chrome

There are two techniques on how to extract image from chrome 1. Inspect element, and open link image on new tab Right click inspect element Find background image property Find link Right click, open image link in new tab 2. Inspect element, load network tab Inspect element, open dev tools (Chrome, Control+shift+j) Load network tab…

How to create local business schema creation and adding to plugin & wordpress

Go to https://technicalseo.com/tools/schema-markup-generator/ Select Local Business for the schema markup Add business details Copy schema script once adding of the business details is done To add schema for service area that doesnt have address we need to Go to https://technicalseo.com/tools/schema-markup-generator/ Select Local Business for the schema markup Add business details Copy the schema code generated on the…

Add header / footer in wordpress

Add this to the functions.php function function_name() { ?> whatever you want to print <?php } add_action( ‘wp_footer’, ‘function_name’ ); function function_name() { ?> whatever you want to print <?php } add_action( ‘wp_head’, ‘function_name’ );