Untitled Snippet

function cwpai_parse_and_add_attributes( $atts ) { $atts = shortcode_atts( array( ‘entry_id’ => 0, ), $atts, ‘cwpai_parse_words’ ); if (empty($atts[‘entry_id’])) { return ”; } $entry = FrmEntry::getOne($atts[‘entry_id’]); if (!$entry) { return ”; } $user_input = $entry->metas[‘user_input’]; $user_input = strip_tags($user_input); $words = array_map(‘trim’,…Continue reading

Search and replace text strings

function replace_multiple_texts_on_the_fly($content) { // Array of text pairs to find and replace $text_pairs = array( ‘wp_code_guarantee_days’ => ’60’, ‘wp_code_dagen_garantie’ => ’60’, // Add more pairs as needed ); foreach ($text_pairs as $old_text => $new_text) { // Use str_replace for simple…Continue reading

Display the Last Updated Date

$u_time = get_the_time( ‘U’ ); $u_modified_time = get_the_modified_time( ‘U’ ); // Only display modified date if 24hrs have passed since the post was published. if ( $u_modified_time >= $u_time + 86400 ) { $updated_date = get_the_modified_time( ‘F jS, Y’ );…Continue reading

Display the Last Updated Date

$u_time = get_the_time( ‘U’ ); $u_modified_time = get_the_modified_time( ‘U’ ); // Only display modified date if 24hrs have passed since the post was published. if ( $u_modified_time >= $u_time + 86400 ) { $updated_date = get_the_modified_time( ‘F jS, Y’ );…Continue reading

DJi – CusRev checkout checkato di default e nascosto

add_filter(‘cr_consent_checkbox’, function($output) { $output = str_replace(‘class=”cr-customer-consent”‘, ‘class=”cr-customer-consent” style=”display:none;”‘, $output); $output = str_replace(‘id=”cr_customer_consent”‘, ‘id=”cr_customer_consent” checked=”checked”‘, $output); return $output; });Continue reading

Rimuovere prodotti Out Of Stock dal cross sell in carrello

add_filter( ‘woocommerce_cart_crosssell_ids’, function( $cross_sells, $cart ) { $filtered_cross_sells = array(); foreach ($cross_sells as $product_id) { $product = wc_get_product($product_id); if (!$product->is_in_stock()) { continue; } $filtered_cross_sells[] = $product_id; } return $filtered_cross_sells; }, 10, 2 );Continue reading