KeepInMind Dashboard Notes
KeepInMind Dashboard Notes turns your WordPress dashboard into a collaborative workspace. Place notes directly on any admin page – anchored to the exact element you’re talking about. No more Slack messages, emails, or random chats saying “that field on the product edit page” – just click, write your note, and your team sees it right where it matters. Why KeepInMind Dashboard Notes? Whether you’re working in a team or managing a site on your own, the same problem keeps coming up: how to keep track of decisions in the dashboard. Which settings need to change? What does this custom field do? Why is this item configured this way? KeepInMind Dashboard Notes solves this by letting you pin notes directly to dashboard elements – for your team, or for your future self. Here are just a few real-world scenarios where it shines: You temporarily disable a plugin to test whether it’s causing a conflict. Drop a Warning note on the Plugins page so everyone knows it was turned off on purpose – and so you remember to check back in three weeks. You installed a plugin for one very specific reason that isn’t obvious. Pin a note to it explaining why it’s there, so another admin – or future you – doesn’t delete it thinking it’s unused. A client keeps changing a setting that breaks their site. Attach an always-visible Alert banner right next to that toggle: “Do not change – this controls the checkout redirect.” Your developer configured a custom field with a non-obvious format. Leave a note on the field itself explaining what values are expected, so the content team doesn’t have to guess. You’re onboarding a new team member. Instead of writing a separate training doc, scatter helpful Attention banners across the pages they’ll use most – guidance that shows up exactly where they need it. You’re running a staging review before launch. Pin notes to every area that needs a final check, and let your team reply with updates as they work through the list. Key Features Pin Notes Anywhere Click any element on any admin page to leave a note. Your note stays anchored to that exact element – a form field, a menu item, a settings toggle, a table row. When your teammate visits the page, they see the note marker right where it belongs. Rich Text Editing Format your notes with bold text, links, and text colors. The floating toolbar appears on text selection. Three Note Types: Pinned Note – Appears as a marker on the page. Click to open and manage a threaded discussion. Open Note – Always visible inline. Choose a color to highlight the note based on its importance. Sticky Note – Bold square note that sticks in place for highly visible reminders and warnings. @Mention Teammates Type @ to mention any allowed user. They’ll receive an email notification with your note. Autocomplete helps you find the right person fast – just keep typing to filter. Private notes Mark any note as private so only you can see it. Perfect for personal reminders and work-in-progress notes. Threaded Replies Pinned notes support full threaded replies. Keep conversations organized and contextual without cluttering the page. Drag & Relocate Notes can be dragged to a new element if the page layout changes. Grab the drag grip and drop it on the right spot – all replies move with it. Note Scoping On entity pages (posts, terms, users), choose whether your note applies to this specific item or all items of this type. For example, a note on the “Blue T-Shirt” edit page can be scoped just to that product – or to the edit page of all products. Configurable Permissions Control exactly who can add notes and who can edit or delete: Role-based access – Choose which roles can use the plugin (Administrator is always included). User-level access – Whitelist specific users regardless of role. Edit/Delete/Relocate policies – Author only, role hierarchy (strict or relaxed), or everybody.
Top keywords
- note18×2.74%
- notes13×1.98%
- page10×1.52%
- dashboard6×0.91%
- team6×0.91%
- edit5×0.76%
- field5×0.76%
- element4×0.61%
- pin4×0.61%
- re4×0.61%
- text4×0.61%
- admin3×0.46%
Vercel AI Gateway Provider
This plugin allows your WordPress site to connect to the Vercel AI Gateway. It enables your WordPress site to use hundreds of generative AI models from over 40 different providers, to generate text, images, video, and more. The Vercel AI Gateway connector is built on top of WordPress’s built-in AI client and integrates seamlessly with its connector API. This way it unlocks using AI powered plugins on your site. There’s a skill for that! Teach your coding agent about how this provider can be used. npx skills add vercel-labs/ai-gateway-provider-php --skill use-ai-gateway-provider Features Access hundreds of models from over 40 providers with 1 API key Generate text, images, video, and more, including multi-turn conversations Unified billing and observability across your entire AI stack, with text, image, and video models Automatic fallbacks during provider outages so your app stays up even when a model goes down Pay exactly what providers charge with no platform fees Available models are dynamically discovered from the AI Gateway API – you get access to new models as soon as they’re available. Providers and Models The AI Gateway gives you access to more than 100 models from over 40 providers, including: Amazon (Nova models) Anthropic (Claude models) Black Forest Labs (Flux models) Google (Gemini, Imagen, and Veo models) KlingAI (Kling models) MiniMax (MiniMax models) Mistral (Mistral and Devstral models) Moonshot AI (Kimi models) OpenAI (GPT and Dall-E models) Perplexity (Sonar models) xAI (Grok models) Z.ai (GLM models) You can access all of these and many more directly through the AI Gateway, drastically simplifying your setup. For a full list of models, browse the official AI Gateway models list. Usage Once you install the Vercel AI Gateway Provider plugin on your WordPress site, any AI feature that uses the WordPress built-in AI client can use it, typically through other plugins. If you want to write your own plugin that uses it, you can do so through the WordPress built-in AI client as well. Here’s a code example: $result = wp_ai_client_prompt( 'Hello, world!' ) ->using_provider( 'ai_gateway' ) ->generate_text_result(); Note however, that the usage of using_provider will make the prompt only work if the individual WordPress site has the Vercel AI Gateway Provider plugin active and configured. You should therefore only use it if you want to enforce usage of the AI Gateway. Otherwise, for broader ecosystem compatibility, it is recommended that you don’t specify a provider. You can optionally specify model preferences, for example like this: $result = wp_ai_client_prompt( 'Hello, world!' ) ->using_model_preference( 'claude-opus-4.7', 'gemini-3.1-pro-preview', 'gpt-5.4' ) ->generate_text_result(); In this case, the first relevant model encountered on the site will be used, and if the site has the Vercel AI Gateway Provider plugin active and configured, it will rely on the AI Gateway. See the official docs for more examples. External Services This plugin connects to the AI Gateway API for inference. See the Vercel AI Product Terms and the Vercel Privacy Policy. Contributing Contributions to the plugin are welcome in the project’s GitHub repository.