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
function ___return_currency_USD() { | |
return 'USD'; | |
} | |
// Temporarily set active currency to "USD". | |
\add_filter( 'woocommerce_multicurrency_override_currency', '___return_currency_USD' ); | |
// Create order programmatically. | |
$logger = \wc_get_logger(); | |
$product_id = 10; |
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
[woopaywall_hide_after_purchase] | |
The content placed here is shown only until paid. | |
Hey, here is a sales pitch! You definitely must buy this NOW! | |
[/woopaywall_hide_after_purchase] |
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
[woopaywall_show_after_purchase] | |
The content placed here is hidden until paid. | |
For example, you can hide a YouTube video here: | |
[video src="https://www.youtube.com/watch?v=z6e_W6L6sTg"] | |
[/woopaywall_show_after_purchase] |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>ACE Editor: submit, beautify and minify</title> | |
<style type="text/css" media="screen"> | |
#ace_js, #ace_css { | |
width: 95%; | |
height: 15em; | |
border: 1px solid silver; |
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
#!/bin/bash | |
if test -z ${1}; then | |
echo "Syntax: ${0} folder-name-same-as-zip-file"; | |
exit 2; | |
fi | |
mv ${1} ${1}.S && \ | |
unzip -q ${1}.zip && \ | |
rm ${1}.zip && \ |
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
#!/bin/bash | |
# A simplified version of a2ensite/a2dissite. Works under Windows with no symlinking. | |
# Author: Gregory Karpinsky (@tivnet) | |
if [ ! -d sites-available ] | |
then | |
echo "Wrong folder!" | |
exit 2; | |
fi |
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 | |
/** | |
* File: apigen-hooks.php | |
* | |
* NOTE: this code is used internally in WPGlobus project. | |
* It's a W.I.P. - please use it, but do not forget to adapt for your project. | |
* | |
* @package WPGlobus\APIGen | |
* @author Gregory Karpinsky (@tivnet) | |
*/ |
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
#!/bin/bash | |
for f in `find . -name "*.jpg"`; do dd=`exif -t "Date and Time (Original)" --machine-readable $f | cut -f1 -d" " | sed s/:/-/g`; mkdir -p $dd && mv $f $dd/; done |
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 | |
// plugins/woocommerce-api-manager/includes/class-wc-am-update-api.php | |
// Add `$response->tested` to show "100% compatible" on the Updates page. | |
case 'pluginupdatecheck': | |
$response->id = $post_id; | |
$response->slug = ! empty( $this->slug ) ? $this->slug : $slug; | |
$response->plugin = $plugin_name; | |
$response->new_version = $api_data[ '_api_new_version' ]; | |
$response->url = $api_data[ '_api_plugin_url' ]; |
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 | |
// class WC_Api_Manager_Helpers | |
// Status can be lowercase. | |
public function is_user_subscription_active( $status ) { | |
// Wrong: | |
// return $status == 'Active' || $status == 'Pending Cancellation' ? true : false; | |
// Correct: | |
return ( strtolower( $status ) === 'active' || $status === 'Pending Cancellation' ); | |
} |
NewerOlder