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
// Integrate WPF Return into Gravity Forms Login Shortcode | |
function zf_check_for_wpf_return_cookie_on_login( $login_redirect, $sign_on ) { | |
// Check for WPF Return Cookie and ensure it's a valid post ID | |
if ( isset( $_COOKIE["wpf_return_to"] ) && is_numeric( $_COOKIE["wpf_return_to"] ) ) { | |
// Get Permalink for the specified post ID | |
$return_url = get_permalink( (int) $_COOKIE["wpf_return_to"] ); | |
// Set Redirect to the sanitized URL |
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
// Hide Free Cases if Subscription in Cart | |
function hideWidgetIfSubscription() { | |
let subscription_exists = false; | |
const rebuy_widget = window.Rebuy.widgets.find(widget => widget.id === "161420"); | |
const cart_items = Rebuy.SmartCart.items(); | |
// Use some to check for subscription existence | |
subscription_exists = cart_items.some(item => item.product.subscription === true); | |
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
// Get Active Tabs Object | |
const getActiveTabs = () => { | |
const tabObject = {}; // Initialize an empty object | |
const wooTabsContainer = document.querySelector('.wc-tabs-wrapper'); | |
// Check if the container exists | |
if (!wooTabsContainer) { | |
console.error('Tabs container not found.'); | |
return tabObject; // Return an empty object if not found |
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 zf_block_and_log_checkout_api_requests() { | |
$current_url = $_SERVER['REQUEST_URI']; | |
$msg_to_log = 'Checkout API Blocked: ' . $_SERVER['REMOTE_ADDR']; | |
if ( strpos( $current_url, '/wp-json/wc/store/checkout' ) !== false ) { | |
error_log( $msg_to_log , 0); | |
wp_redirect( home_url() ); | |
exit; |
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
function zf_get_line_item_returned_quantity( $item, $order ) { | |
$returned_quantity = 0; | |
foreach ($order->get_refunds() as $refund) { | |
foreach ($refund->get_items() as $refund_item) { | |
if ($refund_item->get_product_id() == $item->get_product_id()) { | |
$returned_quantity += $refund_item->get_quantity(); | |
} | |
} |
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
function zf_get_recent_subscription_order_items( $id ){ | |
if ( is_nan( $id ) ) { | |
return ''; | |
} | |
$subscription = new WC_Subscription( $id ); | |
$related_orders = $subscription->get_related_orders(); | |
$recent_order_id = current( $related_orders ); | |
$recent_order = wc_get_order( $recent_order_id ); |
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
// ACF: Options Page Field Getter | |
function zf_acf_options_field_shortcode( $atts ){ | |
$atts = shortcode_atts( | |
array( | |
'field' => '', | |
), | |
$atts, | |
'zf-acf-options-field' | |
); |
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
// Grab Testimonial Row 1 Output | |
function zf_get_testimonial_row_one_posts($settings, $query){ | |
// Only Testimonial Row 1 | |
if($settings->id == 'zf-praise-row-module-1') { | |
// Define Global Array | |
$GLOBALS['praise_to_exclude'] = []; | |
// Grab Testimonal Row 1 Posts |
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
/* | |
For use with "Code" step, using JavaScript, | |
useful for renaming values that come across from triggers. | |
inputData is the Object Zapier creates for the passed values. | |
*/ | |
// Translation Table for Looking up | |
const translationTable = { | |
// "Source" : "Translation" | |
"fog-score{1}" : "Rarely", |
NewerOlder