Yes, this is possible! Here’s how you can add the free shipping label to your cart page. You can place the shortcode directly in the template or, preferably, via an action hook. Since this needs to be inside the table, make sure to wrap it in the <tr>
and <td>
HTML tags.
Below is a code snippet that you can add to your child theme’s functions.php
file or by using a plugin like Code Snippets.
add_action('woocommerce_before_cart_contents', function () {
if (shortcode_exists('fsl-progress-bar')) {
$html = '<tr>';
$html .= '<td colspan="6">';
$html .= do_shortcode('[fsl-progress-bar]');
$html .= '</td>';
$html .= '</tr>';
echo $html;
}
});
Here is an example screenshot of the result.
Best regards