duttoluca
Forum Replies Created
-
Forum: Plugins
In reply to: [Better Font Awesome] Better Font Awesome API ErrorSame here, it looks like a temporary connection / routing problem.
From my office and servers I can’t reach the jsDelivr api url, from my home or my mobile phone no problems at all…Forum: Plugins
In reply to: [Disable Gutenberg] Does this plugin work on WP MultiSite Network modeI’m using Disable Gutenberg in a multisite environment, and it works as expected.
Just network-activate it and you’re ready to go.Forum: Plugins
In reply to: [User Role Editor] Capabilities list not showing in UREAs you suggested, the ‘ure_cpt_editor_roles’ filter works as expected.
function filter_ure_custom_roles_add( $roles ) { $roles = array("administrator", "tutto"); return $roles; } add_filter( 'ure_cpt_editor_roles', 'filter_ure_custom_roles_add' );Thank you.
- This reply was modified 6 years, 8 months ago by duttoluca.
Forum: Plugins
In reply to: [User Role Editor] Capabilities list not showing in UREThank you for your quick reply.
Yes, I have the “administrator” role in my site, I didn’t delete it…
I’m in a multisite environment, can it be the problem?Forum: Plugins
In reply to: [User Role Editor] Capabilities list not showing in UREOne more detail, maybe it helps: in another site, with URE version 4.52, the capabilities are correctly added / listed.
In my main site, with URE version 4.52.1, capabilities from custom post type aren’t added anymore.Thanks
Forum: Plugins
In reply to: [WP Statistics – Simple, privacy-friendly Google Analytics alternative] Error+1, same problem everytime I update a plugin
Forum: Plugins
In reply to: [Multisite Post Duplicator] Post meta to ignoreHi!
I guess I have the same issue: I have two pages with a MPD link on different sites, each page has an ACF Post Object field (https://www.advancedcustomfields.com/resources/post-object/) to a post.
When I update the parent page, the acf field value in the child page is lost: I tried to exclude duplication (pages could be linked to different posts) in “Post Meta to ignore?” but it’s not working, always get a blank value in the child field.Thanks!
- This reply was modified 8 years, 8 months ago by duttoluca.