Carlos M
Forum Replies Created
-
Forum: Plugins
In reply to: [YITH WooCommerce Subscription] Question regarding hooksHi @nookyyy,
If your question is whether we have hooks/documentation for developers, unfortunately we don’t, sorry.Forum: Plugins
In reply to: [YITH Pre-Order for WooCommerce] Pre-Order Customers AddressHi @aaron19888,
I’m sorry but I couldn’t understand your question. Could you rephrase it?
The plugin doesn’t include any specific support for addresses, what do you mean exactly?Hi @roshnii,
This support forum is exclusively for the Free version of the plugin.
Please submit a ticket in the support area from yithemes.com.Hi @fethi78200,
You are using the commercial version of YITH Request a Quote for WooCommerce.
This support forum is exclusively for the Free version of the plugin.
Please submit a ticket in the support area from yithemes.com.Forum: Plugins
In reply to: [YITH Request a Quote for WooCommerce] Upload functionality in formHi @meerageorge123,
Unfortunately, the plugin doesn’t include such a feature.Hi @graphicdetail,
Yes, this support forum is exclusively for the free version.Hi @cjmora,
Thank you. We have included a fix that will be available in the next release.Hi @dabesa,
You can make use of the stock management feature from WooCommerce.
Enable stock management and set the stock levels to 20 units, that should be enough.
As explained, the Pre-Order plugin doesn’t manage it, this is a WooCommerce feature.Forum: Plugins
In reply to: [YITH WooCommerce Catalog Mode] Error at class-yith-woocommerce-catalog-modeHi @and_or,
You need to update the plugin’s general settings (YITH -> Catalog Mode -> Settings).
If the problem persists, add temporarily this code to thefunctions.phpfile of your active theme:add_filter( 'ywctm_get_vendor_option', 'ywctm_fix' );
function ywctm_fix() {
return array( 'action' => 'hide', 'where' => 'all', 'items' => 'all' );
}Then, update the plugin’s general settings and remove the previous code.
Forum: Plugins
In reply to: [YITH Request a Quote for WooCommerce] Adding categoryHi @enricobt,
Although you’re editing therequest-quote-view.phptemplate, you’re actually trying to get the description of a term (product category). This is related to WordPress and WooCommerce, not specific to Request a Quote. Please use the support forums appropriately.
Please noteget_categories()is deprecated. Instead, you should useget_category_ids().
Maybe this adjustment could help:$_product = wc_get_product( $product_id );
$categories = $_product->get_category_ids();
foreach ( $categories as $category_id ) {
$term = get_term_by( 'id', $category_id, 'product_cat' );
echo $term->description;
}Forum: Plugins
In reply to: [YITH Pre-Order for WooCommerce] Query pre-ordersHi @jonnyjaniero,
Yes, ‘_order_has_preorder’ with the value ‘yes’ is the indicated one to retrieve orders that include pre-order among its order items.Hi @dabesa,
Yes, the stock management isn’t affected on a product by the fact of being a pre-order product.
You can set the stock status you prefer (in-stock, out-of-stock, backorders).Forum: Plugins
In reply to: [YITH Pre-Order for WooCommerce] Pre-orders are deactivating on their own.Hi @marketing47,
You are using the commercial version of YITH Pre-Order for WooCommerce.
Please, submit a ticket at yithemes.com using your license.Hi @timmiieehh,
I’m sorry, the plugin offers the possibility to insert the button wherever you want thanks to the shortcode. In the case of Avada, maybe there is some kind of incompatibility.I understand you’re doing this to prevent clicking the button when no variant is selected. However, other quote plugin developers have solved this by displaying a blocking icon when hovering over the button. Is there a way to eliminate the delay in the button’s appearance?
Thank you for your feedback, I will inform the plugin developers to take it into consideration.Hi @graphicdetail,
Can you share the full error code? So we can try to understand what happens.
Thank you.