Alexis Salazar
Forum Replies Created
-
Forum: Plugins
In reply to: [YITH WooCommerce Advanced Reviews] Review Names ProblemHello there,
hope you are doing well ??
You can insert a link in the topic pointing to the screenshot you want to add. Could you add it, so we can fully understand the problem and try to help you, please?
Let us know any news, please.
Have a nice day!
Forum: Plugins
In reply to: [YITH WooCommerce Advanced Reviews] Custom Theme IntegrationHello there,
hope you are doing well ??
Currently, we don’t have any way to display the reviews section outside the WooCommerce Tabs, sorry.
Let us know any news, please.
Have a nice day!
Hello there,
hope you are doing well ??
This is not possible with the actual version of the plugin, we are sorry about that.
Have a nice day!
Forum: Plugins
In reply to: [YITH WooCommerce Affiliates] How to change payment email toHello there,
hope you are doing well ??
Currently, only is possible to pay the commissions to the affiliates using PayPal.
Have a nice day!
Hello there,
hope you are doing well ??
To achieve what you need, it’s necessary to override this template from the plugin:
“templates/invoice/invoice-details.php”into your active theme, in the path “your-theme/woocommerce/invoice/invoice-details.php“.
Then, on the file added in the theme, you have to edit the code and replace from line 24 to 34 by this new code:
$product = wc_get_product( $item['product_id'] ); ?> <tr> <td class="column-product"><?php echo $item['name']; ?> </td> <td class="column-quantity"><?php echo ( isset( $item['qty'] ) ) ? esc_html ( $item['qty'] ) : ''; ?></td> <td class="column-price"><?php echo wc_price ( $price_per_unit ); ?></td> <td class="column-total"><?php echo wc_price ( $item["line_subtotal"] ); ?></td> <td class="column-tax"><?php echo wc_price ( $tax ); ?></td> </tr>
and recover and insert where you want the information stored in the product meta from the plugin you are using.
Let us know any news, please.
Have a nice day!
Forum: Plugins
In reply to: [YITH WooCommerce Affiliates] Compatible with Woocommerce BlocksHello there,
hope you are doing well ??
Since WooCommerce Blocks is a feature plugin included in WooCommerce, I think using both plugins should not cause any problem.
Have a nice day!
Hello there,
hope you are doing well ??
You can hide the vendor fields from the Affiliate registration form by adding the following CSS to your theme in Appearance -> Customize -> Additional CSS:
.yith-wcaf-registration-form .register .show_if_seller { display: none !important; }
Please, try it and let me know.
Have a nice day!