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 | |
function get_attributes_by_product_cat($category_slug = null, $cacheHour = 6) | |
{ | |
global $wpdb; | |
// Check Product Cat Slug | |
if (is_null($category_slug)) { | |
$query_object = get_queried_object(); | |
$category_slug = $query_object->slug ?? ''; |
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
<style> | |
.modal-window { | |
position: fixed; | |
background-color: rgba(255, 255, 255, 0.25); | |
top: 0; | |
right: 0; | |
bottom: 0; | |
left: 0; | |
z-index: 999; | |
visibility: hidden; |
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
// place this before any script you want to calculate time | |
$time_start = microtime(true); | |
// Check Time Spend | |
$time_end = microtime(true); | |
$execution_time = ($time_end - $time_start); | |
// Echo Date | |
echo date("H:i:s",$endtime-$starttime); |
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
// Check From Cache Option | |
if ($cache) { | |
$option = get_option('wp_hami_products'); | |
if (!empty($option) and is_array($option) and isset($option['list']) and isset($option['expire']) and is_numeric($option['expire']) and $option['expire'] >= current_time('timestamp')) { | |
return [ | |
'status' => true, | |
'list' => $option['list'], | |
'code' => $option['code'], |
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
$log_path = dirname(__FILE__).'/cron.txt'; | |
$default_timezone = 'Asia/Tehran'; | |
Date_default_timezone_set($default_timezone); | |
$now = date("Ymd @ H:i:s"); | |
file_put_contents($log_path , $now.PHP_EOL, FILE_APPEND); | |
curl -s -o /dev/null -w "%{http_code}\n" "https://xxxxxx/?_sepidar_cron=product" >> /home/jaklin/public_html/status_code.txt 2>/dev/null | |
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 | |
define('WP_SITEURL', 'https://' . $_SERVER['HTTP_HOST']); | |
define('WP_HOME', 'https://' . $_SERVER['HTTP_HOST']); |
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 | |
/* | |
* Plugin Name: Activate Plugins | |
*/ | |
add_filter( 'option_active_plugins', function ( $plugins ) { | |
$actual_link = (empty($_SERVER['HTTPS']) ? 'http' : 'https') . "://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]"; | |
if(strtoupper($_SERVER['REQUEST_METHOD']) == "POST" and strpos($actual_link, 'admin-ajax.php') !== false and isset($_POST['action']) and $_POST['action'] == "irk_quick_cart"){ |
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 | |
// Remove Another Order Pending When create New Order in Checkout | |
// @see https://wp-kama.com/plugin/woocommerce/function/WC_Checkout::create_order | |
// @see https://wp-kama.com/plugin/woocommerce/function/WC_Checkout::process_checkout | |
// https://wp-kama.com/filecode/woocommerce/includes/class-wc-checkout.php#L484 | |
add_action('woocommerce_checkout_create_order', 'checkout_order_created_delete_before_pending_customer_order', 20, 1); | |
function checkout_order_created_delete_before_pending_customer_order($order) | |
{ | |
// Only Admin |
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 | |
/* | |
* Plugin Name: Disable WordPress Emails | |
*/ | |
add_filter('pre_wp_mail', '__return_true'); |