In PHP, I have developed WordPress plugins and themes for various companies. Although I cannot publish the code, I can share some videos of the functionalities they perform, along with details of the original requirements and their development.
The plugin was designed to be simple to use and have a minimal impact on performance. It was created to provide a comprehensive list of all categories within a WooCommerce store and enable users to customize the URL and slug of each category. To ensure data integrity, the plugin stores the original category name for comparison with the database. This allows the plugin to preserve the user-selected name during the execution of the scheduled Cron job that updates the categories. Additionally, the plugin has the capability to export both the original and modified category data in a JSON format.
With WP All Import Pro and All Export Pro, it was necessary to meet certain criteria during the import process that the plugin did not offer by default. I had to develop custom PHP functions for WordPress to address these specific needs. I programmed functions to:
function price_Iva($price){
$x = 5;
global $product;
return round(wc_get_price_including_tax($product)* $x,2);
}
Umi project:
I’m currently developing a PHP plugin that allows for a 302 redirect to temporarily close the website without harming SEO. The plugin will also enable the modification of the status message on the redirect page, providing users with updates on the website’s development progress and estimated return date.