chiarajolly
Forum Replies Created
-
Dear @alexandrubodea,
could you please tell me if this is something that will fix in an easy an fast way?
I need to make the website ready this week and I would like to know If i have to rebuild all from the beginning without WCK (hope I haven’t!).
Many thanks,
Chiara
Sure, this is my code.
<?php /** * Plugin Name: Custom Post Types Plugin * Description: This is a plugin to create <strong>Custom Post Types</strong>. * Author: METID - Politecnico di Milano * Author URI: https://www.metid.polimi.it * Version: 1 */ add_action('init', 'custom-post-types_plugin_setup'); /* ------------------------------------------------------------------------- * * CUSTOM POST TYPE custom-post-types /* ------------------------------------------------------------------------- */ add_action('init', 'create_custom_post_types'); function create_custom_post_types() { register_post_type('series', array( $labels = array( 'name' => __('Serie' , 'custom-post-types-plugin'), 'singular_name' => __('Serie' , 'custom-post-types-plugin'), 'add_new' => __('Aggiungi serie', 'custom-post-types-plugin'), 'add_new_item' => __('Aggiungi nuova serie' , 'custom-post-types-plugin'), 'edit_item' => __('Modifica serie', 'custom-post-types-plugin'), 'new_item' => __('Nuova serie', 'custom-post-types-plugin'), 'all_items' => __('Tutte le serie', 'custom-post-types-plugin'), 'view_item' => __('Vedi serie' , 'custom-post-types-plugin'), 'search_items' => __('Cerca serie' , 'custom-post-types-plugin'), 'not_found' => __('Nessuna serie trovata', 'custom-post-types-plugin'), 'not_found_in_trash' => __('Nessuna serie nel cestino', 'custom-post-types-plugin'), ), 'labels' => $labels, 'public' => true, 'rewrite' => array('slug' => 'series'), 'has_archive' => false, 'hierarchical' => true, 'menu_position' => 5, 'menu_icon' => 'dashicons-align-pull-right', 'show_in_rest' => true, 'supports' => array( 'title', 'editor', 'thumbnail', 'custom-fields', 'page-attributes', 'revisions' ) ) ); } ?>
Hello, with the Classic Editor plugin I can also see the WP globus options.
It should work also with Gutemberg editor. In the editor of standard pages and posts, it works also with that.
There is also a setting where you specify which types of posts use block editor: /wp-admin/admin.php?page=wpglobus_options&tab=compatibility
Yes, it is version 2.3.6.
Forum: Plugins
In reply to: [Complianz - GDPR/CCPA Cookie Consent] Complianz banner + Burst statisticsPerfect, I selected “no” and the statystics section disappearend from the banner.
But in my opinion you should put an option for Burst statystic ??Forum: Plugins
In reply to: [Complianz - GDPR/CCPA Cookie Consent] Complianz banner + Burst statisticsThank you Aert.
So, if I
-don’t refer to Spain or Germany
-don’t want to use the cookieless trackingCould I hide the “statystic” cookie checkbox from my banner? Or should I set it as always active?
Thank you for your answer. With the previous version it works again.
Hope the issue will be detected!Forum: Plugins
In reply to: [Yoast SEO] Version 17 breaks Gutenberg editorOk I need to explain better: now I cleaned also my browser cache and it works from my computer. I am in doubt as regards the client side (he may not be able to delete navigation data…)
Thank you for your reply.
I mean that I see no way to control how the CSV is compiled.There is a way to access the CSV without logging in WordPress, so that some external automated service could reach it?
Thank you, I did it.
It is strange because I can see all the form labels in the string table, but not the dropdown options.Nevermind, I was confused because on the first page this variable is unset and not 1.
It works, thank you.Hello, I guess I cannot use this outside EM_Event class, right?
It seems to return empty if placed into a php template.Could you please give me an usage example?
- This reply was modified 4 years, 10 months ago by chiarajolly.