Woo commerce fix errors (size, GST, shape) and add options (free delivery after ..)

Here are my dependant woo commerce ver. 3.1.0 plugins to shed some light:

Thank you

Hello There,

Thanks for writing in!

You have a quite long request.

1.) You will need to set up free shipping feature. To know more about it, please check out the documentation here: https://docs.woocommerce.com/document/free-shipping/

2.) In your shop page, you opted to display Product categories. You can check this settings in WooCoomerce > Settings > Products > Display : http://prntscr.com/hn9hud

And you have set to display 4 columns in your shop page. If you want to center it, you will need to change the number of columns which you can do it in X > Launch > Options > WooCommerce > Shop > Layout Columns.

3.) To remove the product count in the Shop categories, please check this out:
http://www.remicorson.com/woocommerce-remove-category-products-count/

4.) You picture itself is not center. You will have to edit it in Photoshop or any image ediitor and make sure that the pizza is centered.

5.) To display “Add to Order”, please check this out:

If you want the font size to become smaller, please add the following CSS code in the X > Launch > Theme Options > Global CSS (http://prntscr.com/evui3r)

.woocommerce li.product .entry-header h3 {
  font-size: 18px;
}

feel free to change the font size if needed.

6.) To make the space bigger, please add the following CSS code in the X > Launch > Theme Options > Global CSS (http://prntscr.com/evui3r)

.woocommerce-message.x-alert.x-alert-info.x-alert-block {
    padding-top: 25px;
    padding-bottom: 25px;
}

7.) By default, product attribute such as size, gst and shape will not be displayed. To display it, you will need custom code. Please check out this link:


https://isabelcastillo.com/show-woocommerce-product-attributes-on-cart-page

8.) “Billing & Shipping” will only display if you opted to make the Billing Address be the same as the Shipping Address. You can check this setting in WooCommerce > Settings > Shipping > Shipping Options.

9.) Are you using a plugin for this? Would you mind sharing the plugin name so that we can test it?

Hope this helps.

WoW you guys are amazing!
I will let you know if i have any further questions after reviewing and doing :smirk:
Thanks for such a prompt reply on such a long request :grinning:

Thanks!

I would like for this to auto select to free shipping if possible instead of offering an option? Thank you!

This did not work after inserting into functions.php
is there another way through css?

Insert the following into your functions.php Thumbs Up X!!

<?php add_filter( 'woocommerce_product_add_to_cart_text' , 'custom_woocommerce_product_add_to_cart_text' ); /** * custom_woocommerce_template_loop_add_to_cart */ function custom_woocommerce_product_add_to_cart_text() { global $product; $product_type = $product->product_type; switch ( $product_type ) { case 'external': return __( 'Buy product', 'woocommerce' ); break; case 'grouped': return __( 'View products', 'woocommerce' ); break; case 'simple': return __( 'Add to cart', 'woocommerce' ); break; case 'variable': return __( 'Select options', 'woocommerce' ); break; default: return __( 'Read more', 'woocommerce' ); } }

Thank you haha it keeps wanting to post ten characters dancing so there we are

I cannot locate the global CSS only the content CSS when editing the page in cornerstone
and under X options only has additional CSS not global CSS

Please Advise

Hi,

  1. Drag Free shipping method to top(first) to make it default .

https://www.screencast.com/t/oSLTMr5dj

  1. To remove count, you may add this in Theme Options > CSS
.woocommerce-loop-category__title .count {
     display:none;
}
  1. That is the global css

In the future we kindly request that you open a separate topic for each issue.

Thanks

1 = Thank you this worked perfect!
Definitely will keep that in mind next time appreciate it!

ok i get it additional css is the same as global css thank you!

However it still did not remove the counter…pls help! or reflect the padding code

After further review realized what stumped me was that i don’t have the global CSS working on my child theme
Please have a look at this i will be sending you the login info

The option for resizing the image for the pages is not working under woo comerce display also

Also please have a look at some of my other questions i asked previously when time permits it is utmost appreciated!

Hi,

We need admin login to be able to check on this.

Thanks

Hi,

We’'ll wait for your admin login so we can check.

Thanks

Ok i switched the role to administrator

Hello There,

You have a modified WordPress dashboard. X > Overview is removed also. You may access the X options from here: Appearance > Theme Options

I am not sure if you have a multi site set up or some of your WordPress sections were removed such as Posts. Maybe this is why X > Overview is nowhere to be found.

By the way, I can see that you are using an older version of X 4.6.4. You may update to the latest and more stable version X 5.2.5. You should be able to update it if you have DashBoard > Updates. You may need to manually update the theme. Please check how to manually update the theme from this knowledge base article:

Hope this helps.

Thank you yess it did the trick.

I followed the following thread instructions:

I did it through wordpress and ftp
I changed it to a different theme
then deleted the x theme ( do not delete your x-child folders they will automatically show up once x is back)
Then tried to install the x.zip from new themes upload and got a ini.php error
logged into ftp and dragged the extracted contents into the themes folder and renamed it x
then went back to wordpress dashboard and activated the x theme again and then the x-child theme again
This fixed my missing image size options as well.

Also all the above resolutions worked now.

Thanks again!

On behalf of my colleague, you’re welcome. Cheers! :slight_smile:

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.