Skip to content

Instantly share code, notes, and snippets.

View pramodjodhani's full-sized avatar
🏠
Working from home

Pramod Jodhani pramodjodhani

🏠
Working from home
  • 07:32 (UTC +05:30)
View GitHub Profile
@pramodjodhani
pramodjodhani / iconic-linked-variations-force-display-attribute-in-cart.php
Last active April 8, 2022 10:37
Iconic Linked Variations - display non-variation attributes to cart.
<?php
/**
* Iconic Linked Variations - Force display non LV attributes in cart.
*
* @param array $item_data
* @param array $cart_item
*
* @return array
*/
function iconic_display_non_lv_attributes_in_cart( $item_data, $cart_item ) {
@pramodjodhani
pramodjodhani / iconic-wds-add-clear-selection-btn.php
Last active May 11, 2022 06:28
Snippet to add a clear selection button to Iconic Delivery Slots
<?php
/**
* Add the clear selection button.
*/
add_action(
'iconic_wds_after_delivery_details_fields',
function() {
echo '<a href="#" class="iconic-wds-clear-selection-btn">Clear selection</a>';
}
);
@pramodjodhani
pramodjodhani / orderable-disable-getting-started-tab.php
Last active July 20, 2022 11:17
Orderable DIsable the Getting started tab.
<?php
/**
* Orderable DIsable the Getting started tab.
*
* @param array $settings Settings array.
*
* @return array
*/
function orderable_disable_getting_started_tab( $settings ) {
unset( $settings['tabs'][0] );
<?php
/**
* Orderable - code snippet to hide the product addon price on mini cart.
*/
add_action(
'init',
function() {
remove_filter( 'woocommerce_get_item_data', array( 'Orderable_Addons_Pro_Fields', 'display_field_value_on_cart' ), 10 );
add_filter(
<?php
// Orderable custom checkout - change shipping title
add_action(
'wp_footer',
function() {
if ( is_checkout() ) {
?>
<script>
orderable_checkout_pro_params.i18n.shipping_title = 'Pickup/ Delivery';
</script>
@pramodjodhani
pramodjodhani / orderable-pro-increase-addons-query-limit.php
Last active September 5, 2022 11:07
Orderable - Fix issue where addons are not working for some product.
<?php
/**
* Orderable - Fix issue where addons are not working for some product.
* This issue happens because by default for performance reasons,
* orderable only loads the first 100 product addons posts (orderable_addons)
* This snippet would force load 500 addons.
*
* @param WP_Query $q Query.
*
* @return void
@pramodjodhani
pramodjodhani / wp-force-perform-plugin-updates.php
Created August 31, 2022 07:25
WordPress force perform plugin updates
<?php
/*
This function check for plugin udpates, if there are any present then
will automatically update the plugins.
*/
function perform_updates() {
require_once ABSPATH . 'wp-admin/includes/class-wp-upgrader.php';
require_once ABSPATH . 'wp-admin/includes/class-wp-upgrader-skin.php';
require_once ABSPATH . 'wp-admin/includes/class-automatic-upgrader-skin.php';
@pramodjodhani
pramodjodhani / shipping-cost-row-checkout.php
Last active March 4, 2024 05:20
Add shipping cost row to the checkout page
<?php
add_action(
'woocommerce_review_order_before_order_total',
function() {
if ( empty( WC()->cart->get_shipping_total() ) ) {
return;
}
echo sprintf( '<tr class="fee orderable-shipping-row"><th>%s</th><td>%s</td></tr>', esc_html__( 'Shipping', 'flux-checkout' ), wc_price( WC()->cart->get_shipping_total() ) );
}
);
@pramodjodhani
pramodjodhani / flux-remove-coupon-form.php
Created September 8, 2022 05:39
Flux checkout - remove coupon form.
<?php
/**
* Flux checkout - remove coupon form.
*
* @return void
*/
function flux_remove_coupon_form() {
remove_action( 'woocommerce_review_order_after_cart_contents', array( 'Iconic_Flux_Sidebar', 'checkout_add_coupon_form' ), 9 );
}
add_action( 'init', 'flux_remove_coupon_form', 20 );
@pramodjodhani
pramodjodhani / functions.php
Created September 12, 2022 06:07
Flux checkout - reposition coupon form.
<?php
/**
* Flux checkout - reposition coupon form.
*
* @return void
*/
function flux_reposition_coupon_form() {
remove_action( 'woocommerce_review_order_after_cart_contents', array( 'Iconic_Flux_Sidebar', 'checkout_add_coupon_form' ), 9 );
add_action( 'woocommerce_review_order_before_payment', array( 'Iconic_Flux_Sidebar', 'checkout_add_coupon_form' ) );
}