Warning: call_user_func_array() expects parameter 1 to be a valid callback, function '_wp_footnotes_kses_init' not found or invalid function name in /var/www/vhosts/223/1111104/webspace/httpdocs/codingthenet.com/wp-includes/class-wp-hook.php on line 307
Warning: call_user_func_array() expects parameter 1 to be a valid callback, function '_wp_footnotes_kses_init' not found or invalid function name in /var/www/vhosts/223/1111104/webspace/httpdocs/codingthenet.com/wp-includes/class-wp-hook.php on line 307 Home - Coding The Net
Google Adwords Conversions can be very useful for tracking what purchases on your site come from paid clicks through a PPC campaign. Firstly you need to set up the tracking code on your Adwords account: https://support.google.com/adwords/answer/6095821 To setup the conversion for an Opencart store we are going to track the success page that appears after a successful […]
You may wish to use your ssl cert for every page on your opencart store. To do so you will need to select “Use SSL” in your opencart amin settings. You will also need to edit your .htaccess file as follows: RewriteEngine On RewriteCond %{SERVER_PORT} 80 RewriteRule ^(.*)$ https://www.example.com/$1 [R,L] Make sure to […]
If you are using the Fancy Product Designer wordpress plugin and need to move the location of the “Customize Product” button I will show you how. Find the file called class-frontend-product.php, it lives in the inc/ folder of the plugin. Find the code below: //add customize button add_action( ‘woocommerce_single_product_summary’, array( &$this, ‘add_customize_button’), 25 ); The wordpress codex […]
https://www.codingthenet.com/wp-content/uploads/2015/07/ctn-logo.png00ctn-adminhttps://www.codingthenet.com/wp-content/uploads/2015/07/ctn-logo.pngctn-admin2015-07-27 11:27:012015-07-27 11:29:57How to move position of Customize button – Fancy Product Designer
One of the most likely problems you will encounter with your XML VQMod files, assuming that your path locations are correct is going to be markup errors. The smallest thing such as an “&” symbol will cause the whole file to not load correctly. You can access your VQMod error log by looking in the […]
https://www.codingthenet.com/wp-content/uploads/2015/07/ctn-logo.png00ctn-adminhttps://www.codingthenet.com/wp-content/uploads/2015/07/ctn-logo.pngctn-admin2015-05-06 11:57:472015-05-06 12:00:10How to Fix: VQMod::_parseMods – DOM UNABLE TO LOAD:
Many file types you may want to upload to your WordPress blog or site will not be allowed by default. This is down to security concerns; uploading incorrect files etc that could bring down the site or introduce vulnerabilities. If you know what you are doing here is how to unlock any file type you […]
Adding Adwords Conversion code to Opencart Checkout
/in Google Adwords, Opencart, PHPGoogle Adwords Conversions can be very useful for tracking what purchases on your site come from paid clicks through a PPC campaign. Firstly you need to set up the tracking code on your Adwords account: https://support.google.com/adwords/answer/6095821 To setup the conversion for an Opencart store we are going to track the success page that appears after a successful […]
Force HTTPS using .htaccess Opencart
/in OpencartYou may wish to use your ssl cert for every page on your opencart store. To do so you will need to select “Use SSL” in your opencart amin settings. You will also need to edit your .htaccess file as follows: RewriteEngine On RewriteCond %{SERVER_PORT} 80 RewriteRule ^(.*)$ https://www.example.com/$1 [R,L] Make sure to […]
How to move position of Customize button – Fancy Product Designer
/in PHP, WordpressIf you are using the Fancy Product Designer wordpress plugin and need to move the location of the “Customize Product” button I will show you how. Find the file called class-frontend-product.php, it lives in the inc/ folder of the plugin. Find the code below: //add customize button add_action( ‘woocommerce_single_product_summary’, array( &$this, ‘add_customize_button’), 25 ); The wordpress codex […]
How to Fix: VQMod::_parseMods – DOM UNABLE TO LOAD:
/in Opencart, VQModOne of the most likely problems you will encounter with your XML VQMod files, assuming that your path locations are correct is going to be markup errors. The smallest thing such as an “&” symbol will cause the whole file to not load correctly. You can access your VQMod error log by looking in the […]
How To Allow Additional Upload File Types in WordPress
/in PHP, WordpressMany file types you may want to upload to your WordPress blog or site will not be allowed by default. This is down to security concerns; uploading incorrect files etc that could bring down the site or introduce vulnerabilities. If you know what you are doing here is how to unlock any file type you […]