Giovanni Invernizzi
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Possible phishing attemptThank you!
Forum: Plugins
In reply to: [Yoast SEO] Setting page – error on saveHello, I did that by looking at other issues but the problem persisted. So I exported YOAST settings, manually changed what I need and imported settings back.
It worked to change settings, but the issue is still there.Forum: Plugins
In reply to: [Yoast SEO] Setting page – error on saveHello,
I’m able to complete point 1, but filling in the fields at?WordPress > Yoast SEO > Settings > Site Representation gives me the error i reported above.Forum: Plugins
In reply to: [Yoast SEO] Setting page – error on saveHello Mushirt, thanks for your reply!
The path to the page is
/wp-admin/admin.php?page=wpseo_page_settings#/site-features
changing any of the settings brings up a popup with this message (note that “wpseo_titles.social-image-id-eventi must be anumber
” is repeated for every post type and each post type has a link):Oh no! It seems your form contains invalid data. Please review the following fields:
- Eventi – Social image:?wpseo_titles.social-image-id-eventi must be a
number
type, but the final value was:NaN
(cast from the valuefalse
).
If I click on any of the links in the popup it brings me to this page:
/wp-admin/admin.php?page=wpseo_page_settings#/post-type/eventi#button-wpseo_titles-social-image-eventi-previewFrom this page I get this message:
Something went wrong. An unexpected error occurred.
We’re very sorry, but it seems like the following error has interrupted our application:
e.match is not a function
Unfortunately, this means that any unsaved changes in this section will be lost. You can try and refresh this page to resolve the problem. If this error still occurs, please get in touch with our support team, and we’ll get you all the help you need!Refresh this pageBut even if i refresh the issue persists.
Looking at console in my browser i get this error message:
TypeError: e.match is not a function
at new-settings.js?ver=6d3bf2071ac3b5dfb66f:1:101784
at Object.useMemo (react-dom.min.js?ver=18.3.1:2:66621)
at t.useMemo (react.min.js?ver=18.3.1:2:6087)
at Js (new-settings.js?ver=6d3bf2071ac3b5dfb66f:1:101730)
at hu (react-dom.min.js?ver=18.3.1:2:60308)
at xi (react-dom.min.js?ver=18.3.1:2:119597)
at bs (react-dom.min.js?ver=18.3.1:2:108749)
at vs (react-dom.min.js?ver=18.3.1:2:108677)
at gs (react-dom.min.js?ver=18.3.1:2:108540)Plugin requirements are met, Yoast version is 23.3, WordPress version is 6.6.1
Forum: Plugins
In reply to: [Contact Form 7] Required file filed not getting errors.Ok, got it: it’s like required file fields are checked if all other required fields have no errors.
Thanks for explaining to me me and for your time!Ciao from Italy!
- This reply was modified 4 months ago by Giovanni Invernizzi.
Forum: Plugins
In reply to: [Contact Form 7] Required file filed not getting errors.Sure, here’s a link to a local WordPress, let me know if you are be able to access it:
https://guarded-route.localsite.io/hello-world/
username: theatre
password: elatedForum: Plugins
In reply to: [WP Armour - Honeypot Anti Spam] Accessibility issue with honeypot / 2I assumed that was the reason, thanks for the explanation!
Forum: Reviews
In reply to: [Query Monitor - The developer tools panel for WordPress] Must have pluginHello @advertisingweb ,
I guess you replied to the wrong topic: Query Monitor does not manipulate the content of any page, it simply analyzes resource usage and presents a report.`Hi @dougaitken and thanks for your reply. It’s correct, the pagne i mean is https://www.spaziobk.com/prodotti/libri/ – i would like to know the tracking code that ususally your plugin adds to product listing pages in order to replicate the same thing with the code I made. The page you see is made in HTML + PHP as a template page. Specifically what I need is the code in order to see in Analytics which product has benn clicked from https://www.spaziobk.com/prodotti/libri/
Hello,
in a last, desperate attempt i deactivated plugin, deleted it and then re-installed and now it works fine.
Thanks for your support, I really appreciate your work!Hello Marc,
this is the code for CPT:function cptui_register_my_cpts_prodotto() { /** * Post Type: Prodotti. */ $labels = array( "name" => __( "Prodotti", "custom-post-type-ui" ), "singular_name" => __( "Prodotto", "custom-post-type-ui" ), ); $args = array( "label" => __( "Prodotti", "custom-post-type-ui" ), "labels" => $labels, "description" => "", "public" => true, "publicly_queryable" => true, "show_ui" => true, "delete_with_user" => false, "show_in_rest" => false, "rest_base" => "", "rest_controller_class" => "WP_REST_Posts_Controller", "has_archive" => false, "show_in_menu" => true, "show_in_nav_menus" => true, "exclude_from_search" => false, "capability_type" => "post", "map_meta_cap" => true, "hierarchical" => false, "rewrite" => array( "slug" => "prodotto", "with_front" => true ), "query_var" => true, "supports" => array( "title", "editor", "thumbnail", "author" ), "taxonomies" => array( "cat_prodotto" ), ); register_post_type( "prodotto", $args ); } add_action( 'init', 'cptui_register_my_cpts_prodotto' );
and this is the related taxonomy:
function cptui_register_my_taxes_cat_prodotto() { /** * Taxonomy: Categorie prodotto. */ $labels = array( "name" => __( "Categorie prodotto", "custom-post-type-ui" ), "singular_name" => __( "Categoria prodotto", "custom-post-type-ui" ), ); $args = array( "label" => __( "Categorie prodotto", "custom-post-type-ui" ), "labels" => $labels, "public" => true, "publicly_queryable" => true, "hierarchical" => true, "show_ui" => true, "show_in_menu" => true, "show_in_nav_menus" => true, "query_var" => true, "rewrite" => array( 'slug' => 'cat_prodotto', 'with_front' => true, ), "show_admin_column" => true, "show_in_rest" => false, "rest_base" => "cat_prodotto", "rest_controller_class" => "WP_REST_Terms_Controller", "show_in_quick_edit" => false, ); register_taxonomy( "cat_prodotto", array( "prodotto" ), $args ); } add_action( 'init', 'cptui_register_my_taxes_cat_prodotto' );
If you need more info just ask.
Thankyou, works perfectly! And thanks for the great work you do with your plugin!
Forum: Plugins
In reply to: [Invisible reCaptcha for WordPress] Make fewer http requestsYou can exclude plugin’s scripts from every page except the ones where you need it with something like:
if ( !is_page( array( ‘your-page-slug-1’, ‘your-page-slug-2’ ) ) ) {
wp_deregister_script( ‘google-invisible-recaptcha’ );
}Forum: Plugins
In reply to: [WP Fastest Cache] WP Fastest Cache + Cookie Notice for GDPR—
Forum: Plugins
In reply to: [WP Fastest Cache] WP Fastest Cache + Cookie Notice for GDPRHi Emre, I’ll take a look at that plugin you suggested. Thanks for your help and for the great job you are doing with WP Fastest Cache.
- Eventi – Social image:?wpseo_titles.social-image-id-eventi must be a