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
Working with Opencart version 1.5, however the script below is very easily editable to work with any version. The way it works is by simply adding a meta description column to your information database table, populating it when editing your information page and spitting it out into the html of your front end page. 1) […]
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 10:53:442015-05-06 11:30:02Add Meta Description to Opencart Information Pages
Go to the catalog controller page: catalog/controller/catalog.tpl Find the line: ‘name’ => $result[‘name’], Insert another line below this: ‘model’ => $result[‘model’], Now you can echo the model on your main category template page.
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-02-26 12:35:192015-02-26 12:35:19Display Part Number (Model) on Category Page – Opencart
Find the category.tpl file inside your template/product/ folder. Add the following code to the bottom of the page just below <?php echo $footer; ?> <script type=”text/javascript”> $(document).ready(function() { if(typeof display == ‘function’) { display(‘grid’); } }); </script>
Instead of using the default success message in the Contact Form 7 WordPress Plugin you may wish to redirect users to a customised thank you / success page. This can be useful for showing extra information, tracking leads etc. Create the Contact Form 7 Redirect… Login to WordPress and Select Contact Forms from the sidebar […]
https://www.codingthenet.com/wp-content/uploads/2015/07/ctn-logo.png00ctn-adminhttps://www.codingthenet.com/wp-content/uploads/2015/07/ctn-logo.pngctn-admin2014-11-20 13:46:212014-11-20 14:01:59Contact Form 7 – Redirect to Thank You Success page
If you run into a problem where your wordpress page is coming up blank or timing out there is a good chance the PHP memory is timing out. Have a look in your server’s error.log file and you might see something like the following [08-Sep-2014 12:35:06 UTC] PHP Fatal error: Allowed memory size of 50331648 […]
https://www.codingthenet.com/wp-content/uploads/2015/07/ctn-logo.png00ctn-adminhttps://www.codingthenet.com/wp-content/uploads/2015/07/ctn-logo.pngctn-admin2014-09-08 12:42:352014-09-09 10:02:32How to increase PHP memory limit for wordpress
Add Meta Description to Opencart Information Pages
/in Opencart, VQModWorking with Opencart version 1.5, however the script below is very easily editable to work with any version. The way it works is by simply adding a meta description column to your information database table, populating it when editing your information page and spitting it out into the html of your front end page. 1) […]
Display Part Number (Model) on Category Page – Opencart
/in OpencartGo to the catalog controller page: catalog/controller/catalog.tpl Find the line: ‘name’ => $result[‘name’], Insert another line below this: ‘model’ => $result[‘model’], Now you can echo the model on your main category template page.
Default Grid View Products/Categories – Opencart 2
/in OpencartFind the category.tpl file inside your template/product/ folder. Add the following code to the bottom of the page just below <?php echo $footer; ?> <script type=”text/javascript”> $(document).ready(function() { if(typeof display == ‘function’) { display(‘grid’); } }); </script>
Contact Form 7 – Redirect to Thank You Success page
/in WordpressInstead of using the default success message in the Contact Form 7 WordPress Plugin you may wish to redirect users to a customised thank you / success page. This can be useful for showing extra information, tracking leads etc. Create the Contact Form 7 Redirect… Login to WordPress and Select Contact Forms from the sidebar […]
How to increase PHP memory limit for wordpress
/in PHP, WordpressIf you run into a problem where your wordpress page is coming up blank or timing out there is a good chance the PHP memory is timing out. Have a look in your server’s error.log file and you might see something like the following [08-Sep-2014 12:35:06 UTC] PHP Fatal error: Allowed memory size of 50331648 […]