Tag: php

  • Is your PHP fit for the bin? Upgrade to PHP 7.3

    Is your PHP fit for the bin? Upgrade to PHP 7.3

    So you need to upgrade PHP, you’re fed up seeing the warnings in everything from Wordpress to Joomla and everything in betweem, then we need to upgrade PHP to version 7. This upgrades to 7.3 as it is the most stable at this point.

  • HTML 5 Audio Tags are not all equal with Javascript and PHP

    HTML 5 Audio Tags are not all equal with Javascript and PHP

    Recently I was asked to create an audio proxy, whereby no files were contained within DOCROOT. Straight forward I thought, how hard can it be when all it requires is a range resume delivery system. Well, I was once again thwarted by the changes Apple make to their products without telling anyone.

  • get_product_search_form

    The filter used for intercepting the default WooCommerce product search form. Assigning a new function to this filter allows the search form to be redesigned to specific requirements [php]<?php function webdav_get_product_search_form () { // Insert custom code here $output = ”; // function should return html code in a string return $output; } add_filter (‘get_product_search_form’,…