dgirona
Forum Replies Created
-
Forum: Plugins
In reply to: [Stock Manager for WooCommerce] Loading failedSolved! thanks : )
Forum: Plugins
In reply to: [Stock Manager for WooCommerce] “Loading failed”Hello, we have the same error, can you help us?
Forum: Plugins
In reply to: [Stock Manager for WooCommerce] Loading failedI haven’t received any email. Who is the sender or the email? Looking at the forums, I see this is a widespread problem that other people are experiencing, not just me.
Forum: Plugins
In reply to: [Stock Manager for WooCommerce] Loading failedHi, thanks for responding.
Yes, I’ve updated and I’m still having the same problem.
If I look at the JavaScript console, I can see the error:
SyntaxError: JSON.parse: unexpected character at line 1 column 1 of the JSON data wpApiMiddleware.js:97:12Forum: Plugins
In reply to: [Ultimate Addons for Elementor] PHP error Function map_meta_capAH01071: Got error ‘PHP message: PHP Notice: Function map_meta_cap was called <strong>incorrectly</strong>. The post type <code>elementor-hf</code> is not registered, so it may not be reliable to check the capability <code>edit_post</code> against a post of that type.
Yeah that’s right. The option to buy without being registered must be active.
Any plugin active.
Theme storefront original from woo.The problem is an advanced opcion of yoast, “Remove unregistered URL parameters”.
If I disable it, the problem disappears in the latest version. That’s why when you roll back to version 20.3, when that option is not there, the problem disappears. You have an error that you should resolve for websites with WooCommerce.
The free module should not have this problem.How can we solve this problem?
Yes, we actually have the guest purchase active. If you are registered or you register, then it will let you pass, but if not, it will not let you pass. Right now in the production environment we have 20.3 and it works fine.
Forum: Plugins
In reply to: [Mail Queue] HTML IssueForce headers HTML:
add_filter( ‘woocommerce_email_headers’, ‘force_html_email_format’, 10, 3 );
function force_html_email_format( $headers, $email_id, $order ) {
if ( $email_id == ‘customer_processing_order’ || $email_id == ‘customer_completed_order’ ) {
$headers .= “Content-Type: text/html\r\n”; } return $headers;
}
}- This reply was modified 3 years, 1 month ago by dgirona.
Forum: Plugins
In reply to: [Locatoraid Store Locator] Url’s trackingOk, but this field has a character limit and the url is cut off. Not all the parameters will fit.
my solution has been to roll back the installed version of the plugin where this problem is not : (
To solve the problem I had to apply a css fix.
.elementor.elementor-8.elementor-location-header{
overflow-x: clip !important;
}If you remove this fix you will see the problem.
Forum: Plugins
In reply to: [Custom Post Type UI] dynamic tax from another custom post type content// insert bancos cpt into tax banco_prestamos
add_action( ‘publish_bancos’, ‘add_banco_term’ );
function add_banco_term( $post_ID ) {
$post = get_post( $post_ID ); // get post object
wp_insert_term( $post->post_title, ‘banco_prestamos’ );
}// delete tax banco_prestamos when delete cpt bancos
add_action( ‘wp_trash_post’, ‘action_delete_taxonomy’ );
function action_delete_taxonomy( $post_ID ) {$taxo = get_the_title($post_ID);
$tipo_post = get_post_type( $post_ID );if ( $tipo_post == “bancos” ){
// prestamos
$terms = get_terms(‘banco_prestamos’, array( ‘hide_empty’ => false ) );
foreach ( $terms as $term ) {
if ( $term->name == $taxo ) {
$banco_cat_id = intval( $term->term_id );
wp_delete_term( $banco_cat_id, ‘banco_prestamos’ );
}
}
}
return;
}¿update?