WP Zone
Forum Replies Created
-
Forum: Plugins
In reply to: [WP and Divi Icons] CRITICAL Uncaught ArgumentCountErrorThank you for reporting this issue. We will release a fix shortly.
Forum: Plugins
In reply to: [WP Layouts] I can’t login WP LAYOUTS account after I installed plugin.Hi jerryliu0810, we would like to help you with this issue. Please open support ticket via https://wplayouts.space/contact/ and include in the message email address associated with the WP Layouts account.
Forum: Plugins
In reply to: [WP and Divi Icons] Affecting ImagesI don’t think this issue is related to our plugin. Image URLs and other media assets have absolute HTTP links and it can cause WordPress mixed content warnings. Change image URLs from HTTP to HTTPS.
You can do it manually or use a plugin. We recommend Really Simple SSL that will automatically detect and configure your WordPress site. For this issue you will need to enable “Auto replace mixed content” option.
Please let us know if it helped.
Forum: Plugins
In reply to: [WP and Divi Icons] Affecting ImagesHi Acia, can you send link to site with the issue?
Forum: Plugins
In reply to: [Product Sales Report for WooCommerce] report of a month day by dayHi, this can be done with Product Sales Report Pro. In my example products have more than one category set. Here is how the report would look then:
Report grouped by category and date from previous month with the total number:
Example ReportAnd yearly report grouped by month:
Example ReportForum: Plugins
In reply to: [Potent Donations for WooCommerce] Amount in productHi and thank you!
Yes this is possible, but it depends on the theme you are using.
Try adding following to the functions.php of your theme:
To shop quantity for simple products and donations:
/** * This snippet contains code from the WooCommerce Plugin by Automatic, https://docs.woocommerce.com/document/override-loop-template-and-show-quantities-next-to-add-to-cart-buttons/ , * modified by Divi Space and/or Aspen Grove Studios, August 4th, 2021. * Licensed under the GNU General Public License, no warranty; * Go to https://divi.space/gnu-general-public-license/ for details. */ /** * Enable quantity input in shop loop for simple products and for donations */ add_filter( 'woocommerce_loop_add_to_cart_link', 'ags_inputs_for_woocommerce_loop_add_to_cart_link', 10, 2 ); function ags_inputs_for_woocommerce_loop_add_to_cart_link( $html, $product ) { if ( $product && ( ($product->is_type( 'simple' ) && $product->is_purchasable() && $product->is_in_stock() && ! $product->is_sold_individually()) || $product->is_type( 'donation' ) ) ) { $html = '<form action="' . esc_url( $product->add_to_cart_url() ) . '" class="cart" method="post" enctype="multipart/form-data">'; $html .= woocommerce_quantity_input( array(), $product, false ); $html .= '<button type="submit" class="button alt">' . esc_html( $product->add_to_cart_text() ) . '</button>'; $html .= '</form>'; } return $html; }
OR
to show quantity only for donation products:
/** * This snippet contains code from the WooCommerce Plugin by Automatic, https://docs.woocommerce.com/document/override-loop-template-and-show-quantities-next-to-add-to-cart-buttons/ , * modified by Divi Space and/or Aspen Grove Studios, August 4th, 2021. * Licensed under the GNU General Public License, no warranty; * Go to https://divi.space/gnu-general-public-license/ for details. */ /** * Enable quantity input in shop loop only for donations */ add_filter( 'woocommerce_loop_add_to_cart_link', 'ags_donations_inputs_for_woocommerce_loop_add_to_cart_link', 10, 2 ); function ags_donations_inputs_for_woocommerce_loop_add_to_cart_link( $html, $product ) { if ( $product->is_type( 'donation' ) ) { $html = '<form action="' . esc_url( $product->add_to_cart_url() ) . '" class="cart" method="post" enctype="multipart/form-data">'; $html .= woocommerce_quantity_input( array(), $product, false ); $html .= '<button type="submit" class="button alt">' . esc_html( $product->add_to_cart_text() ) . '</button>'; $html .= '</form>'; } return $html; }
Forum: Plugins
In reply to: [Potent Donations for WooCommerce] Support for WP 5.7.2Hi, yes, Potent Donations for WooCommerce is tested and it’s compatible with WordPress 5.7.2. Thanks for checking out our plugin and enjoy!
Hi! The issue is related to your theme CSS.
If you remove following code, everything should be working. fine:
file: skin-608af4c0a3d77.css?ver=1.7.8
input[type=number] {
padding: 6px 12px;
}Forum: Plugins
In reply to: [Automatically Update Permalinks] Default disable on page!!Hi! Thanks for your message. You should be able to change the page link as many times you want. If there is anything we can help you with, please, let us know.
Hello, We received private message about this issue and looks like it’s resolved now. Please do not hesitate to come back and open a new ticket whenever you have issues or questions about our products.
Forum: Reviews
In reply to: [Potent Donations for WooCommerce] It works right out of the box!Thank you!
Forum: Plugins
In reply to: [Potent Donations for WooCommerce] Autocomplete orderWe released version 1.1.6 that should solve your problem. Cheers!
Forum: Plugins
In reply to: [Potent Donations for WooCommerce] Autocomplete orderHi,
Donation product is by default virtual.
In the next version (that will be released this week) we will allow to change the status of downloadable field. Best!
Forum: Plugins
In reply to: [Product Sales Report for WooCommerce] Compatibility with delivery slotsPlease open a support ticket via [email protected] , you will get a priority support on this issue.
Forum: Plugins
In reply to: [Product Sales Report for WooCommerce] Compatibility with delivery slots