WP Native
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Adding additional permanent field in add product form.Hello @buyreplacements,
You can use plugin like “Advanced Product Fields” to add additional fields to product form.
Hope this helps!
Naz.Forum: Plugins
In reply to: [WooCommerce] WooCommerce – Grouping simple productsHello @theszafran,
I understand that, the goal is to show each sizes as a separate product. In this case i’d still suggest you to keep the sizes as one variable product. Instead you can use plugin like “Variations as Single Products for WooCommerce” as the name suggest, this will list all your variations as it’s own product yet keeping them as a variable product in the backend.
Cheers!
Naz.Forum: Plugins
In reply to: [WooCommerce] Critical error occasional, why?Forum: Fixing WordPress
In reply to: Account and CSS problemsHi @leroytuttle,
1. Are you using plugin like “Jetpack”?. You can change the admin email id by clicking on the profile (Located at the top right corner on your screen, see the image here) and navigate to contact info where you can change the email id.
2. This might be a plugin conflict. Check your WordPress version, theme, plugins whether they are up to date.
Hope this helps!
Naz.Forum: Plugins
In reply to: [WooCommerce] Searching Solution for Individual and Variety PackageForum: Plugins
In reply to: [WooCommerce] Product categories widget – hide specific categoryHello @martinus09,
This might be difficult to do just with css as the filters are plain links. Instead you could use plugin like this to precisely control what needs to be shown and not.
Cheers
Naz.Forum: Plugins
In reply to: [WooCommerce] Installing woocommerce.6.3.1.zip critical error on this websiteForum: Plugins
In reply to: [WooCommerce] Product categories widget – hide specific categoryHello @martinus09,
Could you provide your site URL Please? So that I can look into this.
Cheers
Naz.Forum: Plugins
In reply to: [WooCommerce] ERR_TOO_MANY_REDIRECTSHello @periodicadventures,
Your theme might be the culprit. Some of the components that related WooCommerce may be outdated/deprecated. Do the following in order to pinpoint the issue.
1.Disable the current theme
2.Download and active the default “Storefront” theme.
3. Activate all the plugins and see if that solves the problem.Cheers
Naz.Forum: Plugins
In reply to: [WooCommerce] Phone number Shortcode in woocommerce?Hello @hadimargo,
Copy the below code and insert in your theme’s functions.php. Alternatively you can use plugin like “Code snippet” in order to add it safely.
The below code add a new phone number field on the WooCommerce registration form. The data will be saved as a billing phone number.
function wooc_extra_register_fields() {?> <p class="form-row form-row-wide"> <input type="text" class="input-text" name="billing_phone" placeholder="Phone number" id="reg_billing_phone" value="<?php esc_attr_e( $_POST['billing_phone'] ); ?>" /> </p> <div class="clear"></div> <?php } add_action( 'woocommerce_register_form_start', 'wooc_extra_register_fields' ); /** * register fields Validating. */ function wooc_validate_extra_register_fields( $username, $email, $validation_errors ) { if ( isset( $_POST['reg_billing_phone'] ) && empty( $_POST['reg_billing_phone'] ) ) { $validation_errors->add( 'reg_billing_phone_error', __( '<strong>Error</strong>: Phone number is required!', 'woocommerce' ) ); } } add_action( 'woocommerce_register_post', 'wooc_validate_extra_register_fields', 10, 3 ); /** * Below code save extra fields. */ function wooc_save_extra_register_fields( $customer_id ) { if ( isset( $_POST['billing_phone'] ) ) { // Phone input filed which is used in WooCommerce update_user_meta( $customer_id, 'billing_phone', sanitize_text_field( $_POST['billing_phone'] ) ); } } add_action( 'woocommerce_created_customer', 'wooc_save_extra_register_fields' );Hope this helps!
Naz.Forum: Plugins
In reply to: [WooCommerce] Unique product thank you emails@alchemywithsoul Yep. I manage a website with 15,000+ consist hundreds of variations. I do use these following tools in my workflow.
1. I can’t stress the importance of uploading the right size images while creating a product. Usually 800x800px, You can easily figure out that by navigating to Appearance > Customize > Woocommerce > Product image.
2. Compress the image ahead of uploading to the site by using “Squoosh” which does a pretty good job at reducing the size & resolution etc.
3. I do use “Smush” on site in order to further compress it.
Cheers!
Naz.Forum: Plugins
In reply to: [WooCommerce] Change button styleHello @benorange,
It’s kind of hard to look into this problem without the site link. Appreciate if you could share the site url.
Naz.
Forum: Plugins
In reply to: [WooCommerce] Breadcrumbs in Woocommerce with Elementor ProHello @000x2a,
On your admin dashboard, navigate to Settings > Permalinks and make sure to do the following as shown in the image on the link.
Naz.
Hello @alchemywithsoul,
If I understood correctly, You want to delete the products( of course, images are associated/assigned to products) that are already sold on your site. And you wanted retain the product thumbnail in the order details so that you can identify the item.
1. This may not be possible since images are associated with a product. Therefore, it will be deleted when the product gets deleted.
2. It’s completely ok to keep the sold out products on your site. it won’t slowdown your site unless if you have thousands of products so on.
3. Optionally you can install plugin like “Smush” which compress/optimize all of your images to save alot of space.
Hope this helps!
Naz.