Shipping Address Is Blocked In Woocommerce Using Mr. Barra Theme

So I am developing a simple reservation website for a client and he has provided me with the Mr. Barra theme. But for some reason the “Shipping Address” in the checkout process of Woocommerce is not showing. I’ve tried everything in the theme’s options. Tried everything in the Woocommerce options. I’ve even tried to look at the CSS, Theme files and PHP files. I’ve tried enabling Shipping Zones in Woocommerce. Still not showing.

I’ve installed numerous wp plugins to add additional fields to the checkout page, but nothing works. It’s like the Shipping Address is not written into the Mr. Barra theme at all. I’ve even tried adding code to the functions.php file:

/**

  • Adds Ship to different address
    */

function ship_to_different_address_translation( $translated_text, $text, $domain ) {
switch ( $translated_text ) {
case ‘Deliver to a different address?’ :
$translated_text = __( ‘Ship elsewhere’, ‘woocommerce’ );
break;
}
return $translated_text;
}

add_filter(‘gettext’, ‘ship_to_different_address_translation’, 20, 3);

But nothing is working.

I have several sites that use different themes and the Shipping Address works just fine. Can someone please please help me?