cosmoweb
Forum Replies Created
-
Con la nuova versione funziona perfettamente. Grazie.
Salve,
ho disattivato tutti i plugin ad esclusione di:
– WooCommerce
– WooCommerce PDF Invoices Italian Add-onFatal error: Allowed memory size of 536870912 bytes exhausted (tried to allocate 266240 bytes)
ho aumentato il limite massimo di memoria sia nel file wp-config.php
define( 'WP_MEMORY_LIMIT', '512' ); define( 'WP_MAX_MEMORY_LIMIT', '512' );
anche nel pannello di controllo dell’hosting nella sezione PHP ini
impostando a 512MBnulla da fare, ho inviato un ticket all’hosting.
Forum: Plugins
In reply to: [BackWPup – WordPress Backup & Restore Plugin] require: wp-content/db.phpHi,
Yes is only warning, I deactived Query Monitor and now not show warning.
Thanks
Forum: Plugins
In reply to: [WooCommerce] Hide Categories on Shop and Inside pagesHi @meerulz,
try this code in functions.php in child theme changing uncategorized with your vategory slug name .
//hide determinate category add_filter( 'get_terms', 'cosmoweb_exclude_category', 10, 3 ); function cosmoweb_exclude_category( $terms, $taxonomies, $args ) { $new_terms = array(); // if a product category and on a page if ( in_array( 'product_cat', $taxonomies ) && ! is_admin() && is_page() ) { foreach ( $terms as $key => $term ) { // Enter the name of the category you want to exclude in place of 'uncategorised' if ( ! in_array( $term->slug, array( 'uncategorized' ) ) ) { $new_terms[] = $term; } } $terms = $new_terms; } return $terms; }
Forum: Plugins
In reply to: [WooCommerce] Low stock notification (just once)Hi @orderbot,
you can do it in Inventary.
Forum: Plugins
In reply to: [WooCommerce] Update WC from 3.2.6 it changes products to blog postsHi mpm18,
did you try lasted version?
Version 3.5.1
Forum: Plugins
In reply to: [WooCommerce] Please How to remove pay button after successful paymentHi mohamedtaman,
did you try to test on other theme?
Yiu can use functions “unset” in that page .php
Hi,
I have the same problem, someone have solution?
Forum: Plugins
In reply to: [WooCommerce] Password StrengthHi lapapo,
you can use this snippet code in functions.php in the child theme
//Remove password strength check function iconic_remove_password_strength() { wp_dequeue_script( 'wc-password-strength-meter' ); } add_action( 'wp_print_scripts', 'iconic_remove_password_strength', 10 );
Forum: Plugins
In reply to: [WooCommerce] Breadcrumbs helpHi whysorude,
if you want show breadcrumb use Yoast.
Forum: Plugins
In reply to: [WooCommerce] Header image not shown in emailsHi iteisaburo,
are you sure image exist on your website?
that mistake seem doesn’t exist image, check please.
Forum: Plugins
In reply to: [WooCommerce] Unable to create order.Hi,
what did you do before this problem?
Are you sure transfer files by FTP is correct?
Are you sure trasfer MySQL database is correct?
Forum: Plugins
In reply to: [WooCommerce] Breadcrumbs helpHi whysorude,
try to disable breadcrumbs from Enfold theme and enable only in Yoast and wait when Google refresh results in serp.
Forum: Plugins
In reply to: [WooCommerce] Change text in checkout ‘Order Notes’ sectionHi @sqam2222,
try to use this snippet code in functions.php in child theme:
function md_custom_woocommerce_checkout_fields( $fields ) { $fields['order']['order_comments']['placeholder'] = 'Special notes'; $fields['order']['order_comments']['label'] = 'Add your special note'; return $fields; } add_filter( 'woocommerce_checkout_fields', 'md_custom_woocommerce_checkout_fields' );
Forum: Plugins
In reply to: [WooCommerce] Proceed to Checkout Button Not AppearingHi,
I have the same plugins and the same theme (but previous version) and I don’t have issues.
Whic version abou Vendor do you have?