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
[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
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; |
OlderNewer