studio1337
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: No option available to enable custom fieldsI figured out where the issue lies. It’s with Advanced Custom Fields. I didn’t think it was theme-related, but I didn’t think ACF would be the cause either.
I’ve been using ACF for ~10 years and I’ve never seen it override this option, on classic or Gutenberg WP (we have lifetime dev license – all the pro features and whatnot – never had this issue). I certainly didn’t add the setting that removes custom fields from post scope. So this was unexpected. I will check with ACF support.
If anyone sees a similar issue, disable ACF. If the custom fields option comes back, contact their support I guess.
Forum: Fixing WordPress
In reply to: No option available to enable custom fieldsYes – they both use Divi as the parent theme. The install is a copy of a standardized child theme we created, and this is the only time I’ve ever seen this issue. It’s been like this since we first created the account/install. None of the functions or shortcodes I’m creating are a factor – the issue was there before I started programming any of them.
Forum: Fixing WordPress
In reply to: Admin toolbar missing for one user – profile settings are correctIt turns out it was a plug-in issue – go figure. I the site uses Ultimate Member, and that’s where I set up the new ‘admin-lite’ user role. I didn’t see that the plug-in checks the “Force hiding admin bar in frontend” option for you by default when you set up roles. I missed it, and ended up on this wild goose chase. One click and it’s now solved.
Forum: Fixing WordPress
In reply to: Admin toolbar missing for one user – profile settings are correctHi Nithin,
Thank you so much for the advice. I will check the wp_capabilities record against other users and see if there’s something amiss. I suspect you’re correct, and the best course of action will be to create a new login and assign content from the old profile to the new one.
Thank you for your response. I’m not sure how the instructions correspond with the UI (I see Question/Answer sets – 236 total), but I exported and opened the JSON file, and I see each message as its own entry in the array, and each one is set up just like this:
{
“messages”: [
{
“role”: “user”,
“content”: “What is XXXXX?”
},
{
“role”: “assistant”,
“content”: “XXXXX is a (followed by definition).”
}
]
},There’s no system role showing in the file, and all messages are in the identical format above, the first three and all following. Did I miss a step in the setup somewhere? I’ve been using older documentation to get things set up apparently.
Forum: Developing with WordPress
In reply to: ChatGPT Chatbot: looking for recommendations@joa-kim Thank you very much for the recommendation. At a glance, it looks like it checks a lot of our boxes, if not all of them. I’ll give this a try!
Hi Arnaud – I think you meant to post a link to the general contact page in your last reply 🙂 I found the “complete a form” button when I visited that page, and I sent a request to your attention. No rush, and thank you for taking the time to review this. I’ll mark this resolved here, since the plug-in is already fixed from that previous update.
Hi Arnaud – I wish I could, but it appears support isn’t available for folks using the free version. I’m never opposed to paying for good development and support, but ultimately it’s up to the client to decide if it’s needed, and it’s going to be a hard sell asking them to buy the plug-in to get support on an issue the free version created. Is there another way to reach you, or do they need to purchase the premium version in order to get things fixed?
Hello Arnaud – yes, they are using the latest version of the plug-in. We update plug-ins daily (sometimes multiple times per day), but would a new version of plug-in fix the titles that were altered when the faulty version was first released? Is there any way to get those titles back without digging through 8 years of articles and fixing them manually?
Great news Sanjeev – thanks for the update. I’ll let our client know, and we’ll keep an eye out for the next update.
Forum: Fixing WordPress
In reply to: WP 5.5 – Adding/Editing Tags No Longer PossibleWhat a great tool – that’s the first time I’ve used it, and it works as advertised 🙂
It appears the issue is with Schema and Structured Data For WP – https://wordpress.org/plugins/schema-and-structured-data-for-wp/ . I’ll work with their support to figure out the problem.
Thanks for your help!
- This reply was modified 5 years, 8 months ago by studio1337. Reason: Named the wrong plug-in
Hi Priscilla,
Thank you very much for getting back to me.
1. It is network activated – every site uses it.
2. The subsite address is the correct TLD (as seen in this topic when you’re logged in).
3. I just tried this, and it appears to have worked! I don’t suppose there’s a way to hit the reset on all sites across the network at once? Or would we need to log into each one and reset them individually? It’s not a HUGE problem if needed, just somewhat tedious; if it’s possible to run network-wide, that would be a nice bonus.Forum: Plugins
In reply to: [Disable Gutenberg] Can’t Leave Gutenberg Active on Custom Post TypesHi Jeff,
Here’s what I did. I switched the theme to TwentyTwenty and turned off all plug-ins with the exception of Disable Gutenberg. Then I added the CPT markup and checked settings. DG is turned off for posts and recipes. Posts are showing Gutenberg as expected, but recipes is still showing the classic editor. Is there a custom post type setting that needs to be in place in order for Gutenberg to interact with it properly?
Here’s the code I inserted – let’s try marking it up properly this time 🙂
add_action( 'init', 'create_custom_taxonomies', 0 ); function create_custom_taxonomies() { // RECIPES $labels = array( 'name' => _x( 'Recipe Categories', 'taxonomy general name' ), 'singular_name' => _x( 'Recipe Category', 'taxonomy singular name' ), 'search_items' => __( 'Search Recipe Categories' ), 'all_items' => __( 'All Recipe Categories' ), 'parent_item' => __( 'Parent Recipe Category' ), 'parent_item_colon' => __( 'Parent Recipe Category:' ), 'edit_item' => __( 'Edit Recipe Category' ), 'update_item' => __( 'Update Recipe Category' ), 'add_new_item' => __( 'Add New Recipe Category' ), 'new_item_name' => __( 'New Recipe Category Name' ), 'menu_name' => __( 'Recipe Category' ), ); $args = array( 'public' => true, 'hierarchical' => true, 'labels' => $labels, 'show_ui' => true, 'show_admin_column' => true, 'query_var' => true, ); register_taxonomy( 'recipe-categories', array( 'recipes' ), $args ); } add_action( 'init', 'create_post_type' ); function create_post_type() { // REGISTER NEW POST TYPE: RECIPRE POSTS register_post_type( 'recipes', array( 'labels' => array( 'name' => __( 'Recipe Posts' ), 'singular_name' => __( 'Recipe Post' ) ), 'public' => true, 'show_ui' => true, 'has_archive' => true, 'exclude_from_search' => false, ) ); }Thanks again for your help!
Forum: Plugins
In reply to: [Disable Gutenberg] Can’t Leave Gutenberg Active on Custom Post TypesThat makes sense. I will look for a conflict and let you know what I find.
Forum: Plugins
In reply to: [Disable Gutenberg] Can’t Leave Gutenberg Active on Custom Post TypesSorry – I botched the markdown. My head was in shortcodes, and I used BBCode. I thought I would be able to edit my post, but apparently only the first post can be edited for a limited time.