This file contains 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 | |
// Disable User Agent For WordPress Comment | |
// https://developer.wordpress.org/reference/functions/wp_new_comment/ | |
add_filter( 'preprocess_comment', 'prepare_wp_insert_comment_data', 90, 1 ); | |
function prepare_wp_insert_comment_data($commentdata) { | |
if(isset($commentdata['comment_agent']) and $commentdata['comment_agent'] != 'WooCommerce') { | |
$commentdata['comment_agent'] = ''; | |
} |
This file contains 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 | |
// Delete Change Status Order Note For Completed | |
add_action( 'woocommerce_order_note_added', 'action_remove_order_note_for_completed', 20, 2); | |
function action_remove_order_note_for_completed($comment_id, $order) { | |
if ( $order->has_status('completed') ) { | |
wc_delete_order_note($comment_id); | |
} | |
} |
This file contains 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::create_order | |
add_action('woocommerce_checkout_order_created', 'checkout_order_created_delete_before_pending_customer_order', 20, 1); | |
function checkout_order_created_delete_before_pending_customer_order($order) | |
{ | |
if (is_admin()) { | |
return null; |
This file contains 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 | |
if (!class_exists('WP_Terms_Nested')) { | |
class WP_Terms_Nested | |
{ | |
public static function get($arg = []): array | |
{ |
This file contains 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 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 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 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 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
``` | |
mysqldump --column-statistics=0 --no-tablespaces --host="localhost" --user="xxxx" --password="xxx" "db_name" | gzip > ~/.backup-database/db_`date +\%Y-\%m-\%d_\%H-\%M-\%S`.sql.gz | |
``` | |
``` | |
wget -q -O - https://xxxx.com/wp-cron.php?doing_wp_cron >/dev/null 2>&1 | |
``` | |
``` | |
wget -O /dev/null --spider --no-cache "https://xxx.com/?_sepidar_cron=product" >/dev/null 2>&1 |
This file contains 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']); |
NewerOlder