WebDesk Solution
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Checkout and cart pages not foundHello @vertdescheele
Please make sure to configure the pages into a WooCommerce setting.
Here are given steps to check and configure pages,
– Go to woocommerce > settings. https://prnt.sc/RstKvlV0H0E7
– Go to Advanced. https://prnt.sc/eAAIB5pEQrdM
Here you can configure or assign the page to the cart and checkout and also make sure that you have an assigned correct page with the correct page id to cart and checkout.
Forum: Plugins
In reply to: [WooCommerce] Double Quantity, One editable one just text?Hello @alkoholy
You can hide this non-editable quantity number by adding just one line CSS. To apply this CSS, follow the below steps.
- Go to Appearance > themes and customize active themes.
- After going to customize, click on Additional CSS
- Click on this: https://prnt.sc/JtB2STbib6FH and put the below CSS
.product-quantity span{ display:none; }After add, please publish the changes: https://prnt.sc/0jm6uB6jRUF-
Also in another way, you can put an above CSS to the theme CSS file.
Forum: Plugins
In reply to: [WooCommerce] Problem overriding product-image.php with child themeHello @debruning
It seems you have overridden the file properly, even though I make sure of a couple of things.
- Make sure you have an override into the active theme.
- Make sure you have put your changes in the override file; otherwise, it will give the same output.
- If all is good, check once in the private browser and clear the cache.
Hope this helps!!
Forum: Plugins
In reply to: [WooCommerce] can’t change the customer emailHello @dollypop93
1. By directly from email templates which you can find here: Go to WooCommerce > Settings > Emails:https://prnt.sc/kHKXsVE2CxpE. Here, you can see all the email templates and edit any of them.
2. Using this method, you can override the email templates, modify the template files, and set the layout you want. For an override, go to the WooCommerce plugin folder, /woocommerce/templates/emails. Copy the emails folder, paste it into your active theme, open the WooCommerce folder, and paste it there; if there is no WooCommerce folder, then create and paste it there. For example, https://prnt.sc/eVRgv9EBXuWV here, you can edit any templates.
Hope this helps!
Forum: Plugins
In reply to: [WooCommerce] view stocks graphicallyHello @alecody
Hi alecody (@alecody
You can show the stock graphically by overriding the woocommerce stock template into the active theme. After then upload your images to the folder or else upload from the admin panel in media and copy the image or graphics path. Follow the below steps to the overriding stock template.1. Go to wp-content/plugins/woocommerce/templates/single-product and copy stock.php
2. Now go to wp-content/themes/{YOUR_ACTIVE_THEME}/woocommerce/single-product/ and paste stock.php here.
3. Enable stock from the product: https://prnt.sc/EXvfnD5wZ9s4
If you didn’t override any woocommerce template in the active theme then please create a directory as mentioned in the above path in the active theme.
In stock.php file, you can set your conditions like,
<?php global $product; $stock = $product->get_stock_quantity(); if($stock > 15){ ?> <img src="{IMG_PATH_GREEN}"/> <?php }else if($stock > 2 && $stock < 15){ ?> <img src="{IMG_PATH_YELLOW}"/> <?php } }else if($stock > 2){ ?> <img src="{IMG_PATH_RED}"/> <?php } ?>You can put the above code in stock.php or other places you want to show on the product page.
Thank You.
Forum: Plugins
In reply to: [WooCommerce] Stop Woocommerce’s style sheet from styling my themeHello @thisnluv
You can completely unlink the unwanted CSS file by using the default WordPress hook. Here is an example of unlinking wc-blocks-style.css from the front side.
function remove_unwanted_css(){ wp_dequeue_style( 'wc-blocks-style' ); } add_action( 'wp_enqueue_scripts', 'remove_unwanted_css', 100 );Put the above code into functions.php at the end of the file of the active theme.
Forum: Plugins
In reply to: [WooCommerce] Your Site is Experiencing a Technical IssueHi @zzlatevv
First, open the FTP or SFTP. Then go to the path below and check whether the wc-order-functions.php file exists or not.
FTP Path:
/home/muuddavo/domain.com/wp-content/plugins/woocommerce/includes/
It is causing the issue because the wc-order-functions.php file is not opening from the wc-core-functions.php file. That is causing other issues. So if the file is not found, please update or download the new WooCommerce plugin and make one test order.
Hope this helps!
Forum: Plugins
In reply to: [WooCommerce] category description woocommerceHello @kuminov
You can display the category description in two ways.
- Modify or edit the category or template file by creating the custom shortcode to pull the dynamic category description. You can use the following code to create a custom shortcode.
- Place the below code in to direct category or template file.
<?php global $post; $args = array( 'taxonomy' => 'product_category' ); $terms = wp_get_post_terms($post->ID, 'product_category', $args); $count = count($terms); if ($count > 0) { foreach ($terms as $term) { echo $term->description; } } ?>After creating a short code, you can put it on a particular listing page to show a category description.
Hello @logicrays
Currently, it is out of the scope of the ACF plugin. Meanwhile, you can add a custom field by customization and using WooCommerce hooks.
Hope this helps!
Forum: Plugins
In reply to: [WooCommerce] WooCommerce Add order link in Processing Order EmailHello @sundas101
WebDesk Solution would like to give you a solution to support you.
You can override email templates to your active theme.
For example https://prnt.sc/A8j3S82lM51R
In the email folder, you can check the email-header.php file; here, you can modify and customize it to put the URL on the order id. https://prnt.sc/0ybutJYX97vJ
You can customize any email templates within this folder, put the links, and set your desired layout.
Hope this helps!
Forum: Plugins
In reply to: [WooCommerce] Woocommerce Email Header too largeHello @forwarddigital
WebDesk Solution would like to give you a solution to support you.
You can change and adjust the logo by editing the email templates in woocommerce.
You can find the email templates from WooCommerce Settings > Email, and you can see the email list:https://prnt.sc/rdGlSaWgnuGT
Also, you can add CSS to reduce the height and width of the logo.