by Garth | Mar 16, 2021 | PHP, Tools
Setting up xDebug is a bit of a pain as the links are not clearly linked. So below is some info to help you 😉 In order to use the Install Wizard. Open your PHPinfo() page from the xampp default dashboard pagehttp://localhost/dashboard/phpinfo.php Copy all...
by Garth | Sep 5, 2019 | Javascript, Tools
Documentation can be found hereOwl Carousel https://owlcarousel2.github.io/OwlCarousel2/Add font awesome as well because font awesome is awesome. wp_enqueue_style(‘fontawesome’, ‘https://use.fontawesome.com/releases/v5.2.0/css/all.css’);...
by Garth | Jul 26, 2018 | Javascript, Snippets, Tools
print();
by Garth | Jul 23, 2018 | HTML, Javascript, Jquery, Snippets, Tools
<a href=”javascript:history.go(-1)” class=”custom_back_button”><i class=”fas fa-chevron-left”></i> Back</a> This example uses Font Awesome. Don’t forget to include Font Awesome lib in your...
by Garth | Jun 5, 2018 | PHP, Snippets, Tools, Woocommerce, Wordpress
Send an email if there are any woocommerce orders created a before the current Day. $wp_query = new WP_Query( array( ‘posts_per_page’=> -1, ‘post_type’=>’shop_order’, ‘post_status’=>’wc-processing’,...