Carlos M
Forum Replies Created
-
Forum: Plugins
In reply to: [YITH Pre-Order for WooCommerce] Plugin creating PHP errorHi @webzang,
Indeed, the problem is not from the Pre-Order plugin, but a custom code added to that template that uses functions of the Pre-Order plugin incorrectly.
To fix the issue, replace this part:foreach( $available_variations as $i => $variation ) {
$id = $variation['variation_id'];
if ( class_exists( 'YITH_Pre_Order_Product' ) ){
$pre_order = new YITH_Pre_Order_Product( $id );
if ( $pre_order->get_pre_order_status() == 'yes') {
$available_variations[$i]['availability_html'] = 'Pre-order';
}
}
}with this:
if ( class_exists( 'YITH_Pre_Order_Utils' ) ) {
foreach( $available_variations as $i => $variation ) {
if ( $variation instanceof WC_Product && YITH_Pre_Order_Utils::is_pre_order_active( $variation ) ) {
$available_variations[$i]['availability_html'] = 'Pre-order';
}
}
}Forum: Plugins
In reply to: [YITH Pre-Order for WooCommerce] Plugin creating PHP errorHi @webzang,
The problem comes from this file from your “raves” theme:wp-content/themes/raves/woocommerce/single-product/add-to-cart/variable.phpMaybe the problem isn’t related to Pre-Order but a bad practice on this template file within your theme.
Is it possible to paste here in your next reply the content of thevariable.phpfile, at least the lines surrounding line 28? Just to understand better what is being called there.Forum: Plugins
In reply to: [YITH WooCommerce Subscription] Admin User Level ErrorHi @remowebdesigns,
It’s hard to know why this error is being produced, there is little information.
Maybe it is a conflict with some other plugin that manages capabilities. I suggest you test by deactivating all plugins except WooCommerce and YITH WooCommerce Subscription. If the problem is gone, then you should activate the plugins back one by one until you find the one that is producing the problem.Forum: Plugins
In reply to: [YITH Request a Quote for WooCommerce] Page LayoutHi @gerd_e,
Topics should pertain to a single issue. Otherwise, other users will not be able to easily find the answers by searching the topics by title.
Also, a good practice is to read previous topics to see if you find an answer to your question.
Your question is already answered on this topic:
https://wordpress.org/support/topic/yith-request-a-quote-free-version-supports-sending-email-to-customer/Forum: Plugins
In reply to: [YITH Request a Quote for WooCommerce] Page LayoutHi @gerd_e,
Thank you. You can fix the style issue with a CSS code like this:.woocommerce.ywraq-wrapper .ywraq-form-table-wrapper.wide {
align-items: normal;
}
.woocommerce.ywraq-wrapper .ywraq-form-table-wrapper.wide .yith-ywraq-mail-form-wrapper {
padding-top: 0;
}Hi @rhhridoy,
I have tested on my local installation and it works. I tested the latest version.
Please make sure you are using the latest version (4.6.0) and you are not using any plugin that might conflict. Check plugins related to coupons or discounts.Hi @webmastertsd,
As explained, YITH Request a Quote for WooCommerce doesn’t include such an email for the customer. This feature is available in the commercial version.Forum: Plugins
In reply to: [YITH WooCommerce Subscription] WordPress caught an errorHi there,
This issue has been resolved in version 4.6.0.Forum: Plugins
In reply to: [YITH Request a Quote for WooCommerce] Page LayoutHi @gerd_e,
Unfortunately, I cannot help you if I cannot see the website and the HTML code.
Please note this is more of a problem with the Impreza theme due to its CSS styles.Hi @webmastertsd,
YITH Request a Quote for WooCommerce doesn’t include such an email for the customer.
It includes only one email (for the admin), and it is called “Email to request a quote”.
It should be located in the following URL:/wp-admin/admin.php?page=wc-settings&tab=email§ion=yith_ywraq_send_email_request_quote
Please make sure you are using YITH Request a Quote for WooCommerce 2.40.0 (latest version).Hi @elito-1,
Which error is? Check in the logs for any error and let us know.
https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/Forum: Plugins
In reply to: [YITH Request a Quote for WooCommerce] Page LayoutHi @gerd_e,
Can you send us the website URL? Thank you.Forum: Plugins
In reply to: [YITH WooCommerce Subscription] Change renewal reminder dateHi @anh2phat,
You are talking about the commercial version of the plugin. This Support Forum is exclusively for the free version.
To get assistance, please submit a support ticket at yithemes.com. Thank you.Forum: Plugins
In reply to: [YITH PayPal Express Checkout for WooCommerce] Error code 10426Hi @seanlemon24,
Those products on the failed order, are they regular products? Also, are you able to replicate the issue?
If so, I suggest you deactivate all plugins except WooCommerce and YITH PayPal Express Checkout for WooCommerce. In this way, you can rule out if it’s a plugin conflict.Hi @pasamsin,
In the shop page, there is no indication on variable products that any of their variations is a pre-order product. I’m sorry, but the plugin doesn’t include such a feature.