Skip to content

Instantly share code, notes, and snippets.

@webtoffee-git
webtoffee-git / functions.php
Created March 24, 2025 11:44
To hide default related products when using related products shortcode – By WebToffee(Related Products - Create Upsells, Cross-sells, and Product Recommendations for WooCommerce)
<?php //Do not copy this line of code
/**
* Hide default related products when [wt-related-products] shortcode is used
*/
function wt_custom_hide_default_related_products() {
if (is_product()) {
global $post;
if ($post && has_shortcode($post->post_content, 'wt-related-products')) {
// Remove WooCommerce's default related products
remove_action('woocommerce_after_single_product_summary', 'woocommerce_output_related_products', 20);
@webtoffee-git
webtoffee-git / functions.php
Last active March 6, 2025 04:33
Retrieve Order ID Using _order_number Metadata via WooCommerce REST API - By WebToffee (Sequential Order Number for WooCommerce)
<?php //Do not copy this line of code
/*You can fetch the Order ID based on the _order_number metadata using WooCommerce's REST API. To do this, use the following API endpoint:
wp-json/wc/v3/orders?meta_key=_order_number&meta_value=123
Simply replace 123 with the desired order number to retrieve the corresponding Order ID.*/
add_filter( 'woocommerce_rest_shop_order_object_query', function( $args, $request ) {
if (! empty($request['meta_key'] ) &&! empty( $request['meta_value'] ) ) {
$args ['meta_query'] = array(
array (
@webtoffee-git
webtoffee-git / functions.php
Created February 28, 2025 10:39
Code snippet to ensure compatibility between the Smart Coupons for WooCommerce, Side Cart WooCommerce, and Mercado Pago plugins - By WebToffee( Smart Coupon For WooCommerce Plugin)
//Do not copy this line of code
/**
* Set block checkout values on page load.
*/
add_action( 'wp_head', function() {
?>
<script>
jQuery(document).ready(function($){
setTimeout(() => wbte_set_block_checkout_values(), 100);
@webtoffee-git
webtoffee-git / functions.php
Last active March 3, 2025 04:30
Code to hide the original price and display only the discounted price for the BOGO gift item(Old bogo) - By WebToffee (Smart Coupon For WooCommerce Plugin)
<?php //Do not copy this line of code
add_filter( 'woocommerce_cart_item_subtotal', 'wbte_sc_ctm_alter_cart_item_price', 1001, 2 );
add_filter( 'woocommerce_cart_item_price', function( $price, $cart_item ) {
return wbte_sc_ctm_alter_cart_item_price( $price, $cart_item, false );
}, 11, 2 );
function wbte_sc_ctm_alter_cart_item_price( $price, $cart_item, $is_total = true )
{
$out = $price;
@webtoffee-git
webtoffee-git / functions.php
Created January 15, 2025 11:21
Special character importing issue (accents) - By WebToffee (Product Import Export for WooCommerce)
<?php //Do not include this line of code
add_filter( 'wt_import_csv_parser_keep_bom', '__return_false' );
@webtoffee-git
webtoffee-git / functions.php
Last active January 8, 2025 08:47
This snippet enables multisites using same stripe account compatible with OAuth authentication - By WebToffee (Stripe payment gateway for WooCommerce pro & basic)
<?php //Do not copy this line of code
add_filter("wt_stripe_same_account_for_all_sites", "__return_true");
@webtoffee-git
webtoffee-git / functions.php
Created December 31, 2024 10:30
To hide the 'i' icon and display the coupon description in the coupon block, to remove the extra space taken by footer pagination when no pagination buttons exist, and to scroll up to the coupon applied message after applying, instead of scrolling down to the coupon form submission section, which is caused by a theme conflict - By WebToffee ( Sm…
<?php //Do not copy this line of code
add_action( 'wp_footer', function(){
?>
<style>
.wt-sc-coupon-description { float: left; background:none; opacity:0.7; line-height:22px; max-width:100%; font-size: 15px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
</style>
<script>
jQuery(document).ready(function($){
@webtoffee-git
webtoffee-git / functions.php
Created December 30, 2024 11:38
Create a new gift card product if there are no existing gift card product in the store - By WebTOffee(WebToffee Gift Cards (Basic))
<?php //Do not copy this line of code
add_action('admin_init', 'wt_gc_add_demo_giftcard_product');
function wt_gc_add_demo_giftcard_product() {
$existing_product = get_posts(array(
'post_type' => 'product',
'post_status' => array('publish', 'draft', 'pending', 'private', 'future', 'trash'),
'meta_query' => array(
'relation' => 'AND',
array(
@webtoffee-git
webtoffee-git / functions.php
Created December 12, 2024 09:21
Alter the product brand in the feed file with respective to the category that the product belongs to - By WebToffee (WooCommerce Product Feed and Sync Manager)
<?php //Do not copy this line of code
add_filter('wt_feed_filter_product_brand', 'wt_feed_filter_product_brand', 10, 2);
function wt_feed_filter_product_brand($brand, $product) {
$category_id = 38; // Replace with your category ID
$pid = $product->get_id();
if ($product->is_type('variation')) {
$pid = $product->get_parent_id();
@webtoffee-git
webtoffee-git / functions.php
Created December 11, 2024 11:14
Code to alter order billing and shipping state code to state names - By WebToffee (Order import export plugin for woocommere)
<?php //Do not copy this line of code
add_filter('hf_alter_csv_order_data', 'hf_alter_csv_order_data_callback', 10, 2);
function hf_alter_csv_order_data_callback($order_export_data, $filter_args ) {
$order_id = $order_export_data['order_id'];
if( $order_id ){
$order = wc_get_order($order_id);
// Get the shipping state code from the order