How To Implement Youtube Playlist Player With jQuery

With the following code you will be able to create youtube playlist player using just few lines of javascript. You need to provide your chanel id and playlist id, you can get them from url when you open up your chanel in youtube. The script is very easy to use and you can implement as… Continue reading How To Implement Youtube Playlist Player With jQuery

How To Upload Images In Custom Prestashop Form

If you need to implement a custom form and upload images in prestashop you are in the right place because I will show you the entire code you will need to implement to achive this functionality. This tutorial is for prestashop 1.7 but you can try it can work for previews versions too. You don’t… Continue reading How To Upload Images In Custom Prestashop Form

How To Export Woocommerce Orders to XML Using PHP

This tutorial will show you how to export all your woocommerce shop orders in xml file. We will use woocommerce default functions to get all the data we need to generate the xml then when we will access a specific link the xml will be auto generated again and again. If we want to automate… Continue reading How To Export Woocommerce Orders to XML Using PHP

How To Export HTML to Excel using PHP

Excel is among the most used file types to export your website data, so in this tutorial I will show you how to export html to excel using php. It’s not that hard I will give you the main class of this functionality, then you only need to call the function and provide the required… Continue reading How To Export HTML to Excel using PHP

How To Update ACF Fields With Contact Form 7

In the last tutorial I showed you how to create a new custom post type with contact form 7. Now I will show you how to update any acf fields at contact form 7 submission. If you don’t know how to create a custom post type install the cpt ui plugin and it will create… Continue reading How To Update ACF Fields With Contact Form 7

How To Create Custom Post Type From Contact Form 7

Sometimes this action is a required one, especially when your website has a contact form thourgh users can register its own posts. So in this tutorial we will create a post in our custom post type from wordpress at every contact form submission. This is not hard to achive especially if you already have custom… Continue reading How To Create Custom Post Type From Contact Form 7

How To Detect When Ajax Finished

In this tutorial I will show you how to detect when ajax finished, why you should know when this event is over? Sometimes you need to call other functions which must be used on certain pages or should be fired when a class is found on the HTML. To have more control over the elements… Continue reading How To Detect When Ajax Finished

Create a Custom Plugin For Smarty in Prestashop

What is actually a custom plugin for smarty in prestashop, is a code syntax defined by you and when smarty find that syntax will call a custom function, the function which you tell what should do. In this tutorial I will show you step by step how to implement this feature from scratch, this functionality… Continue reading Create a Custom Plugin For Smarty in Prestashop

How to create a table for admin controller prestashop

Here is how you can create a database table at the module instalation. If you have a small module you can save all settings in prestashop settings table, but if you need to save large data you need a new table only for your module. It is not so complicated to create this table, you… Continue reading How to create a table for admin controller prestashop

How To Create Custom Shortcodes In Prestashop

In this tutorial I will shoud you how to create custom shortcodes in prestashop. Prestashop does not come with this type of functionality so we will need to create it from scratch. For this example I will use an admin module created from scratch too, if you don’t know how to create a module you… Continue reading How To Create Custom Shortcodes In Prestashop