WC_AJAX::get_refreshed_fragments()

Get a refreshed cart fragment, including the mini cart HTML.


Description Description


Source Source

File: includes/class-wc-ajax.php

185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
public static function get_refreshed_fragments() {
    ob_start();
 
    woocommerce_mini_cart();
 
    $mini_cart = ob_get_clean();
 
    $data = array(
        'fragments' => apply_filters(
            'woocommerce_add_to_cart_fragments',
            array(
                'div.widget_shopping_cart_content' => '<div class="widget_shopping_cart_content">' . $mini_cart . '</div>',
            )
        ),
        'cart_hash' => WC()->cart->get_cart_hash(),
    );
 
    wp_send_json( $data );
}


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.