This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Add This whole code in working theme functions.php inside php tag to alter woocommerce native positions | |
* Theme: https://themeforest.net/item/thegem-creative-multipurpose-highperformance-wordpress-theme/16061685 | |
* Finale: WooCommerce Sales Countdown Timer & Discount Plugin | |
*/ | |
add_action('wp', 'thegem_wcct_modify_positions', 90); | |
if (!function_exists('thegem_wcct_modify_positions')) { | |
function thegem_wcct_modify_positions() { | |
if (function_exists('WCCT_Core')) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$unzip = new ZipArchive; | |
$out = $unzip->open('file-name.zip'); | |
if ($out === TRUE) { | |
$unzip->extractTo(getcwd()); | |
$unzip->close(); | |
echo 'File unzipped'; | |
} else { | |
echo 'Something went wrong?'; |