[{"data":1,"prerenderedAt":1911},["ShallowReactive",2],{"blog-posts":3},[4,231,398,551,681,837,967,1120,1281,1429,1592,1751],{"id":5,"date":6,"date_gmt":6,"guid":7,"modified":6,"modified_gmt":6,"slug":9,"status":10,"type":11,"link":12,"title":13,"content":15,"excerpt":18,"author":20,"featured_media":21,"comment_status":22,"ping_status":22,"sticky":17,"template":23,"format":24,"meta":25,"categories":26,"tags":29,"class_list":30,"acf":39,"_links":40,"_embedded":84},13110,"2026-07-08T11:40:52",{"rendered":8},"https://data.uipress.co/?p=13110","introducing-admin-framework-wordpress-admin-rebuilt","publish","post","https://data.uipress.co/introducing-admin-framework-wordpress-admin-rebuilt/",{"rendered":14},"Introducing Admin Framework: WordPress Admin, Rebuilt",{"rendered":16,"protected":17},"\n\u003Cp class=\"wp-block-paragraph\">wp-admin hasn&#8217;t fundamentally changed in over a decade. It works, but it was never designed for the way people actually manage WordPress sites today — teams with different roles, sites running WooCommerce alongside SEO tools alongside caching plugins, agencies managing dozens of installs. Every plugin bolts on its own settings page with its own design language, and the result is a patchwork that gets harder to navigate with every activation.\u003C/p>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">That&#8217;s the problem Admin Framework is built to solve.\u003C/p>\n\n\n\n\u003Ch2 class=\"wp-block-heading\" id=\"what-is-admin-framework\">What is Admin Framework?\u003C/h2>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">Admin Framework is a standalone admin experience that replaces wp-admin entirely. It&#8217;s a Vue 3 single-page application served at its own URL — by default \u003Ccode>/uix-admin/\u003C/code> — with its own navigation, its own layout system, and its own approach to building admin screens.\u003C/p>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">The key difference from everything else in this space: most of the UI isn&#8217;t hard-coded. Screens are \u003Cstrong>declarative JSON view definitions\u003C/strong> — structured documents that describe what a screen should show, where the data comes from, and what actions are available. A built-in render engine takes those definitions and produces the actual interface. List views, detail pages, edit forms, dashboards — they all come from the same engine.\u003C/p>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">This means you can define an entirely new admin screen for a custom post type, a WooCommerce product list, or a plugin&#8217;s settings page without writing a single Vue component. Describe it in JSON, register it, and the engine builds it.\u003C/p>\n\n\n\n\u003Ch2 class=\"wp-block-heading\" id=\"the-three-pillars\">The three pillars\u003C/h2>\n\n\n\n\u003Ch3 class=\"wp-block-heading\" id=\"1-declarative-views\">1. Declarative views\u003C/h3>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">A view definition is a JSON file that describes a screen. It specifies the data source (a WordPress post type, a REST endpoint, an internal provider), the layout (list, detail, form, dashboard), and the nodes that make up the UI — tables, grids, charts, stats cards, tabs, modals, form fields, and about twenty other types.\u003C/p>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">Views support field binding, conditional visibility, formatters, and declarative actions like save, delete, navigate, and REST calls. The render engine handles the rest. You don&#8217;t need to think about state management, API calls, or component rendering — you describe what you want, and the engine produces it.\u003C/p>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">For most use cases, you won&#8217;t even need to write these by hand. Admin Framework includes auto-discovery: it inspects your site&#8217;s REST schema, detects editor modes, maps taxonomy facets, and suggests list, detail, and form screens automatically.\u003C/p>\n\n\n\n\u003Cfigure class=\"wp-block-image size-large\">\u003Cimg decoding=\"async\" width=\"1024\" height=\"672\" src=\"https://data.uipress.co/wp-content/uploads/2026/07/Screenshot-2026-07-08-at-19.39.41-1024x672.png\" alt=\"\" class=\"wp-image-13114\" srcset=\"https://data.uipress.co/wp-content/uploads/2026/07/Screenshot-2026-07-08-at-19.39.41-1024x672.png 1024w, https://data.uipress.co/wp-content/uploads/2026/07/Screenshot-2026-07-08-at-19.39.41-300x197.png 300w, https://data.uipress.co/wp-content/uploads/2026/07/Screenshot-2026-07-08-at-19.39.41-768x504.png 768w, https://data.uipress.co/wp-content/uploads/2026/07/Screenshot-2026-07-08-at-19.39.41-1536x1008.png 1536w, https://data.uipress.co/wp-content/uploads/2026/07/Screenshot-2026-07-08-at-19.39.41-2048x1345.png 2048w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />\u003C/figure>\n\n\n\n\u003Ch3 class=\"wp-block-heading\" id=\"2-the-render-engine\">2. The render engine\u003C/h3>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">The render engine is what makes declarative views work. It takes a JSON view tree and recursively renders it into a full UI using a library of around 25 node types. Tables with sortable columns and pagination. Grids with configurable layouts. Charts and stat cards for dashboards. Tabs, drawers, and modals for complex workflows. Repeater fields and related lists for nested data. Async action buttons that call REST endpoints and handle responses.\u003C/p>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">One engine powers every screen in Admin Framework. The built-in managers — Dashboard, Content, Media, Plugins, Themes, Users, Comments, Updates, Profile, Settings — all run on the same render engine that your custom views use. There&#8217;s no distinction between &#8220;core screens&#8221; and &#8220;custom screens&#8221; at the rendering level.\u003C/p>\n\n\n\n\u003Cfigure class=\"wp-block-image size-large\">\u003Cimg decoding=\"async\" width=\"1024\" height=\"481\" src=\"https://data.uipress.co/wp-content/uploads/2026/07/Screenshot-2026-07-08-at-19.39.17-1024x481.png\" alt=\"\" class=\"wp-image-13112\" srcset=\"https://data.uipress.co/wp-content/uploads/2026/07/Screenshot-2026-07-08-at-19.39.17-1024x481.png 1024w, https://data.uipress.co/wp-content/uploads/2026/07/Screenshot-2026-07-08-at-19.39.17-300x141.png 300w, https://data.uipress.co/wp-content/uploads/2026/07/Screenshot-2026-07-08-at-19.39.17-768x361.png 768w, https://data.uipress.co/wp-content/uploads/2026/07/Screenshot-2026-07-08-at-19.39.17-1536x722.png 1536w, https://data.uipress.co/wp-content/uploads/2026/07/Screenshot-2026-07-08-at-19.39.17-2048x963.png 2048w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />\u003C/figure>\n\n\n\n\u003Ch3 class=\"wp-block-heading\" id=\"3-connectors\">3. Connectors\u003C/h3>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">Connectors are how third-party plugins and themes integrate with Admin Framework. A Connector is a JSON definition that bundles everything a plugin needs to live inside the admin: views (full admin screens), settings pages, sidebar menu groups, quick actions (the bolt-icon actions panel in the sidebar), and user form extensions.\u003C/p>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">A single WooCommerce Connector, for example, can ship product and order list views, a WooCommerce settings page, quick actions for cache purging or stock syncing, and additional fields on the user edit form — all registered through one definition file, all merged into the admin at runtime.\u003C/p>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">Connectors can be hand-authored, installed from the Connector marketplace, or generated automatically using the \u003Cstrong>AI Connector Builder\u003C/strong>, which inspects a plugin&#8217;s REST API and produces a working Connector definition. Enable a Connector and its views, menus, and actions fold into the admin. Disable it and they disappear. No code changes, no redeployment.\u003C/p>\n\n\n\n\u003Cfigure class=\"wp-block-image size-large\">\u003Cimg decoding=\"async\" width=\"1024\" height=\"589\" src=\"https://data.uipress.co/wp-content/uploads/2026/07/Screenshot-2026-07-08-at-19.33.23-1024x589.png\" alt=\"\" class=\"wp-image-13111\" srcset=\"https://data.uipress.co/wp-content/uploads/2026/07/Screenshot-2026-07-08-at-19.33.23-1024x589.png 1024w, https://data.uipress.co/wp-content/uploads/2026/07/Screenshot-2026-07-08-at-19.33.23-300x173.png 300w, https://data.uipress.co/wp-content/uploads/2026/07/Screenshot-2026-07-08-at-19.33.23-768x442.png 768w, https://data.uipress.co/wp-content/uploads/2026/07/Screenshot-2026-07-08-at-19.33.23-1536x884.png 1536w, https://data.uipress.co/wp-content/uploads/2026/07/Screenshot-2026-07-08-at-19.33.23-2048x1178.png 2048w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />\u003C/figure>\n\n\n\n\u003Ch2 class=\"wp-block-heading\" id=\"extensible-at-every-layer\">Extensible at every layer\u003C/h2>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">This is the part I&#8217;m most proud of. Admin Framework isn&#8217;t a closed UI that you&#8217;re stuck with as-is. Extension points exist at every level of the stack:\u003C/p>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">\u003Cstrong>JSON definitions\u003C/strong> — Register new views and settings pages by dropping in JSON files. No Vue components required for standard CRUD screens.\u003C/p>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">\u003Cstrong>PHP filters and actions\u003C/strong> — Register views, sidebar items, settings pages, quick actions, connector action handlers, user form nodes, content row actions, and schema modifications through WordPress filters. If you&#8217;ve ever used \u003Ccode>add_filter\u003C/code>, you already know how this works.\u003C/p>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">\u003Cstrong>JavaScript hooks\u003C/strong> — Client-side extension mirrors the server. Register sidebar items, dashboard cards and categories, and field adapters at runtime. Dashboard widgets can be Vue or React components.\u003C/p>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">\u003Cstrong>REST API\u003C/strong> — A unified REST surface powers the SPA and exposes view registries, schema discovery, internal CRUD, settings, connector management, and content configuration to external tooling.\u003C/p>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">\u003Cstrong>Connectors as the integration unit\u003C/strong> — One Connector definition can ship views, settings, actions, user form extensions, and sidebar groups. It&#8217;s the cleanest way to integrate a plugin without touching Admin Framework&#8217;s core.\u003C/p>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">The result is that you can go from &#8220;I need an admin screen for this custom post type&#8221; to a working list/detail/form UI without writing any frontend code. And if you need something the render engine doesn&#8217;t cover, you can drop down to Vue components, React widgets, or server-side action handlers.\u003C/p>\n\n\n\n\u003Cfigure class=\"wp-block-image size-large\">\u003Cimg decoding=\"async\" width=\"1024\" height=\"652\" src=\"https://data.uipress.co/wp-content/uploads/2026/07/Screenshot-2026-07-08-at-19.39.30-1024x652.png\" alt=\"\" class=\"wp-image-13113\" srcset=\"https://data.uipress.co/wp-content/uploads/2026/07/Screenshot-2026-07-08-at-19.39.30-1024x652.png 1024w, https://data.uipress.co/wp-content/uploads/2026/07/Screenshot-2026-07-08-at-19.39.30-300x191.png 300w, https://data.uipress.co/wp-content/uploads/2026/07/Screenshot-2026-07-08-at-19.39.30-768x489.png 768w, https://data.uipress.co/wp-content/uploads/2026/07/Screenshot-2026-07-08-at-19.39.30-1536x978.png 1536w, https://data.uipress.co/wp-content/uploads/2026/07/Screenshot-2026-07-08-at-19.39.30-2048x1304.png 2048w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />\u003C/figure>\n\n\n\n\u003Ch2 class=\"wp-block-heading\" id=\"what-about-wp-admin\">What about wp-admin?\u003C/h2>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">It&#8217;s still there. Admin Framework replaces the shell and most management screens, but wp-admin remains available as a compatibility layer. Gutenberg and the Site Editor run in stripped iframes inside Admin Framework. Legacy plugin pages that haven&#8217;t been Connector-ised are accessible through wp-admin. You can set which roles get redirected to Admin Framework and which stay on wp-admin — administrators can access both.\u003C/p>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">The mental model is simple:\u003C/p>\n\n\n\n\u003Cpre class=\"wp-block-code\">\u003Ccode>/uix-admin/  →  Admin Framework (modern shell, JSON views, Connectors)\n/wp-admin/   →  Legacy layer (Gutenberg, Site Editor, unconverted plugin pages)\u003C/code>\u003C/pre>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">Admin Framework replaces wp-admin for your team. It doesn&#8217;t replace WordPress.\u003C/p>\n\n\n\n\u003Ch2 class=\"wp-block-heading\" id=\"beta-what-that-means\">Beta — what that means\u003C/h2>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">Admin Framework ships today as an opt-in beta in uiXpress 1.3.0. You can enable it in uiXpress settings, configure your route and redirect roles, and start using it immediately with the built-in managers and any available Connectors.\u003C/p>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">Beta means a few things:\u003C/p>\n\n\n\n\u003Cul class=\"wp-block-list\">\n\u003Cli>The core experience is stable and usable for daily admin work\u003C/li>\n\n\n\n\u003Cli>The view definition schema and Connector format may evolve based on feedback before we lock them down\u003C/li>\n\n\n\n\u003Cli>The Connector marketplace is early — official Connectors for major plugins are rolling out over the coming weeks\u003C/li>\n\n\n\n\u003Cli>We&#8217;re actively looking for feedback on what works, what&#8217;s missing, and what Connectors you need first\u003C/li>\n\u003C/ul>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">If you&#8217;re running uiXpress, update to 1.3.0 and turn it on. If you&#8217;re building plugins and want to ship a Connector, the definition format is documented and the AI Connector Builder can get you started in minutes.\u003C/p>\n\n\n\n\u003Ch2 class=\"wp-block-heading\" id=\"whats-next\">What&#8217;s next\u003C/h2>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">The roadmap from here is driven by two things: stabilising the view definition and Connector schemas based on real-world usage, and shipping official Connectors for the plugins people use most. WooCommerce, Yoast, WP Rocket, ACF, Gravity Forms — if your plugin has a REST API, it can have a Connector.\u003C/p>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">Admin Framework is the biggest thing I&#8217;ve shipped in uiXpress. It&#8217;s the difference between a better-looking wp-admin and a genuinely different approach to WordPress administration. I&#8217;m excited to see what people build with it.\u003C/p>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">Enable it in uiXpress 1.3.0 and let me know what you think.\u003C/p>\n",false,{"rendered":19,"protected":17},"\u003Cp>wp-admin hasn&#8217;t fundamentally changed in over a decade. It works, but it was never designed for the way people actually manage WordPress sites today — teams with different roles, sites running WooCommerce alongside SEO tools alongside caching plugins, agencies managing dozens of installs. Every plugin bolts on its own settings page with its own design [&hellip;]\u003C/p>\n",1,13111,"open","","standard",{"_acf_changed":17,"_eb_attr":23,"footnotes":23},[27,28],7,5,[],[31,11,32,33,34,35,36,37,38],"post-13110","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-blog","category-news",[],{"self":41,"collection":47,"about":50,"author":53,"replies":57,"version-history":60,"predecessor-version":63,"wp:featuredmedia":67,"wp:attachment":70,"wp:term":73,"curies":80},[42],{"href":43,"targetHints":44},"https://data.uipress.co/wp-json/wp/v2/posts/13110",{"allow":45},[46],"GET",[48],{"href":49},"https://data.uipress.co/wp-json/wp/v2/posts",[51],{"href":52},"https://data.uipress.co/wp-json/wp/v2/types/post",[54],{"embeddable":55,"href":56},true,"https://data.uipress.co/wp-json/wp/v2/users/1",[58],{"embeddable":55,"href":59},"https://data.uipress.co/wp-json/wp/v2/comments?post=13110",[61],{"count":20,"href":62},"https://data.uipress.co/wp-json/wp/v2/posts/13110/revisions",[64],{"id":65,"href":66},13115,"https://data.uipress.co/wp-json/wp/v2/posts/13110/revisions/13115",[68],{"embeddable":55,"href":69},"https://data.uipress.co/wp-json/wp/v2/media/13111",[71],{"href":72},"https://data.uipress.co/wp-json/wp/v2/media?parent=13110",[74,77],{"taxonomy":75,"embeddable":55,"href":76},"category","https://data.uipress.co/wp-json/wp/v2/categories?post=13110",{"taxonomy":78,"embeddable":55,"href":79},"post_tag","https://data.uipress.co/wp-json/wp/v2/tags?post=13110",[81],{"name":82,"href":83,"templated":55},"wp","https://api.w.org/{rel}",{"author":85,"wp:featuredmedia":105,"wp:term":186},[86],{"id":20,"name":87,"url":88,"description":23,"link":89,"slug":90,"avatar_urls":91,"acf":96,"_links":97},"mark.ashton","http://home.uipress.co","https://data.uipress.co/author/mark-ashton/","mark-ashton",{"24":92,"48":93,"96":94,"128":95},"https://secure.gravatar.com/avatar/27fafe7ca4d54e25aa91f001a17d4da4b5ec5a58b0d5236358218dd39413eb83?s=24&d=mm&r=g","https://secure.gravatar.com/avatar/27fafe7ca4d54e25aa91f001a17d4da4b5ec5a58b0d5236358218dd39413eb83?s=48&d=mm&r=g","https://secure.gravatar.com/avatar/27fafe7ca4d54e25aa91f001a17d4da4b5ec5a58b0d5236358218dd39413eb83?s=96&d=mm&r=g","https://secure.gravatar.com/avatar/27fafe7ca4d54e25aa91f001a17d4da4b5ec5a58b0d5236358218dd39413eb83?s=128&d=mm&r=g",[],{"self":98,"collection":102},[99],{"href":56,"targetHints":100},{"allow":101},[46],[103],{"href":104},"https://data.uipress.co/wp-json/wp/v2/users",[106],{"id":21,"date":107,"slug":108,"type":109,"link":110,"title":111,"author":20,"featured_media":113,"acf":114,"caption":115,"alt_text":23,"media_type":116,"mime_type":117,"media_details":118,"source_url":161,"_links":166},"2026-07-08T11:38:46","screenshot-2026-07-08-at-19-33-23","attachment","https://data.uipress.co/introducing-admin-framework-wordpress-admin-rebuilt/screenshot-2026-07-08-at-19-33-23/",{"rendered":112},"Screenshot 2026-07-08 at 19.33.23",0,[],{"rendered":23},"image","image/png",{"width":119,"height":120,"file":121,"filesize":122,"sizes":123,"image_meta":162,"original_image":165},2560,1473,"2026/07/Screenshot-2026-07-08-at-19.33.23-scaled.png",659770,{"medium":124,"large":130,"thumbnail":136,"medium_large":141,"1536x1536":147,"2048x2048":153,"full":159},{"file":125,"width":126,"height":127,"filesize":128,"mime_type":117,"source_url":129},"Screenshot-2026-07-08-at-19.33.23-300x173.png",300,173,22878,"https://data.uipress.co/wp-content/uploads/2026/07/Screenshot-2026-07-08-at-19.33.23-300x173.png",{"file":131,"width":132,"height":133,"filesize":134,"mime_type":117,"source_url":135},"Screenshot-2026-07-08-at-19.33.23-1024x589.png",1024,589,170350,"https://data.uipress.co/wp-content/uploads/2026/07/Screenshot-2026-07-08-at-19.33.23-1024x589.png",{"file":137,"width":138,"height":138,"filesize":139,"mime_type":117,"source_url":140},"Screenshot-2026-07-08-at-19.33.23-150x150.png",150,12156,"https://data.uipress.co/wp-content/uploads/2026/07/Screenshot-2026-07-08-at-19.33.23-150x150.png",{"file":142,"width":143,"height":144,"filesize":145,"mime_type":117,"source_url":146},"Screenshot-2026-07-08-at-19.33.23-768x442.png",768,442,108944,"https://data.uipress.co/wp-content/uploads/2026/07/Screenshot-2026-07-08-at-19.33.23-768x442.png",{"file":148,"width":149,"height":150,"filesize":151,"mime_type":117,"source_url":152},"Screenshot-2026-07-08-at-19.33.23-1536x884.png",1536,884,315039,"https://data.uipress.co/wp-content/uploads/2026/07/Screenshot-2026-07-08-at-19.33.23-1536x884.png",{"file":154,"width":155,"height":156,"filesize":157,"mime_type":117,"source_url":158},"Screenshot-2026-07-08-at-19.33.23-2048x1178.png",2048,1178,478686,"https://data.uipress.co/wp-content/uploads/2026/07/Screenshot-2026-07-08-at-19.33.23-2048x1178.png",{"file":160,"width":119,"height":120,"mime_type":117,"source_url":161},"Screenshot-2026-07-08-at-19.33.23-scaled.png","https://data.uipress.co/wp-content/uploads/2026/07/Screenshot-2026-07-08-at-19.33.23-scaled.png",{"aperture":163,"credit":23,"camera":23,"caption":23,"created_timestamp":163,"copyright":23,"focal_length":163,"iso":163,"shutter_speed":163,"title":23,"orientation":163,"keywords":164,"alt":23},"0",[],"Screenshot-2026-07-08-at-19.33.23.png",{"self":167,"collection":171,"about":174,"author":177,"replies":179,"wp:attached-to":182,"curies":184},[168],{"href":69,"targetHints":169},{"allow":170},[46],[172],{"href":173},"https://data.uipress.co/wp-json/wp/v2/media",[175],{"href":176},"https://data.uipress.co/wp-json/wp/v2/types/attachment",[178],{"embeddable":55,"href":56},[180],{"embeddable":55,"href":181},"https://data.uipress.co/wp-json/wp/v2/comments?post=13111",[183],{"embeddable":55,"post_type":11,"id":5,"href":43},[185],{"name":82,"href":83,"templated":55},[187,230],[188,210],{"id":27,"link":189,"name":190,"slug":191,"taxonomy":75,"acf":192,"_links":193},"https://data.uipress.co/category/blog/","Blog","blog",[],{"self":194,"collection":199,"about":202,"wp:post_type":205,"curies":208},[195],{"href":196,"targetHints":197},"https://data.uipress.co/wp-json/wp/v2/categories/7",{"allow":198},[46],[200],{"href":201},"https://data.uipress.co/wp-json/wp/v2/categories",[203],{"href":204},"https://data.uipress.co/wp-json/wp/v2/taxonomies/category",[206],{"href":207},"https://data.uipress.co/wp-json/wp/v2/posts?categories=7",[209],{"name":82,"href":83,"templated":55},{"id":28,"link":211,"name":212,"slug":213,"taxonomy":75,"acf":214,"_links":215},"https://data.uipress.co/category/news/","News","news",[],{"self":216,"collection":221,"about":223,"wp:post_type":225,"curies":228},[217],{"href":218,"targetHints":219},"https://data.uipress.co/wp-json/wp/v2/categories/5",{"allow":220},[46],[222],{"href":201},[224],{"href":204},[226],{"href":227},"https://data.uipress.co/wp-json/wp/v2/posts?categories=5",[229],{"name":82,"href":83,"templated":55},[],{"id":232,"date":233,"date_gmt":233,"guid":234,"modified":236,"modified_gmt":236,"slug":237,"status":10,"type":11,"link":238,"title":239,"content":241,"excerpt":243,"author":20,"featured_media":245,"comment_status":22,"ping_status":22,"sticky":17,"template":23,"format":24,"meta":246,"categories":247,"tags":248,"class_list":249,"acf":251,"_links":252,"_embedded":287},13105,"2025-11-15T06:14:51",{"rendered":235},"https://data.uipress.co/?p=13105","2025-11-15T06:16:14","the-future-of-uipress-uixpress-your-voice-has-shaped-our-direction","https://data.uipress.co/the-future-of-uipress-uixpress-your-voice-has-shaped-our-direction/",{"rendered":240},"The Future of uiPress &#038; uiXpress: Your Voice Has Shaped Our Direction",{"rendered":242,"protected":17},"\n\u003Cp class=\"wp-block-paragraph\">Over the past few weeks, we asked you to help shape the future of uiPress and uiXpress. The response has been overwhelming, with 189 of you taking the time to share your thoughts, concerns, and feature priorities. Today, we&#8217;re excited to share what we learned and announce the path forward.\u003C/p>\n\n\n\n\u003Ch2 class=\"wp-block-heading\" id=\"what-you-told-us\">What You Told Us\u003C/h2>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">The results were clear and consistent. When we asked how you felt about consolidating uiPress Pro features into uiXpress and discontinuing the legacy uiPress platform, the response was overwhelmingly positive:\u003C/p>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">\u003Cstrong>66% of you are either excited or supportive\u003C/strong> of this consolidation, seeing it as the logical path forward for the product line.\u003C/p>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">Here&#8217;s the detailed breakdown:\u003C/p>\n\n\n\n\u003Cul class=\"wp-block-list\">\n\u003Cli>\u003Cstrong>Excited &#8211; sounds like the best path forward:\u003C/strong> 41%\u003C/li>\n\n\n\n\u003Cli>\u003Cstrong>Supportive &#8211; makes sense long-term:\u003C/strong> 25%\u003C/li>\n\n\n\n\u003Cli>\u003Cstrong>Concerned &#8211; need more details:\u003C/strong> 21%\u003C/li>\n\n\n\n\u003Cli>\u003Cstrong>Neutral &#8211; fine either way:\u003C/strong> 8%\u003C/li>\n\n\n\n\u003Cli>\u003Cstrong>Against it &#8211; prefer keeping both:\u003C/strong> 5%\u003C/li>\n\u003C/ul>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">This strong support gives us confidence that we&#8217;re making the right decision for the community.\u003C/p>\n\n\n\n\u003Ch2 class=\"wp-block-heading\" id=\"understanding-your-product-usage\">Understanding Your Product Usage\u003C/h2>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">Your feedback revealed interesting patterns in how you use our products:\u003C/p>\n\n\n\n\u003Cul class=\"wp-block-list\">\n\u003Cli>\u003Cstrong>45% primarily use uiXpress\u003C/strong> &#8211; appreciating its streamlined, plug-and-play approach\u003C/li>\n\n\n\n\u003Cli>\u003Cstrong>41% primarily use uiPress\u003C/strong> &#8211; valuing its powerful customization capabilities\u003C/li>\n\n\n\n\u003Cli>\u003Cstrong>14% use both equally\u003C/strong> &#8211; leveraging the strengths of each product\u003C/li>\n\u003C/ul>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">Many of you echoed a common sentiment: you love uiPress&#8217;s flexibility but find uiXpress&#8217;s simplicity better for day-to-day use. This perfectly encapsulates what we&#8217;re aiming to achieve with the merger.\u003C/p>\n\n\n\n\u003Ch2 class=\"wp-block-heading\" id=\"your-top-concerns-and-our-commitment\">Your Top Concerns (And Our Commitment)\u003C/h2>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">We heard you loud and clear on what matters most:\u003C/p>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">\u003Cstrong>Top Concerns:\u003C/strong>\u003C/p>\n\n\n\n\u003Col class=\"wp-block-list\">\n\u003Cli>\u003Cstrong>Losing functionality\u003C/strong> (35% of responses) &#8211; You rely on specific features and can&#8217;t afford to lose them\u003C/li>\n\n\n\n\u003Cli>\u003Cstrong>No major concerns\u003C/strong> (32%) &#8211; Many of you trust the direction we&#8217;re heading\u003C/li>\n\n\n\n\u003Cli>\u003Cstrong>Migration complexity\u003C/strong> (13%) &#8211; You want a smooth transition without disruption\u003C/li>\n\n\n\n\u003Cli>\u003Cstrong>Learning curve\u003C/strong> (8%) &#8211; Concerns about having to relearn everything\u003C/li>\n\n\n\n\u003Cli>\u003Cstrong>uiXpress readiness\u003C/strong> (12%) &#8211; Questions about whether uiXpress is mature enough\u003C/li>\n\u003C/ol>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">\u003Cstrong>Our commitment:\u003C/strong> We will not consolidate until every critical feature from uiPress Pro is available in uiXpress. Your workflows will remain intact.\u003C/p>\n\n\n\n\u003Ch2 class=\"wp-block-heading\" id=\"the-features-that-matter-most\">The Features That Matter Most\u003C/h2>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">You told us which uiPress features are absolutely critical to your work. The themes were consistent:\u003C/p>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">\u003Cstrong>Most Requested Features to Migrate:\u003C/strong>\u003C/p>\n\n\n\n\u003Cul class=\"wp-block-list\">\n\u003Cli>\u003Cstrong>Analytics &amp; Dashboards\u003C/strong> &#8211; Custom dashboards with integrated analytics for clients\u003C/li>\n\n\n\n\u003Cli>\u003Cstrong>Menu Customization\u003C/strong> &#8211; Full control over admin menus\u003C/li>\n\n\n\n\u003Cli>\u003Cstrong>White Label Options\u003C/strong> &#8211; Custom branding, logos, and colors\u003C/li>\n\n\n\n\u003Cli>\u003Cstrong>User Management\u003C/strong> &#8211; Role editor, capability management, and user logs\u003C/li>\n\n\n\n\u003Cli>\u003Cstrong>Admin Page Builder\u003C/strong> &#8211; Creating custom admin pages and layouts\u003C/li>\n\n\n\n\u003Cli>\u003Cstrong>Login Customizer\u003C/strong> &#8211; Branded login experiences\u003C/li>\n\u003C/ul>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">Many of you specifically mentioned: \u003Cem>&#8220;I need the plug-and-play simplicity of uiXpress with the powerful features of uiPress Pro.&#8221;\u003C/em> That&#8217;s exactly what we&#8217;re building.\u003C/p>\n\n\n\n\u003Ch2 class=\"wp-block-heading\" id=\"analytics-integration-what-you-want\">Analytics Integration: What You Want\u003C/h2>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">When we asked about analytics preferences, you gave us clear direction:\u003C/p>\n\n\n\n\u003Cul class=\"wp-block-list\">\n\u003Cli>\u003Cstrong>Google Analytics 4:\u003C/strong> 35%\u003C/li>\n\n\n\n\u003Cli>\u003Cstrong>Simple built-in dashboard:\u003C/strong> 21%\u003C/li>\n\n\n\n\u003Cli>\u003Cstrong>Don&#8217;t need analytics:\u003C/strong> 19%\u003C/li>\n\n\n\n\u003Cli>\u003Cstrong>WooCommerce analytics:\u003C/strong> 14%\u003C/li>\n\n\n\n\u003Cli>\u003Cstrong>Privacy-focused (Plausible/Matomo):\u003C/strong> 12%\u003C/li>\n\u003C/ul>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">We&#8217;ll be prioritizing GA4 and built-in dashboards first, with privacy-focused and WooCommerce analytics to follow.\u003C/p>\n\n\n\n\u003Ch2 class=\"wp-block-heading\" id=\"our-promise-to-you\">Our Promise to You\u003C/h2>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">Based on your feedback, here&#8217;s what we&#8217;re committing to:\u003C/p>\n\n\n\n\u003Ch3 class=\"wp-block-heading\" id=\"feature-parity-first\">Feature Parity First\u003C/h3>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">We will not discontinue uiPress until uiXpress has feature parity with all critical Pro features. This includes:\u003C/p>\n\n\n\n\u003Cul class=\"wp-block-list\">\n\u003Cli>Advanced analytics integration\u003C/li>\n\n\n\n\u003Cli>Custom dashboard builder\u003C/li>\n\n\n\n\u003Cli>Comprehensive menu customization\u003C/li>\n\n\n\n\u003Cli>Enhanced user management tools\u003C/li>\n\n\n\n\u003Cli>White label options\u003C/li>\n\n\n\n\u003Cli>Login customizer\u003C/li>\n\u003C/ul>\n\n\n\n\u003Ch3 class=\"wp-block-heading\" id=\"smooth-migration-path\">Smooth Migration Path\u003C/h3>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">We&#8217;re developing migration tools to make the transition seamless. Your existing configurations, customizations, and workflows will transfer smoothly to uiXpress.\u003C/p>\n\n\n\n\u003Ch3 class=\"wp-block-heading\" id=\"existing-license-holders\">Existing License Holders\u003C/h3>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">If you have a lifetime uiPress Pro license, you&#8217;ll receive equivalent access to all Pro features in uiXpress. Your investment is protected.\u003C/p>\n\n\n\n\u003Ch3 class=\"wp-block-heading\" id=\"performance-stability\">Performance &amp; Stability\u003C/h3>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">You emphasized that uiXpress must remain fast, lightweight, and stable. We won&#8217;t compromise on performance as we add features. The clean architecture that makes uiXpress fast will be preserved.\u003C/p>\n\n\n\n\u003Ch3 class=\"wp-block-heading\" id=\"no-bloat-promise\">No Bloat Promise\u003C/h3>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">Multiple users specifically asked us to keep uiXpress lightweight and avoid the complexity that can come with feature-rich products. We hear you. Features will be modular and optional, so you only load what you need.\u003C/p>\n\n\n\n\u003Ch2 class=\"wp-block-heading\" id=\"for-power-users-agencies\">For Power Users &amp; Agencies\u003C/h2>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">We saw your detailed responses about the sophisticated setups you&#8217;ve built for clients. To the agency owner who said losing these features would be &#8220;catastrophic&#8221; &#8211; we hear you, and we&#8217;re available to discuss your specific needs.\u003C/p>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">If you&#8217;re a power user with complex requirements, we&#8217;d love to chat. Reach out to us directly so we can ensure your workflows are supported in the new consolidated platform.\u003C/p>\n\n\n\n\u003Ch2 class=\"wp-block-heading\" id=\"what-this-means-for-you-right-now\">What This Means for You Right Now\u003C/h2>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">\u003Cstrong>If you&#8217;re on uiPress Pro:\u003C/strong> Continue using it with confidence. We&#8217;ll provide ample notice and migration support before any changes to your service.\u003C/p>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">\u003Cstrong>If you&#8217;re on uiXpress:\u003C/strong> Exciting new Pro features are coming your way. The product you love will get more powerful while maintaining its simplicity.\u003C/p>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">\u003Cstrong>If you&#8217;re using both:\u003C/strong> You&#8217;ll soon have the best of both worlds in a single, cohesive product.\u003C/p>\n\n\n\n\u003Ch2 class=\"wp-block-heading\" id=\"thank-you\">Thank You\u003C/h2>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">This decision wasn&#8217;t made lightly, and it wouldn&#8217;t have been possible without your candid feedback. 189 responses representing years of combined experience with our products &#8211; that&#8217;s invaluable insight we couldn&#8217;t get any other way.\u003C/p>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">Your trust in us to make this transition successful means everything. We&#8217;re committed to doing this right, taking the time needed to ensure every critical feature makes it to uiXpress, and that the migration is as smooth as possible.\u003C/p>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">We&#8217;ll keep you updated every step of the way with regular announcements about new feature releases, migration tools, and timeline updates.\u003C/p>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">Here&#8217;s to building something better, together.\u003C/p>\n\n\n\n\u003Chr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">\u003Cstrong>Questions or concerns?\u003C/strong> We&#8217;re here to listen. Reach out directly, and let&#8217;s talk about how we can make this transition work for you.\u003C/p>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">\u003Cstrong>Want to influence what gets built first?\u003C/strong> The features you marked as critical are now our development roadmap. Watch for updates as we roll out analytics, enhanced menu customization, and more in the coming months.\u003C/p>\n",{"rendered":244,"protected":17},"\u003Cp>Over the past few weeks, we asked you to help shape the future of uiPress and uiXpress. The response has been overwhelming, with 189 of you taking the time to share your thoughts, concerns, and feature priorities. Today, we&#8217;re excited to share what we learned and announce the path forward. What You Told Us The [&hellip;]\u003C/p>\n",13106,{"_acf_changed":17,"_eb_attr":23,"footnotes":23},[27,28],[],[250,11,32,33,34,35,36,37,38],"post-13105",[],{"self":253,"collection":258,"about":260,"author":262,"replies":264,"version-history":267,"predecessor-version":270,"wp:featuredmedia":274,"wp:attachment":277,"wp:term":280,"curies":285},[254],{"href":255,"targetHints":256},"https://data.uipress.co/wp-json/wp/v2/posts/13105",{"allow":257},[46],[259],{"href":49},[261],{"href":52},[263],{"embeddable":55,"href":56},[265],{"embeddable":55,"href":266},"https://data.uipress.co/wp-json/wp/v2/comments?post=13105",[268],{"count":20,"href":269},"https://data.uipress.co/wp-json/wp/v2/posts/13105/revisions",[271],{"id":272,"href":273},13107,"https://data.uipress.co/wp-json/wp/v2/posts/13105/revisions/13107",[275],{"embeddable":55,"href":276},"https://data.uipress.co/wp-json/wp/v2/media/13106",[278],{"href":279},"https://data.uipress.co/wp-json/wp/v2/media?parent=13105",[281,283],{"taxonomy":75,"embeddable":55,"href":282},"https://data.uipress.co/wp-json/wp/v2/categories?post=13105",{"taxonomy":78,"embeddable":55,"href":284},"https://data.uipress.co/wp-json/wp/v2/tags?post=13105",[286],{"name":82,"href":83,"templated":55},{"author":288,"wp:featuredmedia":299,"wp:term":365},[289],{"id":20,"name":87,"url":88,"description":23,"link":89,"slug":90,"avatar_urls":290,"acf":291,"_links":292},{"24":92,"48":93,"96":94,"128":95},[],{"self":293,"collection":297},[294],{"href":56,"targetHints":295},{"allow":296},[46],[298],{"href":104},[300],{"id":245,"date":301,"slug":302,"type":109,"link":303,"title":304,"author":20,"featured_media":113,"acf":305,"caption":306,"alt_text":23,"media_type":116,"mime_type":117,"media_details":307,"source_url":344,"_links":347},"2025-11-15T06:14:45","role-editor-overview","https://data.uipress.co/the-future-of-uipress-uixpress-your-voice-has-shaped-our-direction/role-editor-overview/",{"rendered":302},[],{"rendered":23},{"width":308,"height":309,"file":310,"filesize":311,"sizes":312,"image_meta":345},2166,1354,"2025/11/role-editor-overview.png",196807,{"medium":313,"large":318,"thumbnail":323,"medium_large":327,"1536x1536":332,"2048x2048":337,"full":342},{"file":314,"width":126,"height":315,"filesize":316,"mime_type":117,"source_url":317},"role-editor-overview-300x188.png",188,10262,"https://data.uipress.co/wp-content/uploads/2025/11/role-editor-overview-300x188.png",{"file":319,"width":132,"height":320,"filesize":321,"mime_type":117,"source_url":322},"role-editor-overview-1024x640.png",640,64393,"https://data.uipress.co/wp-content/uploads/2025/11/role-editor-overview-1024x640.png",{"file":324,"width":138,"height":138,"filesize":325,"mime_type":117,"source_url":326},"role-editor-overview-150x150.png",4747,"https://data.uipress.co/wp-content/uploads/2025/11/role-editor-overview-150x150.png",{"file":328,"width":143,"height":329,"filesize":330,"mime_type":117,"source_url":331},"role-editor-overview-768x480.png",480,41897,"https://data.uipress.co/wp-content/uploads/2025/11/role-editor-overview-768x480.png",{"file":333,"width":149,"height":334,"filesize":335,"mime_type":117,"source_url":336},"role-editor-overview-1536x960.png",960,115093,"https://data.uipress.co/wp-content/uploads/2025/11/role-editor-overview-1536x960.png",{"file":338,"width":155,"height":339,"filesize":340,"mime_type":117,"source_url":341},"role-editor-overview-2048x1280.png",1280,173233,"https://data.uipress.co/wp-content/uploads/2025/11/role-editor-overview-2048x1280.png",{"file":343,"width":308,"height":309,"mime_type":117,"source_url":344},"role-editor-overview.png","https://data.uipress.co/wp-content/uploads/2025/11/role-editor-overview.png",{"aperture":163,"credit":23,"camera":23,"caption":23,"created_timestamp":163,"copyright":23,"focal_length":163,"iso":163,"shutter_speed":163,"title":23,"orientation":163,"keywords":346},[],{"self":348,"collection":352,"about":354,"author":356,"replies":358,"wp:attached-to":361,"curies":363},[349],{"href":276,"targetHints":350},{"allow":351},[46],[353],{"href":173},[355],{"href":176},[357],{"embeddable":55,"href":56},[359],{"embeddable":55,"href":360},"https://data.uipress.co/wp-json/wp/v2/comments?post=13106",[362],{"embeddable":55,"post_type":11,"id":232,"href":255},[364],{"name":82,"href":83,"templated":55},[366,397],[367,382],{"id":27,"link":189,"name":190,"slug":191,"taxonomy":75,"acf":368,"_links":369},[],{"self":370,"collection":374,"about":376,"wp:post_type":378,"curies":380},[371],{"href":196,"targetHints":372},{"allow":373},[46],[375],{"href":201},[377],{"href":204},[379],{"href":207},[381],{"name":82,"href":83,"templated":55},{"id":28,"link":211,"name":212,"slug":213,"taxonomy":75,"acf":383,"_links":384},[],{"self":385,"collection":389,"about":391,"wp:post_type":393,"curies":395},[386],{"href":218,"targetHints":387},{"allow":388},[46],[390],{"href":201},[392],{"href":204},[394],{"href":227},[396],{"name":82,"href":83,"templated":55},[],{"id":399,"date":400,"date_gmt":400,"guid":401,"modified":400,"modified_gmt":400,"slug":403,"status":10,"type":11,"link":404,"title":405,"content":407,"excerpt":409,"author":20,"featured_media":411,"comment_status":22,"ping_status":22,"sticky":17,"template":23,"format":24,"meta":412,"categories":413,"tags":414,"class_list":415,"acf":417,"_links":418,"_embedded":453},13103,"2025-11-13T13:06:52",{"rendered":402},"https://data.uipress.co/?p=13103","an-honest-update-where-ive-been-and-where-were-going","https://data.uipress.co/an-honest-update-where-ive-been-and-where-were-going/",{"rendered":406},"An Honest Update: Where I&#8217;ve Been and Where We&#8217;re Going",{"rendered":408,"protected":17},"\n\u003Cp class=\"wp-block-paragraph\">I owe you an apology.\u003C/p>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">If you&#8217;ve reached out for support over the last few months and haven&#8217;t received the response you deserved, I&#8217;m truly sorry. You&#8217;ve invested in uiPress and uiXpress, and you deserve better than silence.\u003C/p>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">I want to be transparent with you about what&#8217;s been happening behind the scenes.\u003C/p>\n\n\n\n\u003Ch2 class=\"wp-block-heading\" id=\"the-reality-of-this-year\">The Reality of This Year\u003C/h2>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">This year has been one of the most challenging of my life. My dad was diagnosed with cancer earlier this year, which understandably consumed much of my focus and energy. I&#8217;m incredibly grateful to say he&#8217;s beaten it, but the journey took its toll on everything, including my ability to show up for you the way I should have.\u003C/p>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">On top of that, I&#8217;ve been navigating significant personal changes while also dealing with poor mental health, which has made it increasingly difficult to maintain the level of communication and support that uiPress customers have come to expect. The combination led to complete burnout, and I found myself unable to engage in the way this community deserves.\u003C/p>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">I&#8217;ve been working on uiPress and uiXpress for nearly five years now. These projects represent an enormous part of my life, and the thought of letting down the people who&#8217;ve supported them has been weighing heavily on me.\u003C/p>\n\n\n\n\u003Ch2 class=\"wp-block-heading\" id=\"moving-forward\">Moving Forward\u003C/h2>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">I&#8217;m not writing this just to explain or make excuses. I&#8217;m writing because things are changing, and I&#8217;m committed to doing better.\u003C/p>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">I&#8217;m feeling much better now, both personally and professionally. More importantly, I&#8217;ve brought on additional help to ensure that the support, communication, and development you expect will be consistent and reliable going forward. This isn&#8217;t just about me anymore—it&#8217;s about building a team that can serve you properly.\u003C/p>\n\n\n\n\u003Ch2 class=\"wp-block-heading\" id=\"uixpress-1-2-1-is-here\">uiXpress 1.2.1 Is Here\u003C/h2>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">Today, I&#8217;m releasing uiXpress version 1.2.1, which includes significant improvements and new features that I&#8217;m genuinely excited about. This update represents months of focused work, and I believe it demonstrates my commitment to honoring your investment in these products.\u003C/p>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">\u003Cstrong>A note on the rollout:\u003C/strong> This will be a staggered release. Version 1.2.1 is available now in your account and for new customers, but we&#8217;re holding back the direct update notification for approximately one week. This gives us time to ensure compatibility across different environments and iron out any potential issues before pushing it to everyone automatically. This cautious approach is part of our commitment to delivering quality rather than rushing updates.\u003C/p>\n\n\n\n\u003Ch2 class=\"wp-block-heading\" id=\"rebuilding-trust\">Rebuilding Trust\u003C/h2>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">I know that trust is earned, not given, and I know that I&#8217;ll need to demonstrate through consistent action that things have changed. I&#8217;m not asking you to simply accept my word—I&#8217;m asking for the opportunity to show you through improved support, better communication, and continued development that uiPress and uiXpress are in good hands.\u003C/p>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">To those of you who stuck around despite the silence: thank you. Your patience means more than you know.\u003C/p>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">To those considering whether to continue with uiPress or uiXpress: I understand your hesitation, and I&#8217;m committed to winning back your confidence.\u003C/p>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">This is a turning point, not just an apology. I&#8217;m here, I&#8217;m focused, and I&#8217;m supported by a team that will help ensure you get the experience you deserve.\u003C/p>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">Thank you for your understanding, and thank you for being part of this journey.\u003C/p>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">— Mark\u003C/p>\n",{"rendered":410,"protected":17},"\u003Cp>I owe you an apology. If you&#8217;ve reached out for support over the last few months and haven&#8217;t received the response you deserved, I&#8217;m truly sorry. You&#8217;ve invested in uiPress and uiXpress, and you deserve better than silence. I want to be transparent with you about what&#8217;s been happening behind the scenes. The Reality of [&hellip;]\u003C/p>\n",13098,{"_acf_changed":17,"_eb_attr":23,"footnotes":23},[28],[],[416,11,32,33,34,35,36,38],"post-13103",[],{"self":419,"collection":424,"about":426,"author":428,"replies":430,"version-history":433,"predecessor-version":436,"wp:featuredmedia":440,"wp:attachment":443,"wp:term":446,"curies":451},[420],{"href":421,"targetHints":422},"https://data.uipress.co/wp-json/wp/v2/posts/13103",{"allow":423},[46],[425],{"href":49},[427],{"href":52},[429],{"embeddable":55,"href":56},[431],{"embeddable":55,"href":432},"https://data.uipress.co/wp-json/wp/v2/comments?post=13103",[434],{"count":20,"href":435},"https://data.uipress.co/wp-json/wp/v2/posts/13103/revisions",[437],{"id":438,"href":439},13104,"https://data.uipress.co/wp-json/wp/v2/posts/13103/revisions/13104",[441],{"embeddable":55,"href":442},"https://data.uipress.co/wp-json/wp/v2/media/13098",[444],{"href":445},"https://data.uipress.co/wp-json/wp/v2/media?parent=13103",[447,449],{"taxonomy":75,"embeddable":55,"href":448},"https://data.uipress.co/wp-json/wp/v2/categories?post=13103",{"taxonomy":78,"embeddable":55,"href":450},"https://data.uipress.co/wp-json/wp/v2/tags?post=13103",[452],{"name":82,"href":83,"templated":55},{"author":454,"wp:featuredmedia":465,"wp:term":533},[455],{"id":20,"name":87,"url":88,"description":23,"link":89,"slug":90,"avatar_urls":456,"acf":457,"_links":458},{"24":92,"48":93,"96":94,"128":95},[],{"self":459,"collection":463},[460],{"href":56,"targetHints":461},{"allow":462},[46],[464],{"href":104},[466],{"id":411,"date":467,"slug":468,"type":109,"link":469,"title":470,"author":20,"featured_media":113,"acf":471,"caption":472,"alt_text":23,"media_type":116,"mime_type":117,"media_details":473,"source_url":509,"_links":513},"2025-11-12T12:47:43","dashboard-overview-new","https://data.uipress.co/uixpress-1-2-introducing-the-modern-media-library-analytics-dashboard-and-major-feature-improvements/dashboard-overview-new/",{"rendered":468},[],{"rendered":23},{"width":119,"height":474,"file":475,"filesize":476,"sizes":477,"image_meta":510,"original_image":512},1468,"2025/11/dashboard-overview-new-scaled.png",352811,{"medium":478,"large":483,"thumbnail":488,"medium_large":492,"1536x1536":497,"2048x2048":502,"full":507},{"file":479,"width":126,"height":480,"filesize":481,"mime_type":117,"source_url":482},"dashboard-overview-new-300x172.png",172,14562,"https://data.uipress.co/wp-content/uploads/2025/11/dashboard-overview-new-300x172.png",{"file":484,"width":132,"height":485,"filesize":486,"mime_type":117,"source_url":487},"dashboard-overview-new-1024x587.png",587,94547,"https://data.uipress.co/wp-content/uploads/2025/11/dashboard-overview-new-1024x587.png",{"file":489,"width":138,"height":138,"filesize":490,"mime_type":117,"source_url":491},"dashboard-overview-new-150x150.png",6186,"https://data.uipress.co/wp-content/uploads/2025/11/dashboard-overview-new-150x150.png",{"file":493,"width":143,"height":494,"filesize":495,"mime_type":117,"source_url":496},"dashboard-overview-new-768x440.png",440,60300,"https://data.uipress.co/wp-content/uploads/2025/11/dashboard-overview-new-768x440.png",{"file":498,"width":149,"height":499,"filesize":500,"mime_type":117,"source_url":501},"dashboard-overview-new-1536x881.png",881,171331,"https://data.uipress.co/wp-content/uploads/2025/11/dashboard-overview-new-1536x881.png",{"file":503,"width":155,"height":504,"filesize":505,"mime_type":117,"source_url":506},"dashboard-overview-new-2048x1174.png",1174,258672,"https://data.uipress.co/wp-content/uploads/2025/11/dashboard-overview-new-2048x1174.png",{"file":508,"width":119,"height":474,"mime_type":117,"source_url":509},"dashboard-overview-new-scaled.png","https://data.uipress.co/wp-content/uploads/2025/11/dashboard-overview-new-scaled.png",{"aperture":163,"credit":23,"camera":23,"caption":23,"created_timestamp":163,"copyright":23,"focal_length":163,"iso":163,"shutter_speed":163,"title":23,"orientation":163,"keywords":511},[],"dashboard-overview-new.png",{"self":514,"collection":518,"about":520,"author":522,"replies":524,"wp:attached-to":527,"curies":531},[515],{"href":442,"targetHints":516},{"allow":517},[46],[519],{"href":173},[521],{"href":176},[523],{"embeddable":55,"href":56},[525],{"embeddable":55,"href":526},"https://data.uipress.co/wp-json/wp/v2/comments?post=13098",[528],{"embeddable":55,"post_type":11,"id":529,"href":530},13093,"https://data.uipress.co/wp-json/wp/v2/posts/13093",[532],{"name":82,"href":83,"templated":55},[534,550],[535],{"id":28,"link":211,"name":212,"slug":213,"taxonomy":75,"acf":536,"_links":537},[],{"self":538,"collection":542,"about":544,"wp:post_type":546,"curies":548},[539],{"href":218,"targetHints":540},{"allow":541},[46],[543],{"href":201},[545],{"href":204},[547],{"href":227},[549],{"name":82,"href":83,"templated":55},[],{"id":529,"date":552,"date_gmt":552,"guid":553,"modified":555,"modified_gmt":555,"slug":556,"status":10,"type":11,"link":557,"title":558,"content":560,"excerpt":562,"author":20,"featured_media":411,"comment_status":22,"ping_status":22,"sticky":17,"template":23,"format":24,"meta":564,"categories":565,"tags":566,"class_list":567,"acf":569,"_links":570,"_embedded":603},"2025-11-12T12:49:04",{"rendered":554},"https://data.uipress.co/?p=13093","2025-11-13T12:55:12","uixpress-1-2-introducing-the-modern-media-library-analytics-dashboard-and-major-feature-improvements","https://data.uipress.co/uixpress-1-2-introducing-the-modern-media-library-analytics-dashboard-and-major-feature-improvements/",{"rendered":559},"uiXpress 1.2: Introducing the Modern Media Library, Analytics Dashboard, and Major Feature Improvements",{"rendered":561,"protected":17},"\n\u003Cp class=\"wp-block-paragraph\">We&#8217;re thrilled to announce the release of \u003Cstrong>uiXpress 1.2\u003C/strong>, a significant update that brings two powerful new features and substantial improvements across the entire platform. This release represents our continued commitment to transforming the WordPress admin experience into something modern, intuitive, and truly powerful.\u003C/p>\n\n\n\n\u003Ch2 class=\"wp-block-heading\" id=\"whats-new-in-1-2\">What&#8217;s New in 1.2\u003C/h2>\n\n\n\n\u003Ch3 class=\"wp-block-heading\" id=\"%f0%9f%8e%a8-brand-new-modern-media-library\">🎨 Brand New: Modern Media Library\u003C/h3>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">The WordPress media library has long been one of the most frustrating parts of the admin experience. With uiXpress 1.2, we&#8217;ve completely rebuilt it from the ground up with a focus on speed, organization, and ease of use.\u003C/p>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">\u003Cstrong>Key Features:\u003C/strong>\u003C/p>\n\n\n\n\u003Cul class=\"wp-block-list\">\n\u003Cli>\u003Cstrong>Dual View Modes\u003C/strong>: Seamlessly switch between a visual grid view for quick browsing and a detailed list view for managing large libraries\u003C/li>\n\n\n\n\u003Cli>\u003Cstrong>Advanced Filtering\u003C/strong>: Filter by media type (images, videos, documents), date ranges, custom tags, and even find unused files\u003C/li>\n\n\n\n\u003Cli>\u003Cstrong>Powerful Search\u003C/strong>: Real-time search across titles, filenames, and metadata with instant results\u003C/li>\n\n\n\n\u003Cli>\u003Cstrong>Bulk Operations\u003C/strong>: Select multiple files and perform bulk edits, duplicates, downloads, or deletions with ease\u003C/li>\n\n\n\n\u003Cli>\u003Cstrong>Media Tagging System\u003C/strong>: Organize your media with custom tags and filter by them instantly\u003C/li>\n\n\n\n\u003Cli>\u003Cstrong>Built-in Image Editor\u003C/strong>: Crop, rotate, resize, and apply adjustments without leaving the admin\u003C/li>\n\n\n\n\u003Cli>\u003Cstrong>Image Optimization\u003C/strong>: One-click optimization with compression statistics and WebP conversion support\u003C/li>\n\n\n\n\u003Cli>\u003Cstrong>Media Replacement\u003C/strong>: Replace files while maintaining all relationships and metadata\u003C/li>\n\n\n\n\u003Cli>\u003Cstrong>Usage Tracking\u003C/strong>: See exactly where each media file is being used across your site\u003C/li>\n\u003C/ul>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">The new Media Library is built with Vue.js 3 and features a beautiful dark mode interface that matches the rest of uiXpress. Whether you&#8217;re managing a handful of images or thousands of files, the experience is fast, intuitive, and powerful.\u003C/p>\n\n\n\n\u003Cfigure class=\"wp-block-image size-large\">\u003Cimg decoding=\"async\" width=\"1024\" height=\"639\" src=\"https://data.uipress.co/wp-content/uploads/2025/11/media-library-overview-new-1024x639.png\" alt=\"\" class=\"wp-image-13099\" srcset=\"https://data.uipress.co/wp-content/uploads/2025/11/media-library-overview-new-1024x639.png 1024w, https://data.uipress.co/wp-content/uploads/2025/11/media-library-overview-new-300x187.png 300w, https://data.uipress.co/wp-content/uploads/2025/11/media-library-overview-new-768x479.png 768w, https://data.uipress.co/wp-content/uploads/2025/11/media-library-overview-new-1536x959.png 1536w, https://data.uipress.co/wp-content/uploads/2025/11/media-library-overview-new-2048x1278.png 2048w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />\u003C/figure>\n\n\n\n\u003Ch3 class=\"wp-block-heading\" id=\"%f0%9f%93%8a-brand-new-dashboard-with-built-in-analytics\">📊 Brand New: Dashboard with Built-in Analytics\u003C/h3>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">Say goodbye to the cluttered default WordPress dashboard. uiXpress 1.2 introduces a completely redesigned dashboard experience with powerful built-in analytics that give you real insights into your site&#8217;s performance.\u003C/p>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">\u003Cstrong>Key Features:\u003C/strong>\u003C/p>\n\n\n\n\u003Cul class=\"wp-block-list\">\n\u003Cli>\u003Cstrong>Card-Based System\u003C/strong>: Modular, customizable dashboard cards that you can organize and configure\u003C/li>\n\n\n\n\u003Cli>\u003Cstrong>Real-Time Analytics\u003C/strong>: Track page views, unique visitors, device usage, geographic data, and referrer sources\u003C/li>\n\n\n\n\u003Cli>\u003Cstrong>Date Range Filtering\u003C/strong>: Analyze any time period with predefined ranges (7 days, 30 days, month, year) or custom date selection\u003C/li>\n\n\n\n\u003Cli>\u003Cstrong>Content Management Insights\u003C/strong>: View recent posts, scheduled content, comments, and user activity at a glance\u003C/li>\n\n\n\n\u003Cli>\u003Cstrong>System Health Monitoring\u003C/strong>: Keep an eye on server health, PHP and WordPress versions, memory usage, and update notifications\u003C/li>\n\n\n\n\u003Cli>\u003Cstrong>Category Organization\u003C/strong>: Organize cards into logical categories (Overview, Analytics) with tab-based navigation\u003C/li>\n\n\n\n\u003Cli>\u003Cstrong>Extensible Architecture\u003C/strong>: Developers can easily create custom cards using our hook-based system\u003C/li>\n\u003C/ul>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">The analytics dashboard provides actionable insights without overwhelming you with data. Every metric is presented in a clean, visual format that makes it easy to understand your site&#8217;s performance at a glance.\u003C/p>\n\n\n\n\u003Cfigure class=\"wp-block-image size-large\">\u003Cimg decoding=\"async\" width=\"1024\" height=\"587\" src=\"https://data.uipress.co/wp-content/uploads/2025/11/dashboard-overview-new-1024x587.png\" alt=\"\" class=\"wp-image-13098\" srcset=\"https://data.uipress.co/wp-content/uploads/2025/11/dashboard-overview-new-1024x587.png 1024w, https://data.uipress.co/wp-content/uploads/2025/11/dashboard-overview-new-300x172.png 300w, https://data.uipress.co/wp-content/uploads/2025/11/dashboard-overview-new-768x440.png 768w, https://data.uipress.co/wp-content/uploads/2025/11/dashboard-overview-new-1536x881.png 1536w, https://data.uipress.co/wp-content/uploads/2025/11/dashboard-overview-new-2048x1174.png 2048w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />\u003C/figure>\n\n\n\n\u003Ch2 class=\"wp-block-heading\" id=\"major-improvements-across-the-board\">Major Improvements Across the Board\u003C/h2>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">While the new Media Library and Analytics Dashboard are the stars of this release, we&#8217;ve also made significant improvements to every existing feature in uiXpress.\u003C/p>\n\n\n\n\u003Ch3 class=\"wp-block-heading\" id=\"%f0%9f%94%8d-global-search-enhancements\">🔍 Global Search Enhancements\u003C/h3>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">Our powerful keyboard-driven search has been refined with:\u003C/p>\n\n\n\n\u003Cul class=\"wp-block-list\">\n\u003Cli>Improved search accuracy and speed\u003C/li>\n\n\n\n\u003Cli>Enhanced command syntax for filtering content types\u003C/li>\n\n\n\n\u003Cli>Better search history and recently accessed items tracking\u003C/li>\n\n\n\n\u003Cli>Smoother keyboard navigation and visual feedback\u003C/li>\n\n\n\n\u003Cli>More comprehensive results across all content types\u003C/li>\n\u003C/ul>\n\n\n\n\u003Ch3 class=\"wp-block-heading\" id=\"%f0%9f%94%8c-plugin-manager-improvements\">🔌 Plugin Manager Improvements\u003C/h3>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">The Plugin Manager now offers:\u003C/p>\n\n\n\n\u003Cul class=\"wp-block-list\">\n\u003Cli>Faster repository search and installation\u003C/li>\n\n\n\n\u003Cli>Enhanced plugin details view with better information display\u003C/li>\n\n\n\n\u003Cli>Improved performance monitoring integration\u003C/li>\n\n\n\n\u003Cli>Streamlined plugin operations with better error handling\u003C/li>\n\n\n\n\u003Cli>More intuitive visual plugin cards\u003C/li>\n\u003C/ul>\n\n\n\n\u003Ch3 class=\"wp-block-heading\" id=\"%f0%9f%93%9d-posts-pages-tables-upgrades\">📝 Posts &amp; Pages Tables Upgrades\u003C/h3>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">The modern posts and pages management interface has been enhanced with:\u003C/p>\n\n\n\n\u003Cul class=\"wp-block-list\">\n\u003Cli>Faster inline editing with better validation\u003C/li>\n\n\n\n\u003Cli>Improved batch operations performance\u003C/li>\n\n\n\n\u003Cli>Enhanced filtering and sorting capabilities\u003C/li>\n\n\n\n\u003Cli>Better hierarchical page management\u003C/li>\n\n\n\n\u003Cli>Smoother column customization and reordering\u003C/li>\n\u003C/ul>\n\n\n\n\u003Ch3 class=\"wp-block-heading\" id=\"%f0%9f%91%a5-users-management-refinements\">👥 Users Management Refinements\u003C/h3>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">User management is now more efficient with:\u003C/p>\n\n\n\n\u003Cul class=\"wp-block-list\">\n\u003Cli>Faster user list loading and rendering\u003C/li>\n\n\n\n\u003Cli>Improved bulk operations for managing multiple users\u003C/li>\n\n\n\n\u003Cli>Enhanced CSV import/export with better field mapping\u003C/li>\n\n\n\n\u003Cli>Better role management and filtering\u003C/li>\n\n\n\n\u003Cli>More intuitive user creation and editing workflows\u003C/li>\n\u003C/ul>\n\n\n\n\u003Ch3 class=\"wp-block-heading\" id=\"%f0%9f%93%a2-admin-notices-system-updates\">📢 Admin Notices System Updates\u003C/h3>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">The Admin Notices feature has been improved with:\u003C/p>\n\n\n\n\u003Cul class=\"wp-block-list\">\n\u003Cli>Better notice editor with enhanced rich text capabilities\u003C/li>\n\n\n\n\u003Cli>Improved role-based targeting and display settings\u003C/li>\n\n\n\n\u003Cli>Enhanced user tracking for dismissed notices\u003C/li>\n\n\n\n\u003Cli>Smoother notice management interface\u003C/li>\n\n\n\n\u003Cli>Better status indicators and organization\u003C/li>\n\u003C/ul>\n\n\n\n\u003Ch2 class=\"wp-block-heading\" id=\"why-these-updates-matter\">Why These Updates Matter\u003C/h2>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">At uiXpress, we believe that managing a WordPress site shouldn&#8217;t feel like a chore. Every feature we build is designed with three core principles in mind:\u003C/p>\n\n\n\n\u003Col class=\"wp-block-list\">\n\u003Cli>\u003Cstrong>Speed\u003C/strong>: Get things done faster with intuitive interfaces and powerful shortcuts\u003C/li>\n\n\n\n\u003Cli>\u003Cstrong>Clarity\u003C/strong>: See what you need, when you need it, without clutter\u003C/li>\n\n\n\n\u003Cli>\u003Cstrong>Power\u003C/strong>: Access advanced features when you need them, without complexity when you don&#8217;t\u003C/li>\n\u003C/ol>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">The new Media Library eliminates the frustration of managing media files. The Analytics Dashboard gives you real insights without requiring third-party plugins. And all the improvements across existing features make your daily workflow smoother and more efficient.\u003C/p>\n\n\n\n\u003Ch2 class=\"wp-block-heading\" id=\"built-for-modern-wordpress\">Built for Modern WordPress\u003C/h2>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">All new features in uiXpress 1.2 are built with:\u003C/p>\n\n\n\n\u003Cul class=\"wp-block-list\">\n\u003Cli>\u003Cstrong>Vue.js 3\u003C/strong> with Composition API for reactive, performant interfaces\u003C/li>\n\n\n\n\u003Cli>\u003Cstrong>Tailwind CSS\u003C/strong> with full dark mode support\u003C/li>\n\n\n\n\u003Cli>\u003Cstrong>WordPress REST API\u003C/strong> for seamless integration\u003C/li>\n\n\n\n\u003Cli>\u003Cstrong>Shadow DOM\u003C/strong> for style isolation and conflict prevention\u003C/li>\n\n\n\n\u003Cli>\u003Cstrong>Responsive Design\u003C/strong> that works beautifully on all devices\u003C/li>\n\u003C/ul>\n\n\n\n\u003Ch2 class=\"wp-block-heading\" id=\"getting-started-with-1-2\">Getting Started with 1.2\u003C/h2>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">If you&#8217;re already using uiXpress, simply update to version 1.2 to get access to all the new features and improvements. The new Media Library and Analytics Dashboard will be available immediately, and you&#8217;ll notice the improvements across all existing features.\u003C/p>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">For new users, uiXpress 1.2 represents the best starting point yet. You&#8217;ll get access to:\u003C/p>\n\n\n\n\u003Cul class=\"wp-block-list\">\n\u003Cli>Modern Media Library\u003C/li>\n\n\n\n\u003Cli>Analytics Dashboard\u003C/li>\n\n\n\n\u003Cli>Global Search\u003C/li>\n\n\n\n\u003Cli>Plugin Manager\u003C/li>\n\n\n\n\u003Cli>Posts &amp; Pages Tables\u003C/li>\n\n\n\n\u003Cli>Users Management\u003C/li>\n\n\n\n\u003Cli>Admin Notices\u003C/li>\n\n\n\n\u003Cli>And much more\u003C/li>\n\u003C/ul>\n\n\n\n\u003Ch2 class=\"wp-block-heading\" id=\"whats-next\">What&#8217;s Next\u003C/h2>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">This release is just the beginning. We&#8217;re already working on exciting new features and improvements for future versions. Your feedback drives our development, so please let us know what you think of version 1.2 and what you&#8217;d like to see next.\u003C/p>\n\n\n\n\u003Ch2 class=\"wp-block-heading\" id=\"thank-you\">Thank You\u003C/h2>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">Thank you to everyone who uses uiXpress and provides feedback. Your support makes it possible for us to continue building the modern WordPress admin experience you deserve.\u003C/p>\n\n\n\n\u003Chr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">\u003Cem>uiXpress 1.2 will be available on the 13th of November 2025. Update your existing installation or start a new one to experience all the new features and improvements.\u003C/em>\u003C/p>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">\u003C/p>\n",{"rendered":563,"protected":17},"\u003Cp>We&#8217;re thrilled to announce the release of uiXpress 1.2, a significant update that brings two powerful new features and substantial improvements across the entire platform. This release represents our continued commitment to transforming the WordPress admin experience into something modern, intuitive, and truly powerful. What&#8217;s New in 1.2 🎨 Brand New: Modern Media Library The [&hellip;]\u003C/p>\n",{"_acf_changed":17,"_eb_attr":23,"footnotes":23},[27,28],[],[568,11,32,33,34,35,36,37,38],"post-13093",[],{"self":571,"collection":575,"about":577,"author":579,"replies":581,"version-history":584,"predecessor-version":587,"wp:featuredmedia":591,"wp:attachment":593,"wp:term":596,"curies":601},[572],{"href":530,"targetHints":573},{"allow":574},[46],[576],{"href":49},[578],{"href":52},[580],{"embeddable":55,"href":56},[582],{"embeddable":55,"href":583},"https://data.uipress.co/wp-json/wp/v2/comments?post=13093",[585],{"count":20,"href":586},"https://data.uipress.co/wp-json/wp/v2/posts/13093/revisions",[588],{"id":589,"href":590},13100,"https://data.uipress.co/wp-json/wp/v2/posts/13093/revisions/13100",[592],{"embeddable":55,"href":442},[594],{"href":595},"https://data.uipress.co/wp-json/wp/v2/media?parent=13093",[597,599],{"taxonomy":75,"embeddable":55,"href":598},"https://data.uipress.co/wp-json/wp/v2/categories?post=13093",{"taxonomy":78,"embeddable":55,"href":600},"https://data.uipress.co/wp-json/wp/v2/tags?post=13093",[602],{"name":82,"href":83,"templated":55},{"author":604,"wp:featuredmedia":615,"wp:term":648},[605],{"id":20,"name":87,"url":88,"description":23,"link":89,"slug":90,"avatar_urls":606,"acf":607,"_links":608},{"24":92,"48":93,"96":94,"128":95},[],{"self":609,"collection":613},[610],{"href":56,"targetHints":611},{"allow":612},[46],[614],{"href":104},[616],{"id":411,"date":467,"slug":468,"type":109,"link":469,"title":617,"author":20,"featured_media":113,"acf":618,"caption":619,"alt_text":23,"media_type":116,"mime_type":117,"media_details":620,"source_url":509,"_links":631},{"rendered":468},[],{"rendered":23},{"width":119,"height":474,"file":475,"filesize":476,"sizes":621,"image_meta":629,"original_image":512},{"medium":622,"large":623,"thumbnail":624,"medium_large":625,"1536x1536":626,"2048x2048":627,"full":628},{"file":479,"width":126,"height":480,"filesize":481,"mime_type":117,"source_url":482},{"file":484,"width":132,"height":485,"filesize":486,"mime_type":117,"source_url":487},{"file":489,"width":138,"height":138,"filesize":490,"mime_type":117,"source_url":491},{"file":493,"width":143,"height":494,"filesize":495,"mime_type":117,"source_url":496},{"file":498,"width":149,"height":499,"filesize":500,"mime_type":117,"source_url":501},{"file":503,"width":155,"height":504,"filesize":505,"mime_type":117,"source_url":506},{"file":508,"width":119,"height":474,"mime_type":117,"source_url":509},{"aperture":163,"credit":23,"camera":23,"caption":23,"created_timestamp":163,"copyright":23,"focal_length":163,"iso":163,"shutter_speed":163,"title":23,"orientation":163,"keywords":630},[],{"self":632,"collection":636,"about":638,"author":640,"replies":642,"wp:attached-to":644,"curies":646},[633],{"href":442,"targetHints":634},{"allow":635},[46],[637],{"href":173},[639],{"href":176},[641],{"embeddable":55,"href":56},[643],{"embeddable":55,"href":526},[645],{"embeddable":55,"post_type":11,"id":529,"href":530},[647],{"name":82,"href":83,"templated":55},[649,680],[650,665],{"id":27,"link":189,"name":190,"slug":191,"taxonomy":75,"acf":651,"_links":652},[],{"self":653,"collection":657,"about":659,"wp:post_type":661,"curies":663},[654],{"href":196,"targetHints":655},{"allow":656},[46],[658],{"href":201},[660],{"href":204},[662],{"href":207},[664],{"name":82,"href":83,"templated":55},{"id":28,"link":211,"name":212,"slug":213,"taxonomy":75,"acf":666,"_links":667},[],{"self":668,"collection":672,"about":674,"wp:post_type":676,"curies":678},[669],{"href":218,"targetHints":670},{"allow":671},[46],[673],{"href":201},[675],{"href":204},[677],{"href":227},[679],{"name":82,"href":83,"templated":55},[],{"id":682,"date":683,"date_gmt":683,"guid":684,"modified":683,"modified_gmt":683,"slug":686,"status":10,"type":11,"link":687,"title":688,"content":690,"excerpt":692,"author":20,"featured_media":694,"comment_status":22,"ping_status":22,"sticky":17,"template":23,"format":24,"meta":695,"categories":696,"tags":697,"class_list":698,"acf":701,"_links":702,"_embedded":737},13058,"2024-11-01T14:20:40",{"rendered":685},"https://data.uipress.co/?p=13058","thank-you-for-supporting-diabetes-uk-over-2400-raised-%f0%9f%8e%89","https://data.uipress.co/thank-you-for-supporting-diabetes-uk-over-2400-raised-%f0%9f%8e%89/",{"rendered":689},"Thank You for Supporting Diabetes UK: Over $2,400 Raised! 🎉",{"rendered":691,"protected":17},"\n\u003Cp class=\"wp-block-paragraph\">We&#8217;re absolutely thrilled to announce that thanks to our amazing community, uiPress has raised over $2,400 for Diabetes UK during our October fundraising campaign! This incredible achievement was made possible by every single person who purchased or renewed their uiPress and uiXpress licenses last month.\u003C/p>\n\n\n\n\u003Ch2 class=\"wp-block-heading\" id=\"the-impact-of-your-support\">The Impact of Your Support\u003C/h2>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">Your contributions will help Diabetes UK continue their vital work:\u003C/p>\n\n\n\n\u003Cul class=\"wp-block-list\">\n\u003Cli>Funding crucial research into diabetes treatment and prevention\u003C/li>\n\n\n\n\u003Cli>Supporting individuals and families affected by diabetes\u003C/li>\n\n\n\n\u003Cli>Raising awareness and advocating for better care\u003C/li>\n\n\n\n\u003Cli>Providing essential resources and education\u003C/li>\n\u003C/ul>\n\n\n\n\u003Ch2 class=\"wp-block-heading\" id=\"a-personal-thank-you\">A Personal Thank You\u003C/h2>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">When we launched this initiative, we shared that this cause is deeply personal to our founder. The overwhelming response from our community has touched us profoundly. Every purchase, every renewal, and every message of support has shown us that the WordPress community isn&#8217;t just about building websites – it&#8217;s about building a better world together.\u003C/p>\n\n\n\n\u003Ch2 class=\"wp-block-heading\" id=\"moving-forward\">Moving Forward\u003C/h2>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">While our October fundraising campaign has concluded, our commitment to making a positive impact continues. The funds raised will directly support Diabetes UK&#8217;s mission, and we&#8217;re grateful to have played a small part in their crucial work.\u003C/p>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">To everyone who participated:\u003C/p>\n\n\n\n\u003Cul class=\"wp-block-list\">\n\u003Cli>Our new customers who chose this moment to join the uiPress family\u003C/li>\n\n\n\n\u003Cli>Our existing users who renewed their licenses during the campaign\u003C/li>\n\n\n\n\u003Cli>Those who shared our campaign and helped spread the word\u003C/li>\n\u003C/ul>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">\u003Cstrong>Thank you. Your support means more than you know.\u003C/strong>\u003C/p>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">For those interested in learning more about Diabetes UK and their ongoing work, please visit \u003Ca href=\"https://www.diabetes.org.uk\">www.diabetes.org.uk\u003C/a>.\u003C/p>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">Together, we&#8217;ve shown that the WordPress community can make a real difference beyond the digital realm. Here&#8217;s to many more opportunities to create positive change – one plugin at a time.\u003C/p>\n\n\n\n\u003Chr class=\"wp-block-separator has-alpha-channel-opacity\"/>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">\u003Cem>From all of us at uiPress, thank you for helping us make this campaign a success.\u003C/em>\u003C/p>\n",{"rendered":693,"protected":17},"\u003Cp>We&#8217;re absolutely thrilled to announce that thanks to our amazing community, uiPress has raised over $2,400 for Diabetes UK during our October fundraising campaign! This incredible achievement was made possible by every single person who purchased or renewed their uiPress and uiXpress licenses last month. The Impact of Your Support Your contributions will help Diabetes [&hellip;]\u003C/p>\n",13052,{"_acf_changed":17,"_eb_attr":23,"footnotes":23},[20],[],[699,11,32,33,34,35,36,700],"post-13058","category-uncategorized",[],{"self":703,"collection":708,"about":710,"author":712,"replies":714,"version-history":717,"predecessor-version":720,"wp:featuredmedia":724,"wp:attachment":727,"wp:term":730,"curies":735},[704],{"href":705,"targetHints":706},"https://data.uipress.co/wp-json/wp/v2/posts/13058",{"allow":707},[46],[709],{"href":49},[711],{"href":52},[713],{"embeddable":55,"href":56},[715],{"embeddable":55,"href":716},"https://data.uipress.co/wp-json/wp/v2/comments?post=13058",[718],{"count":20,"href":719},"https://data.uipress.co/wp-json/wp/v2/posts/13058/revisions",[721],{"id":722,"href":723},13059,"https://data.uipress.co/wp-json/wp/v2/posts/13058/revisions/13059",[725],{"embeddable":55,"href":726},"https://data.uipress.co/wp-json/wp/v2/media/13052",[728],{"href":729},"https://data.uipress.co/wp-json/wp/v2/media?parent=13058",[731,733],{"taxonomy":75,"embeddable":55,"href":732},"https://data.uipress.co/wp-json/wp/v2/categories?post=13058",{"taxonomy":78,"embeddable":55,"href":734},"https://data.uipress.co/wp-json/wp/v2/tags?post=13058",[736],{"name":82,"href":83,"templated":55},{"author":738,"wp:featuredmedia":749,"wp:term":814},[739],{"id":20,"name":87,"url":88,"description":23,"link":89,"slug":90,"avatar_urls":740,"acf":741,"_links":742},{"24":92,"48":93,"96":94,"128":95},[],{"self":743,"collection":747},[744],{"href":56,"targetHints":745},{"allow":746},[46],[748],{"href":104},[750],{"id":694,"date":751,"slug":752,"type":109,"link":753,"title":754,"author":20,"featured_media":113,"acf":756,"caption":757,"alt_text":23,"media_type":116,"mime_type":758,"media_details":759,"source_url":791,"_links":794},"2024-09-26T12:46:34","diabetes-copy","https://data.uipress.co/supporting-diabetes-uk-uipress-donates-10-of-revenue/diabetes-copy/",{"rendered":755},"diabetes copy",[],{"rendered":23},"image/webp",{"width":760,"height":761,"file":762,"filesize":763,"sizes":764,"image_meta":792},2000,1338,"2024/09/diabetes-copy.webp",88742,{"medium":765,"large":770,"thumbnail":775,"medium_large":779,"1536x1536":784,"full":789},{"file":766,"width":126,"height":767,"filesize":768,"mime_type":758,"source_url":769},"diabetes-copy-300x201.webp",201,7886,"https://data.uipress.co/wp-content/uploads/2024/09/diabetes-copy-300x201.webp",{"file":771,"width":132,"height":772,"filesize":773,"mime_type":758,"source_url":774},"diabetes-copy-1024x685.webp",685,38170,"https://data.uipress.co/wp-content/uploads/2024/09/diabetes-copy-1024x685.webp",{"file":776,"width":138,"height":138,"filesize":777,"mime_type":758,"source_url":778},"diabetes-copy-150x150.webp",4406,"https://data.uipress.co/wp-content/uploads/2024/09/diabetes-copy-150x150.webp",{"file":780,"width":143,"height":781,"filesize":782,"mime_type":758,"source_url":783},"diabetes-copy-768x514.webp",514,26824,"https://data.uipress.co/wp-content/uploads/2024/09/diabetes-copy-768x514.webp",{"file":785,"width":149,"height":786,"filesize":787,"mime_type":758,"source_url":788},"diabetes-copy-1536x1028.webp",1028,59376,"https://data.uipress.co/wp-content/uploads/2024/09/diabetes-copy-1536x1028.webp",{"file":790,"width":760,"height":761,"mime_type":758,"source_url":791},"diabetes-copy.webp","https://data.uipress.co/wp-content/uploads/2024/09/diabetes-copy.webp",{"aperture":163,"credit":23,"camera":23,"caption":23,"created_timestamp":163,"copyright":23,"focal_length":163,"iso":163,"shutter_speed":163,"title":23,"orientation":163,"keywords":793},[],{"self":795,"collection":799,"about":801,"author":803,"replies":805,"wp:attached-to":808,"curies":812},[796],{"href":726,"targetHints":797},{"allow":798},[46],[800],{"href":173},[802],{"href":176},[804],{"embeddable":55,"href":56},[806],{"embeddable":55,"href":807},"https://data.uipress.co/wp-json/wp/v2/comments?post=13052",[809],{"embeddable":55,"post_type":11,"id":810,"href":811},13051,"https://data.uipress.co/wp-json/wp/v2/posts/13051",[813],{"name":82,"href":83,"templated":55},[815,836],[816],{"id":20,"link":817,"name":818,"slug":819,"taxonomy":75,"acf":820,"_links":821},"https://data.uipress.co/category/uncategorized/","Uncategorized","uncategorized",[],{"self":822,"collection":827,"about":829,"wp:post_type":831,"curies":834},[823],{"href":824,"targetHints":825},"https://data.uipress.co/wp-json/wp/v2/categories/1",{"allow":826},[46],[828],{"href":201},[830],{"href":204},[832],{"href":833},"https://data.uipress.co/wp-json/wp/v2/posts?categories=1",[835],{"name":82,"href":83,"templated":55},[],{"id":810,"date":838,"date_gmt":838,"guid":839,"modified":841,"modified_gmt":841,"slug":842,"status":10,"type":11,"link":843,"title":844,"content":846,"excerpt":848,"author":20,"featured_media":694,"comment_status":22,"ping_status":22,"sticky":17,"template":23,"format":24,"meta":850,"categories":851,"tags":852,"class_list":853,"acf":855,"_links":856,"_embedded":890},"2024-09-26T12:46:49",{"rendered":840},"https://data.uipress.co/?p=13051","2024-09-26T12:50:37","supporting-diabetes-uk-uipress-donates-10-of-revenue","https://data.uipress.co/supporting-diabetes-uk-uipress-donates-10-of-revenue/",{"rendered":845},"Supporting Diabetes UK: uiPress Donates 10% of Revenue",{"rendered":847,"protected":17},"\n\u003Cp class=\"wp-block-paragraph\">At uiPress, we believe in the power of technology to improve lives &#8211; not just in the digital realm, but in the physical world as well. That&#8217;s why we&#8217;re proud to announce our commitment to donate 10% of our revenue from both uiPress and uiXpress to Diabetes UK from now until the end of October.\u003C/p>\n\n\n\n\u003Ch2 class=\"wp-block-heading\" id=\"why-diabetes-uk\">Why Diabetes UK?\u003C/h2>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">Diabetes affects millions of people worldwide, and its impact extends far beyond those diagnosed. For our team, this cause is deeply personal. Someone extremely close to our founder&#8217;s heart lives with Type 1 diabetes, bringing the challenges and triumphs of managing this condition into sharp focus for our team.\u003C/p>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">Diabetes UK is at the forefront of diabetes research, care, and support in the United Kingdom. They work tirelessly to:\u003C/p>\n\n\n\n\u003Cul class=\"wp-block-list\">\n\u003Cli>Fund groundbreaking research into all types of diabetes\u003C/li>\n\n\n\n\u003Cli>Provide support and information to help people manage their diabetes\u003C/li>\n\n\n\n\u003Cli>Campaign for better care and greater awareness\u003C/li>\n\u003C/ul>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">By supporting Diabetes UK, we&#8217;re not just donating money &#8211; we&#8217;re investing in hope, in innovation, and in a future where diabetes can be better managed and, hopefully one day, cured.\u003C/p>\n\n\n\n\u003Cfigure class=\"wp-block-image size-full\">\u003Cimg decoding=\"async\" width=\"600\" height=\"170\" src=\"https://data.uipress.co/wp-content/uploads/2024/09/374E0CE5-458B-4E06-867178F82B15755A-1.png\" alt=\"\" class=\"wp-image-13054\" srcset=\"https://data.uipress.co/wp-content/uploads/2024/09/374E0CE5-458B-4E06-867178F82B15755A-1.png 600w, https://data.uipress.co/wp-content/uploads/2024/09/374E0CE5-458B-4E06-867178F82B15755A-1-300x85.png 300w\" sizes=\"(max-width: 600px) 100vw, 600px\" />\u003C/figure>\n\n\n\n\u003Ch2 class=\"wp-block-heading\" id=\"how-you-can-help\">How You Can Help\u003C/h2>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">Every purchase of uiPress or uiXpress during this period will contribute directly to this cause. Whether you&#8217;re upgrading your WordPress admin interface with uiPress&#8217;s powerful customization tools or opting for the streamlined, out-of-the-box solution of uiXpress, you&#8217;ll be making a difference.\u003C/p>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">Here&#8217;s how your purchase translates to support:\u003C/p>\n\n\n\n\u003Cul class=\"wp-block-list\">\n\u003Cli>10% of every sale goes directly to Diabetes UK\u003C/li>\n\n\n\n\u003Cli>Your contribution helps fund vital research and support services\u003C/li>\n\n\n\n\u003Cli>You get a top-tier WordPress plugin while supporting a crucial cause\u003C/li>\n\u003C/ul>\n\n\n\n\u003Ch2 class=\"wp-block-heading\" id=\"about-our-products\">About Our Products\u003C/h2>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">For those new to our offerings:\u003C/p>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">\u003Cstrong>uiPress\u003C/strong> is our flagship product, offering unparalleled customization for your WordPress admin interface. It&#8217;s perfect for those who want complete control over their backend experience.\u003C/p>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">\u003Cstrong>uiXpress\u003C/strong> is our newest addition &#8211; a streamlined version of uiPress that offers instant admin interface modernization with zero configuration needed. It&#8217;s ideal for users who want a quick, hassle-free upgrade to their WordPress admin.\u003C/p>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">Both products are designed with performance, usability, and aesthetics in mind &#8211; and now, they&#8217;re also a way to contribute to a cause that&#8217;s close to our hearts.\u003C/p>\n\n\n\n\u003Ch2 class=\"wp-block-heading\" id=\"join-us-in-making-a-difference\">Join Us in Making a Difference\u003C/h2>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">We&#8217;re excited about this initiative and the potential impact we can make together. By choosing uiPress or uiXpress for your WordPress needs, you&#8217;re not just investing in your website &#8211; you&#8217;re investing in the fight against diabetes.\u003C/p>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">Thank you for your support, and here&#8217;s to creating beautiful websites and a healthier world!\u003C/p>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">To learn more about Diabetes UK and their incredible work, visit their website at \u003Ca href=\"https://www.diabetes.org.uk\">www.diabetes.org.uk\u003C/a>.\u003C/p>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">Together, we can make a difference &#8211; one plugin at a time.\u003C/p>\n",{"rendered":849,"protected":17},"\u003Cp>At uiPress, we believe in the power of technology to improve lives &#8211; not just in the digital realm, but in the physical world as well. That&#8217;s why we&#8217;re proud to announce our commitment to donate 10% of our revenue from both uiPress and uiXpress to Diabetes UK from now until the end of October. [&hellip;]\u003C/p>\n",{"_acf_changed":17,"_eb_attr":23,"footnotes":23},[27,28],[],[854,11,32,33,34,35,36,37,38],"post-13051",[],{"self":857,"collection":861,"about":863,"author":865,"replies":867,"version-history":870,"predecessor-version":874,"wp:featuredmedia":878,"wp:attachment":880,"wp:term":883,"curies":888},[858],{"href":811,"targetHints":859},{"allow":860},[46],[862],{"href":49},[864],{"href":52},[866],{"embeddable":55,"href":56},[868],{"embeddable":55,"href":869},"https://data.uipress.co/wp-json/wp/v2/comments?post=13051",[871],{"count":872,"href":873},2,"https://data.uipress.co/wp-json/wp/v2/posts/13051/revisions",[875],{"id":876,"href":877},13055,"https://data.uipress.co/wp-json/wp/v2/posts/13051/revisions/13055",[879],{"embeddable":55,"href":726},[881],{"href":882},"https://data.uipress.co/wp-json/wp/v2/media?parent=13051",[884,886],{"taxonomy":75,"embeddable":55,"href":885},"https://data.uipress.co/wp-json/wp/v2/categories?post=13051",{"taxonomy":78,"embeddable":55,"href":887},"https://data.uipress.co/wp-json/wp/v2/tags?post=13051",[889],{"name":82,"href":83,"templated":55},{"author":891,"wp:featuredmedia":902,"wp:term":934},[892],{"id":20,"name":87,"url":88,"description":23,"link":89,"slug":90,"avatar_urls":893,"acf":894,"_links":895},{"24":92,"48":93,"96":94,"128":95},[],{"self":896,"collection":900},[897],{"href":56,"targetHints":898},{"allow":899},[46],[901],{"href":104},[903],{"id":694,"date":751,"slug":752,"type":109,"link":753,"title":904,"author":20,"featured_media":113,"acf":905,"caption":906,"alt_text":23,"media_type":116,"mime_type":758,"media_details":907,"source_url":791,"_links":917},{"rendered":755},[],{"rendered":23},{"width":760,"height":761,"file":762,"filesize":763,"sizes":908,"image_meta":915},{"medium":909,"large":910,"thumbnail":911,"medium_large":912,"1536x1536":913,"full":914},{"file":766,"width":126,"height":767,"filesize":768,"mime_type":758,"source_url":769},{"file":771,"width":132,"height":772,"filesize":773,"mime_type":758,"source_url":774},{"file":776,"width":138,"height":138,"filesize":777,"mime_type":758,"source_url":778},{"file":780,"width":143,"height":781,"filesize":782,"mime_type":758,"source_url":783},{"file":785,"width":149,"height":786,"filesize":787,"mime_type":758,"source_url":788},{"file":790,"width":760,"height":761,"mime_type":758,"source_url":791},{"aperture":163,"credit":23,"camera":23,"caption":23,"created_timestamp":163,"copyright":23,"focal_length":163,"iso":163,"shutter_speed":163,"title":23,"orientation":163,"keywords":916},[],{"self":918,"collection":922,"about":924,"author":926,"replies":928,"wp:attached-to":930,"curies":932},[919],{"href":726,"targetHints":920},{"allow":921},[46],[923],{"href":173},[925],{"href":176},[927],{"embeddable":55,"href":56},[929],{"embeddable":55,"href":807},[931],{"embeddable":55,"post_type":11,"id":810,"href":811},[933],{"name":82,"href":83,"templated":55},[935,966],[936,951],{"id":27,"link":189,"name":190,"slug":191,"taxonomy":75,"acf":937,"_links":938},[],{"self":939,"collection":943,"about":945,"wp:post_type":947,"curies":949},[940],{"href":196,"targetHints":941},{"allow":942},[46],[944],{"href":201},[946],{"href":204},[948],{"href":207},[950],{"name":82,"href":83,"templated":55},{"id":28,"link":211,"name":212,"slug":213,"taxonomy":75,"acf":952,"_links":953},[],{"self":954,"collection":958,"about":960,"wp:post_type":962,"curies":964},[955],{"href":218,"targetHints":956},{"allow":957},[46],[959],{"href":201},[961],{"href":204},[963],{"href":227},[965],{"name":82,"href":83,"templated":55},[],{"id":968,"date":969,"date_gmt":969,"guid":970,"modified":969,"modified_gmt":969,"slug":972,"status":10,"type":11,"link":973,"title":974,"content":976,"excerpt":978,"author":20,"featured_media":980,"comment_status":22,"ping_status":22,"sticky":17,"template":23,"format":24,"meta":981,"categories":982,"tags":983,"class_list":984,"acf":986,"_links":987,"_embedded":1022},13045,"2024-09-05T10:55:19",{"rendered":971},"https://data.uipress.co/?p=13045","uipress-vs-uixpress-understanding-the-differences","https://data.uipress.co/uipress-vs-uixpress-understanding-the-differences/",{"rendered":975},"uiPress vs uiXpress: Understanding the Differences",{"rendered":977,"protected":17},"\n\u003Cp class=\"wp-block-paragraph\">Both uiPress and uiXpress are powerful tools designed to enhance your WordPress admin experience, but they cater to different needs and preferences. Here&#8217;s a comprehensive comparison to help you choose the right solution for your website:\u003C/p>\n\n\n\n\u003Ch2 class=\"wp-block-heading\" id=\"uipress-the-customizable-powerhouse\">uiPress: The Customizable Powerhouse\u003C/h2>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">uiPress is our flagship product, offering:\u003C/p>\n\n\n\n\u003Cul class=\"wp-block-list\">\n\u003Cli>\u003Cstrong>Advanced Customisation\u003C/strong>: Think of uiPress as a &#8220;page builder&#8221; for your WordPress admin. It provides extensive options to tailor every aspect of your admin interface.\u003C/li>\n\n\n\n\u003Cli>\u003Cstrong>uiBuilder\u003C/strong>: A powerful drag-and-drop interface for creating custom admin pages and dashboards.\u003C/li>\n\n\n\n\u003Cli>\u003Cstrong>Analytics Integration\u003C/strong>: Built-in tools to track and visualize your website&#8217;s performance directly in the admin area.\u003C/li>\n\n\n\n\u003Cli>\u003Cstrong>Flexible Configuration\u003C/strong>: Ideal for users who want granular control over their admin interface and are comfortable with more complex setups.\u003C/li>\n\n\n\n\u003Cli>\u003Cstrong>Extensive Feature Set\u003C/strong>: Includes all features of uiXpress, plus additional advanced capabilities for power users.\u003C/li>\n\u003C/ul>\n\n\n\n\u003Ch2 class=\"wp-block-heading\" id=\"uixpress-streamlined-simplicity\">uiXpress: Streamlined Simplicity\u003C/h2>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">uiXpress is our solution for those seeking instant admin enhancement:\u003C/p>\n\n\n\n\u003Cul class=\"wp-block-list\">\n\u003Cli>\u003Cstrong>Pre-Designed Theme\u003C/strong>: uiXpress functions as a streamlined, ready-to-use theme for your WordPress admin.\u003C/li>\n\n\n\n\u003Cli>\u003Cstrong>Instant Upgrade\u003C/strong>: Elevate your WordPress admin experience immediately with a modern, efficient interface right out of the box.\u003C/li>\n\n\n\n\u003Cli>\u003Cstrong>No Complex Setup\u003C/strong>: Designed for users who want a great-looking admin interface without extensive configuration.\u003C/li>\n\n\n\n\u003Cli>\u003Cstrong>Core Functionality\u003C/strong>: Delivers the sleek design and essential features of uiPress in a simplified package.\u003C/li>\n\u003C/ul>\n\n\n\n\u003Ch3 class=\"wp-block-heading\" id=\"key-features-of-uixpress\">Key Features of uiXpress:\u003C/h3>\n\n\n\n\u003Col class=\"wp-block-list\">\n\u003Cli>Modern admin theme with a fresh, intuitive design\u003C/li>\n\n\n\n\u003Cli>Dark mode option for comfortable viewing\u003C/li>\n\n\n\n\u003Cli>Stylish login page theme\u003C/li>\n\n\n\n\u003Cli>White label options for branding customization\u003C/li>\n\n\n\n\u003Cli>Global search functionality for quick access to content and settings\u003C/li>\n\n\n\n\u003Cli>Admin menu builder for organizing your dashboard\u003C/li>\n\n\n\n\u003Cli>Powerful white label features to personalize the admin experience\u003C/li>\n\u003C/ol>\n\n\n\n\u003Ch2 class=\"wp-block-heading\" id=\"choosing-between-uipress-and-uixpress\">Choosing Between uiPress and uiXpress\u003C/h2>\n\n\n\n\u003Ch4 class=\"wp-block-heading\">Choose \u003Cstrong>uiPress\u003C/strong> if you:\u003C/h4>\n\n\n\n\u003Cul class=\"wp-block-list\">\n\u003Cli>Need maximum flexibility and control over your admin interface\u003C/li>\n\n\n\n\u003Cli>Want to create custom admin pages and dashboards\u003C/li>\n\n\n\n\u003Cli>Require advanced features like built-in analytics\u003C/li>\n\n\n\n\u003Cli>Are comfortable with more complex configuration options\u003C/li>\n\u003C/ul>\n\n\n\n\u003Ch4 class=\"wp-block-heading\">Choose \u003Cstrong>uiXpress\u003C/strong> if you:\u003C/h4>\n\n\n\n\u003Cul class=\"wp-block-list\">\n\u003Cli>Want an instant, out-of-the-box admin interface upgrade\u003C/li>\n\n\n\n\u003Cli>Prefer a simpler, pre-configured solution\u003C/li>\n\n\n\n\u003Cli>Need core enhancements without extensive customization options\u003C/li>\n\n\n\n\u003Cli>Value ease of use and quick setup over advanced customization\u003C/li>\n\u003C/ul>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">Both plugins share our commitment to modernizing and improving the WordPress admin experience. uiPress offers more power and flexibility, while uiXpress provides a streamlined, instantly beautiful admin interface with no complex setup required.\u003C/p>\n",{"rendered":979,"protected":17},"\u003Cp>Both uiPress and uiXpress are powerful tools designed to enhance your WordPress admin experience, but they cater to different needs and preferences. Here&#8217;s a comprehensive comparison to help you choose the right solution for your website: uiPress: The Customizable Powerhouse uiPress is our flagship product, offering: uiXpress: Streamlined Simplicity uiXpress is our solution for those [&hellip;]\u003C/p>\n",13027,{"_acf_changed":17,"_eb_attr":23,"footnotes":23},[27],[],[985,11,32,33,34,35,36,37],"post-13045",[],{"self":988,"collection":993,"about":995,"author":997,"replies":999,"version-history":1002,"predecessor-version":1005,"wp:featuredmedia":1009,"wp:attachment":1012,"wp:term":1015,"curies":1020},[989],{"href":990,"targetHints":991},"https://data.uipress.co/wp-json/wp/v2/posts/13045",{"allow":992},[46],[994],{"href":49},[996],{"href":52},[998],{"embeddable":55,"href":56},[1000],{"embeddable":55,"href":1001},"https://data.uipress.co/wp-json/wp/v2/comments?post=13045",[1003],{"count":20,"href":1004},"https://data.uipress.co/wp-json/wp/v2/posts/13045/revisions",[1006],{"id":1007,"href":1008},13046,"https://data.uipress.co/wp-json/wp/v2/posts/13045/revisions/13046",[1010],{"embeddable":55,"href":1011},"https://data.uipress.co/wp-json/wp/v2/media/13027",[1013],{"href":1014},"https://data.uipress.co/wp-json/wp/v2/media?parent=13045",[1016,1018],{"taxonomy":75,"embeddable":55,"href":1017},"https://data.uipress.co/wp-json/wp/v2/categories?post=13045",{"taxonomy":78,"embeddable":55,"href":1019},"https://data.uipress.co/wp-json/wp/v2/tags?post=13045",[1021],{"name":82,"href":83,"templated":55},{"author":1023,"wp:featuredmedia":1034,"wp:term":1102},[1024],{"id":20,"name":87,"url":88,"description":23,"link":89,"slug":90,"avatar_urls":1025,"acf":1026,"_links":1027},{"24":92,"48":93,"96":94,"128":95},[],{"self":1028,"collection":1032},[1029],{"href":56,"targetHints":1030},{"allow":1031},[46],[1033],{"href":104},[1035],{"id":980,"date":1036,"slug":1037,"type":109,"link":1038,"title":1039,"author":20,"featured_media":113,"acf":1040,"caption":1041,"alt_text":23,"media_type":116,"mime_type":117,"media_details":1042,"source_url":1079,"_links":1082},"2024-07-31T13:13:00","modern_admin_theme","https://data.uipress.co/introducing-uixpress-a-simple-yet-powerful-admin-theme-for-wordpress/modern_admin_theme/",{"rendered":1037},[],{"rendered":23},{"width":1043,"height":1044,"file":1045,"filesize":1046,"sizes":1047,"image_meta":1080},2272,1506,"2024/07/modern_admin_theme.png",448138,{"medium":1048,"large":1053,"thumbnail":1058,"medium_large":1062,"1536x1536":1067,"2048x2048":1072,"full":1077},{"file":1049,"width":126,"height":1050,"filesize":1051,"mime_type":117,"source_url":1052},"modern_admin_theme-300x199.png",199,23950,"https://data.uipress.co/wp-content/uploads/2024/07/modern_admin_theme-300x199.png",{"file":1054,"width":132,"height":1055,"filesize":1056,"mime_type":117,"source_url":1057},"modern_admin_theme-1024x679.png",679,170203,"https://data.uipress.co/wp-content/uploads/2024/07/modern_admin_theme-1024x679.png",{"file":1059,"width":138,"height":138,"filesize":1060,"mime_type":117,"source_url":1061},"modern_admin_theme-150x150.png",10886,"https://data.uipress.co/wp-content/uploads/2024/07/modern_admin_theme-150x150.png",{"file":1063,"width":143,"height":1064,"filesize":1065,"mime_type":117,"source_url":1066},"modern_admin_theme-768x509.png",509,110516,"https://data.uipress.co/wp-content/uploads/2024/07/modern_admin_theme-768x509.png",{"file":1068,"width":149,"height":1069,"filesize":1070,"mime_type":117,"source_url":1071},"modern_admin_theme-1536x1018.png",1018,306481,"https://data.uipress.co/wp-content/uploads/2024/07/modern_admin_theme-1536x1018.png",{"file":1073,"width":155,"height":1074,"filesize":1075,"mime_type":117,"source_url":1076},"modern_admin_theme-2048x1358.png",1358,461555,"https://data.uipress.co/wp-content/uploads/2024/07/modern_admin_theme-2048x1358.png",{"file":1078,"width":1043,"height":1044,"mime_type":117,"source_url":1079},"modern_admin_theme.png","https://data.uipress.co/wp-content/uploads/2024/07/modern_admin_theme.png",{"aperture":163,"credit":23,"camera":23,"caption":23,"created_timestamp":163,"copyright":23,"focal_length":163,"iso":163,"shutter_speed":163,"title":23,"orientation":163,"keywords":1081},[],{"self":1083,"collection":1087,"about":1089,"author":1091,"replies":1093,"wp:attached-to":1096,"curies":1100},[1084],{"href":1011,"targetHints":1085},{"allow":1086},[46],[1088],{"href":173},[1090],{"href":176},[1092],{"embeddable":55,"href":56},[1094],{"embeddable":55,"href":1095},"https://data.uipress.co/wp-json/wp/v2/comments?post=13027",[1097],{"embeddable":55,"post_type":11,"id":1098,"href":1099},13024,"https://data.uipress.co/wp-json/wp/v2/posts/13024",[1101],{"name":82,"href":83,"templated":55},[1103,1119],[1104],{"id":27,"link":189,"name":190,"slug":191,"taxonomy":75,"acf":1105,"_links":1106},[],{"self":1107,"collection":1111,"about":1113,"wp:post_type":1115,"curies":1117},[1108],{"href":196,"targetHints":1109},{"allow":1110},[46],[1112],{"href":201},[1114],{"href":204},[1116],{"href":207},[1118],{"name":82,"href":83,"templated":55},[],{"id":1098,"date":1121,"date_gmt":1121,"guid":1122,"modified":1124,"modified_gmt":1124,"slug":1125,"status":10,"type":11,"link":1126,"title":1127,"content":1129,"excerpt":1131,"author":20,"featured_media":1133,"comment_status":22,"ping_status":22,"sticky":17,"template":23,"format":24,"meta":1134,"categories":1135,"tags":1136,"class_list":1137,"acf":1139,"_links":1140,"_embedded":1170},"2024-07-31T13:13:19",{"rendered":1123},"https://data.uipress.co/?p=13024","2024-07-31T13:13:28","introducing-uixpress-a-simple-yet-powerful-admin-theme-for-wordpress","https://data.uipress.co/introducing-uixpress-a-simple-yet-powerful-admin-theme-for-wordpress/",{"rendered":1128},"Introducing uiXpress: A Simple Yet Powerful Admin Theme for WordPress",{"rendered":1130,"protected":17},"\n\u003Cp class=\"wp-block-paragraph\">We&#8217;re thrilled to announce the launch of uiXpress, our latest WordPress admin theme designed to revolutionise your backend experience. uiXpress brings together sleek design, powerful functionality, and lightning-fast performance in one easy-to-use package.\u003C/p>\n\n\n\n\u003Ch2 class=\"wp-block-heading\" id=\"what-is-uixpress\">What is uiXpress?\u003C/h2>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">uiXpress is a streamlined version of our popular uiPress plugin, offering plug-and-play functionality to instantly modernize your WordPress admin interface. With uiXpress, you get:\u003C/p>\n\n\n\n\u003Cul class=\"wp-block-list\">\n\u003Cli>A modern, intuitive admin theme that combines beauty with functionality\u003C/li>\n\n\n\n\u003Cli>Extremely performant and lightweight design for faster load times\u003C/li>\n\n\n\n\u003Cli>Global search functionality to quickly find what you need\u003C/li>\n\n\n\n\u003Cli>A refreshed, customisable WordPress login page\u003C/li>\n\n\n\n\u003Cli>Simplified workflow for improved productivity\u003C/li>\n\u003C/ul>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">uiXpress delivers effortless elegance and powerful functionality in a swift, lightweight admin theme. Whether you&#8217;re a busy blogger, a digital agency, or managing multiple WordPress sites, uiXpress is designed to make your life easier.\u003C/p>\n\n\n\n\u003Cfigure class=\"wp-block-image size-large\">\u003Cimg decoding=\"async\" width=\"1024\" height=\"679\" src=\"https://data.uipress.co/wp-content/uploads/2024/07/modern_admin_theme-1024x679.png\" alt=\"\" class=\"wp-image-13027\" srcset=\"https://data.uipress.co/wp-content/uploads/2024/07/modern_admin_theme-1024x679.png 1024w, https://data.uipress.co/wp-content/uploads/2024/07/modern_admin_theme-300x199.png 300w, https://data.uipress.co/wp-content/uploads/2024/07/modern_admin_theme-768x509.png 768w, https://data.uipress.co/wp-content/uploads/2024/07/modern_admin_theme-1536x1018.png 1536w, https://data.uipress.co/wp-content/uploads/2024/07/modern_admin_theme-2048x1358.png 2048w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />\u003C/figure>\n\n\n\n\u003Ch2 class=\"wp-block-heading\" id=\"why-we-created-uixpress\">Why We Created uiXpress\u003C/h2>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">While uiPress is a powerful platform for customizing the WordPress admin, we recognized that many users simply want a great-looking admin interface without the need for extensive configuration. That&#8217;s why we created uiXpress. It&#8217;s designed for those who want to instantly elevate their WordPress admin experience with a modern, efficient interface, right out of the box. uiXpress delivers the sleek design and core functionality of uiPress in a simplified, ready-to-use package &#8211; no complex setup required.\u003C/p>\n\n\n\n\u003Ch2 class=\"wp-block-heading\" id=\"key-features-of-uixpress\">Key Features of uiXpress\u003C/h2>\n\n\n\n\u003Col class=\"wp-block-list\">\n\u003Cli>\u003Cstrong>Modern Admin Interface\u003C/strong>: Enjoy a sleek, responsive design that looks great on all devices.\u003C/li>\n\n\n\n\u003Cli>\u003Cstrong>Enhanced Performance\u003C/strong>: Experience a smooth, lag-free admin experience with minimal impact on your site&#8217;s load times.\u003C/li>\n\n\n\n\u003Cli>\u003Cstrong>Global Search\u003C/strong>: Quickly find and access any admin resource, from posts and pages to users and settings.\u003C/li>\n\n\n\n\u003Cli>\u003Cstrong>Stylish Login Page\u003C/strong>: Make a great first impression with a modern, brandable login experience.\u003C/li>\n\n\n\n\u003Cli>\u003Cstrong>Plug-and-Play Simplicity\u003C/strong>: Get up and running in minutes with easy installation and no complex configuration.\u003C/li>\n\n\n\n\u003Cli>\u003Cstrong>Streamlined Workflow\u003C/strong>: Navigate your admin panel effortlessly with an intuitive menu structure and simplified content management.\u003C/li>\n\u003C/ol>\n\n\n\n\u003Cfigure class=\"wp-block-image size-large\">\u003Cimg decoding=\"async\" width=\"1024\" height=\"630\" src=\"https://data.uipress.co/wp-content/uploads/2024/07/login-page-1024x630.png\" alt=\"\" class=\"wp-image-13028\" srcset=\"https://data.uipress.co/wp-content/uploads/2024/07/login-page-1024x630.png 1024w, https://data.uipress.co/wp-content/uploads/2024/07/login-page-300x185.png 300w, https://data.uipress.co/wp-content/uploads/2024/07/login-page-768x472.png 768w, https://data.uipress.co/wp-content/uploads/2024/07/login-page-1536x945.png 1536w, https://data.uipress.co/wp-content/uploads/2024/07/login-page-2048x1260.png 2048w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />\u003C/figure>\n\n\n\n\u003Ch2 class=\"wp-block-heading\" id=\"for-existing-uipress-3-customers\">For Existing uiPress 3 Customers\u003C/h2>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">If you&#8217;re already a uiPress 3 customer, we have great news for you! As a token of our appreciation for your continued support, you&#8217;ll automatically receive access to uiXpress as part of your existing plan. There&#8217;s no need to make any additional purchases or changes to your account.\u003C/p>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">You&#8217;ll be able to download and activate uiXpress directly from your account dashboard. We believe that uiXpress will complement your uiPress 3 experience, offering you even more options to customize and optimize your WordPress admin interface.\u003C/p>\n\n\n\n\u003Ch2 class=\"wp-block-heading\" id=\"get-started-with-uixpress-today\">Get Started with uiXpress Today\u003C/h2>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">Ready to transform your WordPress admin experience? Visit our website to learn more about uiXpress and see it in action. Whether you&#8217;re a new customer or an existing uiPress user, we&#8217;re confident that uiXpress will elevate your WordPress workflow to new heights.\u003C/p>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">Stay tuned for more updates, tutorials, and tips on how to make the most of uiXpress. We can&#8217;t wait to hear your feedback and see how uiXpress empowers your WordPress journey!\u003C/p>\n",{"rendered":1132,"protected":17},"\u003Cp>We&#8217;re thrilled to announce the launch of uiXpress, our latest WordPress admin theme designed to revolutionise your backend experience. uiXpress brings together sleek design, powerful functionality, and lightning-fast performance in one easy-to-use package. What is uiXpress? uiXpress is a streamlined version of our popular uiPress plugin, offering plug-and-play functionality to instantly modernize your WordPress admin [&hellip;]\u003C/p>\n",13026,{"_acf_changed":17,"_eb_attr":23,"footnotes":23},[27,28],[],[1138,11,32,33,34,35,36,37,38],"post-13024",[],{"self":1141,"collection":1145,"about":1147,"author":1149,"replies":1151,"version-history":1154,"wp:featuredmedia":1157,"wp:attachment":1160,"wp:term":1163,"curies":1168},[1142],{"href":1099,"targetHints":1143},{"allow":1144},[46],[1146],{"href":49},[1148],{"href":52},[1150],{"embeddable":55,"href":56},[1152],{"embeddable":55,"href":1153},"https://data.uipress.co/wp-json/wp/v2/comments?post=13024",[1155],{"count":113,"href":1156},"https://data.uipress.co/wp-json/wp/v2/posts/13024/revisions",[1158],{"embeddable":55,"href":1159},"https://data.uipress.co/wp-json/wp/v2/media/13026",[1161],{"href":1162},"https://data.uipress.co/wp-json/wp/v2/media?parent=13024",[1164,1166],{"taxonomy":75,"embeddable":55,"href":1165},"https://data.uipress.co/wp-json/wp/v2/categories?post=13024",{"taxonomy":78,"embeddable":55,"href":1167},"https://data.uipress.co/wp-json/wp/v2/tags?post=13024",[1169],{"name":82,"href":83,"templated":55},{"author":1171,"wp:featuredmedia":1182,"wp:term":1248},[1172],{"id":20,"name":87,"url":88,"description":23,"link":89,"slug":90,"avatar_urls":1173,"acf":1174,"_links":1175},{"24":92,"48":93,"96":94,"128":95},[],{"self":1176,"collection":1180},[1177],{"href":56,"targetHints":1178},{"allow":1179},[46],[1181],{"href":104},[1183],{"id":1133,"date":1184,"slug":1185,"type":109,"link":1186,"title":1187,"author":20,"featured_media":113,"acf":1188,"caption":1189,"alt_text":23,"media_type":116,"mime_type":117,"media_details":1190,"source_url":1227,"_links":1230},"2024-07-31T13:12:43","uixpress-hero","https://data.uipress.co/introducing-uixpress-a-simple-yet-powerful-admin-theme-for-wordpress/uixpress-hero/",{"rendered":1185},[],{"rendered":23},{"width":1191,"height":1192,"file":1193,"filesize":1194,"sizes":1195,"image_meta":1228},3120,1782,"2024/07/uixpress-hero.png",401632,{"medium":1196,"large":1201,"thumbnail":1206,"medium_large":1210,"1536x1536":1215,"2048x2048":1220,"full":1225},{"file":1197,"width":126,"height":1198,"filesize":1199,"mime_type":117,"source_url":1200},"uixpress-hero-300x171.png",171,12942,"https://data.uipress.co/wp-content/uploads/2024/07/uixpress-hero-300x171.png",{"file":1202,"width":132,"height":1203,"filesize":1204,"mime_type":117,"source_url":1205},"uixpress-hero-1024x585.png",585,86380,"https://data.uipress.co/wp-content/uploads/2024/07/uixpress-hero-1024x585.png",{"file":1207,"width":138,"height":138,"filesize":1208,"mime_type":117,"source_url":1209},"uixpress-hero-150x150.png",5118,"https://data.uipress.co/wp-content/uploads/2024/07/uixpress-hero-150x150.png",{"file":1211,"width":143,"height":1212,"filesize":1213,"mime_type":117,"source_url":1214},"uixpress-hero-768x439.png",439,56189,"https://data.uipress.co/wp-content/uploads/2024/07/uixpress-hero-768x439.png",{"file":1216,"width":149,"height":1217,"filesize":1218,"mime_type":117,"source_url":1219},"uixpress-hero-1536x877.png",877,156933,"https://data.uipress.co/wp-content/uploads/2024/07/uixpress-hero-1536x877.png",{"file":1221,"width":155,"height":1222,"filesize":1223,"mime_type":117,"source_url":1224},"uixpress-hero-2048x1170.png",1170,237632,"https://data.uipress.co/wp-content/uploads/2024/07/uixpress-hero-2048x1170.png",{"file":1226,"width":1191,"height":1192,"mime_type":117,"source_url":1227},"uixpress-hero.png","https://data.uipress.co/wp-content/uploads/2024/07/uixpress-hero.png",{"aperture":163,"credit":23,"camera":23,"caption":23,"created_timestamp":163,"copyright":23,"focal_length":163,"iso":163,"shutter_speed":163,"title":23,"orientation":163,"keywords":1229},[],{"self":1231,"collection":1235,"about":1237,"author":1239,"replies":1241,"wp:attached-to":1244,"curies":1246},[1232],{"href":1159,"targetHints":1233},{"allow":1234},[46],[1236],{"href":173},[1238],{"href":176},[1240],{"embeddable":55,"href":56},[1242],{"embeddable":55,"href":1243},"https://data.uipress.co/wp-json/wp/v2/comments?post=13026",[1245],{"embeddable":55,"post_type":11,"id":1098,"href":1099},[1247],{"name":82,"href":83,"templated":55},[1249,1280],[1250,1265],{"id":27,"link":189,"name":190,"slug":191,"taxonomy":75,"acf":1251,"_links":1252},[],{"self":1253,"collection":1257,"about":1259,"wp:post_type":1261,"curies":1263},[1254],{"href":196,"targetHints":1255},{"allow":1256},[46],[1258],{"href":201},[1260],{"href":204},[1262],{"href":207},[1264],{"name":82,"href":83,"templated":55},{"id":28,"link":211,"name":212,"slug":213,"taxonomy":75,"acf":1266,"_links":1267},[],{"self":1268,"collection":1272,"about":1274,"wp:post_type":1276,"curies":1278},[1269],{"href":218,"targetHints":1270},{"allow":1271},[46],[1273],{"href":201},[1275],{"href":204},[1277],{"href":227},[1279],{"name":82,"href":83,"templated":55},[],{"id":1282,"date":1283,"date_gmt":1283,"guid":1284,"modified":1286,"modified_gmt":1286,"slug":1287,"status":10,"type":11,"link":1288,"title":1289,"content":1291,"excerpt":1293,"author":20,"featured_media":1295,"comment_status":22,"ping_status":22,"sticky":17,"template":23,"format":24,"meta":1296,"categories":1297,"tags":1298,"class_list":1299,"acf":1301,"_links":1302,"_embedded":1333},13004,"2024-07-02T17:45:42",{"rendered":1285},"https://data.uipress.co/?p=13004","2024-07-02T18:09:06","introducing-woobase-revolutionizing-woocommerce-management-for-wordpress","https://data.uipress.co/introducing-woobase-revolutionizing-woocommerce-management-for-wordpress/",{"rendered":1290},"Introducing WooBase: Revolutionizing WooCommerce Management for WordPress",{"rendered":1292,"protected":17},"\n\u003Cp class=\"wp-block-paragraph\">We&#8217;re thrilled to announce the launch of \u003Ca href=\"https://www.woobase.io\" data-type=\"link\" data-id=\"https://www.woobase.io\">WooBase\u003C/a>, our latest WordPress plugin designed to transform how you manage your WooCommerce store. As the creators of UIPress, we understand the unique challenges faced by WordPress and WooCommerce users. WooBase is our answer to the growing need for faster, smarter, and streamlined e-commerce management.\u003C/p>\n\n\n\n\u003Ch2 class=\"wp-block-heading\" id=\"what-is-woobase\">What is WooBase?\u003C/h2>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">WooBase is a cutting-edge WordPress plugin that provides a complete overhaul of the WooCommerce management experience. It offers a new, updated interface that allows you to manage your store, orders, and all aspects of WooCommerce with unprecedented speed and flexibility.\u003C/p>\n\n\n\n\u003Ch3 class=\"wp-block-heading\" id=\"key-features-of-woobase\">Key Features of WooBase:\u003C/h3>\n\n\n\n\u003Col class=\"wp-block-list\">\n\u003Cli>\u003Cstrong>Lightning-Fast Performance\u003C/strong>: WooBase optimizes your WooCommerce operations, significantly reducing load times and improving overall site speed.\u003C/li>\n\n\n\n\u003Cli>\u003Cstrong>Enhanced Security\u003C/strong>: With WooBase you can keep shop managers out of the wp admin and still give them access to the store.\u003C/li>\n\n\n\n\u003Cli>\u003Cstrong>Flexible Deployment\u003C/strong>: Use WooBase within wp-admin or inject it into a specific front-end page, keeping your shop managers focused on what matters most.\u003C/li>\n\n\n\n\u003Cli>\u003Cstrong>Intuitive Interface\u003C/strong>: Our sleek, user-friendly design makes managing your online store a breeze, even for newcomers to e-commerce.\u003C/li>\n\n\n\n\u003Cli>\u003Cstrong>Powerful Analytics\u003C/strong>: Gain valuable insights into your store&#8217;s performance with comprehensive, easy-to-understand reports.\u003C/li>\n\n\n\n\u003Cli>\u003Cstrong>Future-Proof Solution\u003C/strong>: Regular updates and a scalable architecture ensure WooBase grows alongside your business.\u003C/li>\n\u003C/ol>\n\n\n\n\u003Cfigure class=\"wp-block-image size-large\">\u003Cimg decoding=\"async\" width=\"1024\" height=\"870\" src=\"https://data.uipress.co/wp-content/uploads/2024/07/customer-view-1024x870.webp\" alt=\"\" class=\"wp-image-13008\" srcset=\"https://data.uipress.co/wp-content/uploads/2024/07/customer-view-1024x870.webp 1024w, https://data.uipress.co/wp-content/uploads/2024/07/customer-view-300x255.webp 300w, https://data.uipress.co/wp-content/uploads/2024/07/customer-view-768x653.webp 768w, https://data.uipress.co/wp-content/uploads/2024/07/customer-view-1536x1305.webp 1536w, https://data.uipress.co/wp-content/uploads/2024/07/customer-view-2048x1740.webp 2048w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />\u003C/figure>\n\n\n\n\u003Ch2 class=\"wp-block-heading\" id=\"why-we-created-woobase\">Why We Created WooBase\u003C/h2>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">As longtime WordPress developers and the team behind UIPress, we&#8217;ve seen firsthand the challenges that come with managing a WooCommerce store. Many users struggle with slow load times, complex interfaces, and security concerns. WooBase is our solution to these pain points, designed to empower store owners and managers with the tools they need to succeed in today&#8217;s competitive e-commerce landscape.\u003C/p>\n\n\n\n\u003Ch2 class=\"wp-block-heading\" id=\"getting-started-with-woobase\">Getting Started with WooBase\u003C/h2>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">WooBase is now available for download and installation. Whether you&#8217;re an existing UIPress user or new to our products, getting started with WooBase is simple:\u003C/p>\n\n\n\n\u003Col class=\"wp-block-list\">\n\u003Cli>Visit our website to purchase and download WooBase.\u003C/li>\n\n\n\n\u003Cli>Install the plugin on your WordPress site.\u003C/li>\n\n\n\n\u003Cli>Activate and start enjoying faster, smarter, and more secure WooCommerce management!\u003C/li>\n\u003C/ol>\n\n\n\n\u003Cfigure class=\"wp-block-image size-large\">\u003Cimg decoding=\"async\" width=\"1024\" height=\"774\" src=\"https://data.uipress.co/wp-content/uploads/2024/07/analytics-view-1024x774.webp\" alt=\"\" class=\"wp-image-13009\" srcset=\"https://data.uipress.co/wp-content/uploads/2024/07/analytics-view-1024x774.webp 1024w, https://data.uipress.co/wp-content/uploads/2024/07/analytics-view-300x227.webp 300w, https://data.uipress.co/wp-content/uploads/2024/07/analytics-view-768x580.webp 768w, https://data.uipress.co/wp-content/uploads/2024/07/analytics-view-1536x1160.webp 1536w, https://data.uipress.co/wp-content/uploads/2024/07/analytics-view.webp 1832w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />\u003C/figure>\n\n\n\n\u003Ch2 class=\"wp-block-heading\" id=\"special-launch-offer\">Special Launch Offer\u003C/h2>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">As a special launch offer, we have 30% off the lifetime plans for the first 100 customers! Head over to \u003Ca href=\"https://www.woobase.io\" data-type=\"link\" data-id=\"https://www.woobase.io\">WooBase\u003C/a> to get started \u003C/p>\n\n\n\n\u003Ch2 class=\"wp-block-heading\" id=\"conclusion\">Conclusion\u003C/h2>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">We&#8217;re excited to bring this powerful tool to the WordPress community and can&#8217;t wait to see how it transforms your e-commerce experience. Try WooBase today and take the first step towards a more efficient, secure, and profitable online store.\u003C/p>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">For more information, demos, and pricing, visit our website or contact our support team. Let&#8217;s revolutionize WooCommerce management together with WooBase!\u003C/p>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">\u003Ca href=\"https://www.woobase.io\" data-type=\"link\" data-id=\"https://www.woobase.io\">Get WooBase Now and Transform Your WooCommerce Experience!\u003C/a>\u003C/p>\n",{"rendered":1294,"protected":17},"\u003Cp>We&#8217;re thrilled to announce the launch of WooBase, our latest WordPress plugin designed to transform how you manage your WooCommerce store. As the creators of UIPress, we understand the unique challenges faced by WordPress and WooCommerce users. WooBase is our answer to the growing need for faster, smarter, and streamlined e-commerce management. What is WooBase? [&hellip;]\u003C/p>\n",13006,{"_acf_changed":17,"_eb_attr":23,"footnotes":23},[27],[],[1300,11,32,33,34,35,36,37],"post-13004",[],{"self":1303,"collection":1308,"about":1310,"author":1312,"replies":1314,"version-history":1317,"wp:featuredmedia":1320,"wp:attachment":1323,"wp:term":1326,"curies":1331},[1304],{"href":1305,"targetHints":1306},"https://data.uipress.co/wp-json/wp/v2/posts/13004",{"allow":1307},[46],[1309],{"href":49},[1311],{"href":52},[1313],{"embeddable":55,"href":56},[1315],{"embeddable":55,"href":1316},"https://data.uipress.co/wp-json/wp/v2/comments?post=13004",[1318],{"count":113,"href":1319},"https://data.uipress.co/wp-json/wp/v2/posts/13004/revisions",[1321],{"embeddable":55,"href":1322},"https://data.uipress.co/wp-json/wp/v2/media/13006",[1324],{"href":1325},"https://data.uipress.co/wp-json/wp/v2/media?parent=13004",[1327,1329],{"taxonomy":75,"embeddable":55,"href":1328},"https://data.uipress.co/wp-json/wp/v2/categories?post=13004",{"taxonomy":78,"embeddable":55,"href":1330},"https://data.uipress.co/wp-json/wp/v2/tags?post=13004",[1332],{"name":82,"href":83,"templated":55},{"author":1334,"wp:featuredmedia":1345,"wp:term":1411},[1335],{"id":20,"name":87,"url":88,"description":23,"link":89,"slug":90,"avatar_urls":1336,"acf":1337,"_links":1338},{"24":92,"48":93,"96":94,"128":95},[],{"self":1339,"collection":1343},[1340],{"href":56,"targetHints":1341},{"allow":1342},[46],[1344],{"href":104},[1346],{"id":1295,"date":1347,"slug":1348,"type":109,"link":1349,"title":1350,"author":20,"featured_media":113,"acf":1351,"caption":1352,"alt_text":23,"media_type":116,"mime_type":117,"media_details":1353,"source_url":1390,"_links":1393},"2024-07-02T17:46:35","woobase-og","https://data.uipress.co/introducing-woobase-revolutionizing-woocommerce-management-for-wordpress/woobase-og/",{"rendered":1348},[],{"rendered":23},{"width":1354,"height":1355,"file":1356,"filesize":1357,"sizes":1358,"image_meta":1391},2268,1187,"2024/07/woobase-og.png",332379,{"medium":1359,"large":1364,"thumbnail":1369,"medium_large":1373,"1536x1536":1378,"2048x2048":1383,"full":1388},{"file":1360,"width":126,"height":1361,"filesize":1362,"mime_type":117,"source_url":1363},"woobase-og-300x157.png",157,17882,"https://data.uipress.co/wp-content/uploads/2024/07/woobase-og-300x157.png",{"file":1365,"width":132,"height":1366,"filesize":1367,"mime_type":117,"source_url":1368},"woobase-og-1024x536.png",536,113584,"https://data.uipress.co/wp-content/uploads/2024/07/woobase-og-1024x536.png",{"file":1370,"width":138,"height":138,"filesize":1371,"mime_type":117,"source_url":1372},"woobase-og-150x150.png",10899,"https://data.uipress.co/wp-content/uploads/2024/07/woobase-og-150x150.png",{"file":1374,"width":143,"height":1375,"filesize":1376,"mime_type":117,"source_url":1377},"woobase-og-768x402.png",402,79326,"https://data.uipress.co/wp-content/uploads/2024/07/woobase-og-768x402.png",{"file":1379,"width":149,"height":1380,"filesize":1381,"mime_type":117,"source_url":1382},"woobase-og-1536x804.png",804,211539,"https://data.uipress.co/wp-content/uploads/2024/07/woobase-og-1536x804.png",{"file":1384,"width":155,"height":1385,"filesize":1386,"mime_type":117,"source_url":1387},"woobase-og-2048x1072.png",1072,420692,"https://data.uipress.co/wp-content/uploads/2024/07/woobase-og-2048x1072.png",{"file":1389,"width":1354,"height":1355,"mime_type":117,"source_url":1390},"woobase-og.png","https://data.uipress.co/wp-content/uploads/2024/07/woobase-og.png",{"aperture":163,"credit":23,"camera":23,"caption":23,"created_timestamp":163,"copyright":23,"focal_length":163,"iso":163,"shutter_speed":163,"title":23,"orientation":163,"keywords":1392},[],{"self":1394,"collection":1398,"about":1400,"author":1402,"replies":1404,"wp:attached-to":1407,"curies":1409},[1395],{"href":1322,"targetHints":1396},{"allow":1397},[46],[1399],{"href":173},[1401],{"href":176},[1403],{"embeddable":55,"href":56},[1405],{"embeddable":55,"href":1406},"https://data.uipress.co/wp-json/wp/v2/comments?post=13006",[1408],{"embeddable":55,"post_type":11,"id":1282,"href":1305},[1410],{"name":82,"href":83,"templated":55},[1412,1428],[1413],{"id":27,"link":189,"name":190,"slug":191,"taxonomy":75,"acf":1414,"_links":1415},[],{"self":1416,"collection":1420,"about":1422,"wp:post_type":1424,"curies":1426},[1417],{"href":196,"targetHints":1418},{"allow":1419},[46],[1421],{"href":201},[1423],{"href":204},[1425],{"href":207},[1427],{"name":82,"href":83,"templated":55},[],{"id":1430,"date":1431,"date_gmt":1431,"guid":1432,"modified":1434,"modified_gmt":1434,"slug":1435,"status":10,"type":11,"link":1436,"title":1437,"content":1439,"excerpt":1441,"author":20,"featured_media":1443,"comment_status":22,"ping_status":22,"sticky":17,"template":23,"format":24,"meta":1444,"categories":1445,"tags":1446,"class_list":1447,"acf":1449,"_links":1450,"_embedded":1481},12970,"2024-04-16T13:20:09",{"rendered":1433},"https://data.uipress.co/?p=12970","2024-04-16T13:21:06","our-site-just-got-a-major-upgrade-introducing-wordpress-headless","https://data.uipress.co/our-site-just-got-a-major-upgrade-introducing-wordpress-headless/",{"rendered":1438},"We&#8217;ve gone headless",{"rendered":1440,"protected":17},"\n\u003Cp class=\"wp-block-paragraph\">It&#8217;s an exciting day here at uipress as we unveil a complete overhaul of our website, rebuilt from the ground up using the latest web technologies. We&#8217;ve embraced the headless architecture by decoupling the front-end from the back-end, allowing us to leverage the power of WordPress as a robust content management system while harnessing the flexibility and performance of modern JavaScript frameworks.\u003C/p>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">At the heart of our new site lies a cutting-edge JavaScript framework that promises unparalleled speed and efficiency. By combining WordPress as our trusted headless CMS with a reactive JavaScript front-end, we&#8217;ve created a seamless and lightning-fast user experience that redefines what a website can be.\u003C/p>\n\n\n\n\u003Ch2 class=\"wp-block-heading\" id=\"the-benefits-of-going-headless-with-wordpress\">The Benefits of Going Headless with WordPress\u003C/h2>\n\n\n\n\u003Col class=\"wp-block-list\">\n\u003Cli>\u003Cstrong>Improved Performance\u003C/strong>: By separating the front-end from the back-end, we&#8217;ve eliminated the need to load the entire WordPress infrastructure on every page load. This results in significantly faster load times, ensuring a snappy and responsive experience for our visitors.\u003C/li>\n\n\n\n\u003Cli>\u003Cstrong>Flexibility and Future-Proofing\u003C/strong>: The headless architecture allows us to easily swap out or upgrade the front-end technology stack without disrupting the back-end content management system. This future-proofs our site, enabling us to stay ahead of the curve as new web technologies emerge.\u003C/li>\n\n\n\n\u003Cli>\u003Cstrong>Enhanced Security\u003C/strong>: By decoupling the front-end from the back-end, we&#8217;ve reduced the attack surface area, making our site more secure and less vulnerable to potential threats.\u003C/li>\n\n\n\n\u003Cli>\u003Cstrong>Scalability\u003C/strong>: With WordPress handling the content management heavy lifting and a modern JavaScript framework powering the front-end, our site can scale effortlessly to handle increased traffic and content demands.\u003C/li>\n\n\n\n\u003Cli>\u003Cstrong>Seamless Content Management\u003C/strong>: Our content creators can continue to leverage the familiar WordPress interface they know and love, while developers can focus on building an exceptional front-end experience using modern tools and frameworks.\u003C/li>\n\u003C/ol>\n\n\n\n\u003Ch2 class=\"wp-block-heading\" id=\"the-power-of-modern-javascript-frameworks\">The Power of Modern JavaScript Frameworks\u003C/h2>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">By leveraging a cutting-edge JavaScript framework, we&#8217;ve unlocked a world of possibilities for our front-end development. From reactive data binding and virtual DOM rendering to rich ecosystems of tools and libraries, modern JavaScript frameworks streamline the development workflow, enabling our team to iterate and deploy changes faster than ever before.\u003C/p>\n\n\n\n\u003Ch2 class=\"wp-block-heading\" id=\"the-future-is-headless\">The Future is Headless\u003C/h2>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">By embracing the headless architecture and partnering WordPress with a modern JavaScript framework, we&#8217;ve not only enhanced our website&#8217;s performance and user experience but also laid the foundation for future growth and innovation. As technology continues to evolve, we&#8217;re confident that our headless approach will keep us ahead of the curve, enabling us to adapt and integrate new advancements seamlessly.\u003C/p>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">We&#8217;re thrilled to share this exciting new chapter with you, and we can&#8217;t wait for you to experience the speed, responsiveness, and rich functionality our revamped site has to offer. Stay tuned for more updates as we continue to push the boundaries of what&#8217;s possible with WordPress and modern web development.\u003C/p>\n",{"rendered":1442,"protected":17},"\u003Cp>It&#8217;s an exciting day here at uipress as we unveil a complete overhaul of our website, rebuilt from the ground up using the latest web technologies. We&#8217;ve embraced the headless architecture by decoupling the front-end from the back-end, allowing us to leverage the power of WordPress as a robust content management system while harnessing the [&hellip;]\u003C/p>\n",12973,{"_acf_changed":17,"_eb_attr":23,"footnotes":23},[27,28],[],[1448,11,32,33,34,35,36,37,38],"post-12970",[],{"self":1451,"collection":1456,"about":1458,"author":1460,"replies":1462,"version-history":1465,"wp:featuredmedia":1468,"wp:attachment":1471,"wp:term":1474,"curies":1479},[1452],{"href":1453,"targetHints":1454},"https://data.uipress.co/wp-json/wp/v2/posts/12970",{"allow":1455},[46],[1457],{"href":49},[1459],{"href":52},[1461],{"embeddable":55,"href":56},[1463],{"embeddable":55,"href":1464},"https://data.uipress.co/wp-json/wp/v2/comments?post=12970",[1466],{"count":113,"href":1467},"https://data.uipress.co/wp-json/wp/v2/posts/12970/revisions",[1469],{"embeddable":55,"href":1470},"https://data.uipress.co/wp-json/wp/v2/media/12973",[1472],{"href":1473},"https://data.uipress.co/wp-json/wp/v2/media?parent=12970",[1475,1477],{"taxonomy":75,"embeddable":55,"href":1476},"https://data.uipress.co/wp-json/wp/v2/categories?post=12970",{"taxonomy":78,"embeddable":55,"href":1478},"https://data.uipress.co/wp-json/wp/v2/tags?post=12970",[1480],{"name":82,"href":83,"templated":55},{"author":1482,"wp:featuredmedia":1493,"wp:term":1559},[1483],{"id":20,"name":87,"url":88,"description":23,"link":89,"slug":90,"avatar_urls":1484,"acf":1485,"_links":1486},{"24":92,"48":93,"96":94,"128":95},[],{"self":1487,"collection":1491},[1488],{"href":56,"targetHints":1489},{"allow":1490},[46],[1492],{"href":104},[1494],{"id":1443,"date":1495,"slug":1496,"type":109,"link":1497,"title":1498,"author":20,"featured_media":113,"acf":1499,"caption":1500,"alt_text":23,"media_type":116,"mime_type":758,"media_details":1501,"source_url":1538,"_links":1541},"2024-04-16T13:19:58","uipress-og","https://data.uipress.co/our-site-just-got-a-major-upgrade-introducing-wordpress-headless/uipress-og/",{"rendered":1496},[],{"rendered":23},{"width":1502,"height":1503,"file":1504,"filesize":1505,"sizes":1506,"image_meta":1539},2188,1149,"2024/04/uipress-og.webp",84790,{"medium":1507,"large":1512,"thumbnail":1517,"medium_large":1521,"1536x1536":1526,"2048x2048":1531,"full":1536},{"file":1508,"width":126,"height":1509,"filesize":1510,"mime_type":758,"source_url":1511},"uipress-og-300x158.webp",158,6500,"https://data.uipress.co/wp-content/uploads/2024/04/uipress-og-300x158.webp",{"file":1513,"width":132,"height":1514,"filesize":1515,"mime_type":758,"source_url":1516},"uipress-og-1024x538.webp",538,36286,"https://data.uipress.co/wp-content/uploads/2024/04/uipress-og-1024x538.webp",{"file":1518,"width":138,"height":138,"filesize":1519,"mime_type":758,"source_url":1520},"uipress-og-150x150.webp",4782,"https://data.uipress.co/wp-content/uploads/2024/04/uipress-og-150x150.webp",{"file":1522,"width":143,"height":1523,"filesize":1524,"mime_type":758,"source_url":1525},"uipress-og-768x403.webp",403,25262,"https://data.uipress.co/wp-content/uploads/2024/04/uipress-og-768x403.webp",{"file":1527,"width":149,"height":1528,"filesize":1529,"mime_type":758,"source_url":1530},"uipress-og-1536x807.webp",807,59740,"https://data.uipress.co/wp-content/uploads/2024/04/uipress-og-1536x807.webp",{"file":1532,"width":155,"height":1533,"filesize":1534,"mime_type":758,"source_url":1535},"uipress-og-2048x1075.webp",1075,78998,"https://data.uipress.co/wp-content/uploads/2024/04/uipress-og-2048x1075.webp",{"file":1537,"width":1502,"height":1503,"mime_type":758,"source_url":1538},"uipress-og.webp","https://data.uipress.co/wp-content/uploads/2024/04/uipress-og.webp",{"aperture":163,"credit":23,"camera":23,"caption":23,"created_timestamp":163,"copyright":23,"focal_length":163,"iso":163,"shutter_speed":163,"title":23,"orientation":163,"keywords":1540},[],{"self":1542,"collection":1546,"about":1548,"author":1550,"replies":1552,"wp:attached-to":1555,"curies":1557},[1543],{"href":1470,"targetHints":1544},{"allow":1545},[46],[1547],{"href":173},[1549],{"href":176},[1551],{"embeddable":55,"href":56},[1553],{"embeddable":55,"href":1554},"https://data.uipress.co/wp-json/wp/v2/comments?post=12973",[1556],{"embeddable":55,"post_type":11,"id":1430,"href":1453},[1558],{"name":82,"href":83,"templated":55},[1560,1591],[1561,1576],{"id":27,"link":189,"name":190,"slug":191,"taxonomy":75,"acf":1562,"_links":1563},[],{"self":1564,"collection":1568,"about":1570,"wp:post_type":1572,"curies":1574},[1565],{"href":196,"targetHints":1566},{"allow":1567},[46],[1569],{"href":201},[1571],{"href":204},[1573],{"href":207},[1575],{"name":82,"href":83,"templated":55},{"id":28,"link":211,"name":212,"slug":213,"taxonomy":75,"acf":1577,"_links":1578},[],{"self":1579,"collection":1583,"about":1585,"wp:post_type":1587,"curies":1589},[1580],{"href":218,"targetHints":1581},{"allow":1582},[46],[1584],{"href":201},[1586],{"href":204},[1588],{"href":227},[1590],{"name":82,"href":83,"templated":55},[],{"id":1593,"date":1594,"date_gmt":1594,"guid":1595,"modified":1597,"modified_gmt":1597,"slug":1598,"status":10,"type":11,"link":1599,"title":1600,"content":1602,"excerpt":1604,"author":20,"featured_media":1606,"comment_status":22,"ping_status":22,"sticky":17,"template":23,"format":24,"meta":1607,"categories":1608,"tags":1609,"class_list":1610,"acf":1612,"_links":1613,"_embedded":1644},12576,"2024-02-14T14:48:01",{"rendered":1596},"https://uipress.co/?p=12576","2024-02-14T14:54:25","whats-new-in-uipress-v3-3-1","https://data.uipress.co/whats-new-in-uipress-v3-3-1/",{"rendered":1601},"What&#8217;s new in uiPress v3.3.1",{"rendered":1603,"protected":17},"\n\u003Cp class=\"wp-block-paragraph\">We&#8217;re thrilled to announce a great new update to uiPress, this latest enhancement introduces an array of features aimed at elevating usability, performance, and control, ensuring a seamless and intuitive building journey. Let&#8217;s dive into the exciting new features:\u003C/p>\n\n\n\n\u003Ch2 class=\"wp-block-heading\" id=\"introducing-the-interactions-api\">Introducing the Interactions API\u003C/h2>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">With our new Interactions API, you can now inject life into your templates like never before. This powerful feature allows you to add dynamic interactions to any block within the builder, such as click, hover, and focus events. Whether you&#8217;re looking to create engaging hover effects for images or implement interactive call-to-actions, our Interactions API provides the tools you need to make your templates more interactive and engaging.\u003C/p>\n\n\n\n\u003Cfigure class=\"wp-block-image size-large\">\u003Cimg decoding=\"async\" width=\"1024\" height=\"604\" src=\"https://uipress.co/wp-content/uploads/2024/02/Screenshot-2024-02-14-at-14.45.56-1024x604.png\" alt=\"\" class=\"wp-image-12579\" srcset=\"https://data.uipress.co/wp-content/uploads/2024/02/Screenshot-2024-02-14-at-14.45.56-1024x604.png 1024w, https://data.uipress.co/wp-content/uploads/2024/02/Screenshot-2024-02-14-at-14.45.56-300x177.png 300w, https://data.uipress.co/wp-content/uploads/2024/02/Screenshot-2024-02-14-at-14.45.56-768x453.png 768w, https://data.uipress.co/wp-content/uploads/2024/02/Screenshot-2024-02-14-at-14.45.56-1536x907.png 1536w, https://data.uipress.co/wp-content/uploads/2024/02/Screenshot-2024-02-14-at-14.45.56.png 2026w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />\u003C/figure>\n\n\n\n\u003Ch2 class=\"wp-block-heading\" id=\"enhanced-block-conditions-component\">Enhanced Block Conditions Component\u003C/h2>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">Flexibility and control are key to crafting a personalised website experience, and our enhanced Block Conditions Component is here to deliver just that. This upgrade offers you unparalleled control over block visibility, enabling you to show or hide blocks based on specific conditions. Whether it&#8217;s user roles, time of day, or custom conditions you&#8217;ve set, managing your site&#8217;s content visibility has never been more intuitive.\u003C/p>\n\n\n\n\u003Cfigure class=\"wp-block-image size-large\">\u003Cimg decoding=\"async\" width=\"1024\" height=\"639\" src=\"https://uipress.co/wp-content/uploads/2024/02/Screenshot-2024-02-14-at-14.46.55-1024x639.png\" alt=\"\" class=\"wp-image-12580\" srcset=\"https://data.uipress.co/wp-content/uploads/2024/02/Screenshot-2024-02-14-at-14.46.55-1024x639.png 1024w, https://data.uipress.co/wp-content/uploads/2024/02/Screenshot-2024-02-14-at-14.46.55-300x187.png 300w, https://data.uipress.co/wp-content/uploads/2024/02/Screenshot-2024-02-14-at-14.46.55-768x479.png 768w, https://data.uipress.co/wp-content/uploads/2024/02/Screenshot-2024-02-14-at-14.46.55-1536x958.png 1536w, https://data.uipress.co/wp-content/uploads/2024/02/Screenshot-2024-02-14-at-14.46.55.png 1782w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />\u003C/figure>\n\n\n\n\u003Ch2 class=\"wp-block-heading\" id=\"streamlined-licence-key-manager\">Streamlined Licence Key Manager\u003C/h2>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">Managing your uiPress license is now easier than ever, thanks to our newly integrated Licence Key Manager. Built directly into the site settings, this feature allows for effortless access and management of your plugin license. No more navigating through complex settings or external platforms; everything you need is right where you need it, ensuring a smoother, more efficient administrative experience.\u003C/p>\n\n\n\n\u003Cfigure class=\"wp-block-image size-large\">\u003Cimg decoding=\"async\" width=\"1024\" height=\"460\" src=\"https://uipress.co/wp-content/uploads/2024/02/Screenshot-2024-02-14-at-14.47.28-1024x460.png\" alt=\"\" class=\"wp-image-12581\" srcset=\"https://data.uipress.co/wp-content/uploads/2024/02/Screenshot-2024-02-14-at-14.47.28-1024x460.png 1024w, https://data.uipress.co/wp-content/uploads/2024/02/Screenshot-2024-02-14-at-14.47.28-300x135.png 300w, https://data.uipress.co/wp-content/uploads/2024/02/Screenshot-2024-02-14-at-14.47.28-768x345.png 768w, https://data.uipress.co/wp-content/uploads/2024/02/Screenshot-2024-02-14-at-14.47.28-1536x690.png 1536w, https://data.uipress.co/wp-content/uploads/2024/02/Screenshot-2024-02-14-at-14.47.28-2048x921.png 2048w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />\u003C/figure>\n\n\n\n\u003Ch2 class=\"wp-block-heading\" id=\"revolutionary-iframe-framed-content-handling\">Revolutionary Iframe / Framed content Handling\u003C/h2>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">Speed is of the essence in today&#8217;s digital landscape, and our update significantly boosts your site&#8217;s performance. We&#8217;ve introduced an innovative way of handling iframe requests, slashing page load times by an impressive 50%. Not only does this enhance the user experience by providing faster access to your content and less plugin conflicts, but it also reduces server load, ensuring your site runs smoothly even under heavy traffic.\u003C/p>\n\n\n\n\u003Ch2 class=\"wp-block-heading\" id=\"why-update-to-the-latest-uipress\">Why Update to the Latest uiPress?\u003C/h2>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">Upgrading to the latest version of uiPress brings a host of benefits to your WordPress site:\u003C/p>\n\n\n\n\u003Cul class=\"wp-block-list\">\n\u003Cli>\u003Cstrong>Enhanced Interactivity\u003C/strong>: Engage your audience with dynamic interactions, keeping them hooked and improving session times.\u003C/li>\n\n\n\n\u003Cli>\u003Cstrong>Greater Control\u003C/strong>: With improved block conditions, you have the power to tailor your site&#8217;s content visibility to match your unique needs.\u003C/li>\n\n\n\n\u003Cli>\u003Cstrong>Efficient License Management\u003C/strong>: Our Licence Key Manager simplifies license handling, saving you time and hassle.\u003C/li>\n\n\n\n\u003Cli>\u003Cstrong>Boosted Performance\u003C/strong>: Experience a significant uplift in site speed and reduced server strain, contributing to better SEO rankings and user satisfaction.\u003C/li>\n\u003C/ul>\n\n\n\n\u003Ch2 class=\"wp-block-heading\" id=\"get-started-today\">Get Started Today\u003C/h2>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">Ready to take your WordPress site to the next level? Update to the latest version of uiPress and unlock the full potential of your online presence. Whether you&#8217;re a seasoned developer or a website owner, these new features are designed to enhance your site&#8217;s functionality, aesthetics, and performance.\u003C/p>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">Thank you for choosing uiPress. We&#8217;re excited to be part of your website&#8217;s journey and look forward to bringing you even more innovative features in the future.\u003C/p>\n",{"rendered":1605,"protected":17},"\u003Cp>We&#8217;re thrilled to announce a great new update to uiPress, this latest enhancement introduces an array of features aimed at elevating usability, performance, and control, ensuring a seamless and intuitive building journey. Let&#8217;s dive into the exciting new features: Introducing the Interactions API With our new Interactions API, you can now inject life into your [&hellip;]\u003C/p>\n",12579,{"_acf_changed":17,"_eb_attr":23,"footnotes":23},[27,28],[],[1611,11,32,33,34,35,36,37,38],"post-12576",[],{"self":1614,"collection":1619,"about":1621,"author":1623,"replies":1625,"version-history":1628,"wp:featuredmedia":1631,"wp:attachment":1634,"wp:term":1637,"curies":1642},[1615],{"href":1616,"targetHints":1617},"https://data.uipress.co/wp-json/wp/v2/posts/12576",{"allow":1618},[46],[1620],{"href":49},[1622],{"href":52},[1624],{"embeddable":55,"href":56},[1626],{"embeddable":55,"href":1627},"https://data.uipress.co/wp-json/wp/v2/comments?post=12576",[1629],{"count":113,"href":1630},"https://data.uipress.co/wp-json/wp/v2/posts/12576/revisions",[1632],{"embeddable":55,"href":1633},"https://data.uipress.co/wp-json/wp/v2/media/12579",[1635],{"href":1636},"https://data.uipress.co/wp-json/wp/v2/media?parent=12576",[1638,1640],{"taxonomy":75,"embeddable":55,"href":1639},"https://data.uipress.co/wp-json/wp/v2/categories?post=12576",{"taxonomy":78,"embeddable":55,"href":1641},"https://data.uipress.co/wp-json/wp/v2/tags?post=12576",[1643],{"name":82,"href":83,"templated":55},{"author":1645,"wp:featuredmedia":1656,"wp:term":1718},[1646],{"id":20,"name":87,"url":88,"description":23,"link":89,"slug":90,"avatar_urls":1647,"acf":1648,"_links":1649},{"24":92,"48":93,"96":94,"128":95},[],{"self":1650,"collection":1654},[1651],{"href":56,"targetHints":1652},{"allow":1653},[46],[1655],{"href":104},[1657],{"id":1606,"date":1658,"slug":1659,"type":109,"link":1660,"title":1661,"author":20,"featured_media":113,"acf":1663,"caption":1664,"alt_text":23,"media_type":116,"mime_type":117,"media_details":1665,"source_url":1697,"_links":1700},"2024-02-14T14:46:14","screenshot-2024-02-14-at-14-45-56","https://data.uipress.co/whats-new-in-uipress-v3-3-1/screenshot-2024-02-14-at-14-45-56/",{"rendered":1662},"Screenshot 2024-02-14 at 14.45.56",[],{"rendered":23},{"width":1666,"height":1667,"file":1668,"filesize":1669,"sizes":1670,"image_meta":1698},2026,1196,"2024/02/Screenshot-2024-02-14-at-14.45.56.png",443469,{"medium":1671,"large":1676,"thumbnail":1681,"medium_large":1685,"1536x1536":1690,"full":1695},{"file":1672,"width":126,"height":1673,"filesize":1674,"mime_type":117,"source_url":1675},"Screenshot-2024-02-14-at-14.45.56-300x177.png",177,23361,"https://data.uipress.co/wp-content/uploads/2024/02/Screenshot-2024-02-14-at-14.45.56-300x177.png",{"file":1677,"width":132,"height":1678,"filesize":1679,"mime_type":117,"source_url":1680},"Screenshot-2024-02-14-at-14.45.56-1024x604.png",604,157942,"https://data.uipress.co/wp-content/uploads/2024/02/Screenshot-2024-02-14-at-14.45.56-1024x604.png",{"file":1682,"width":138,"height":138,"filesize":1683,"mime_type":117,"source_url":1684},"Screenshot-2024-02-14-at-14.45.56-150x150.png",12866,"https://data.uipress.co/wp-content/uploads/2024/02/Screenshot-2024-02-14-at-14.45.56-150x150.png",{"file":1686,"width":143,"height":1687,"filesize":1688,"mime_type":117,"source_url":1689},"Screenshot-2024-02-14-at-14.45.56-768x453.png",453,102285,"https://data.uipress.co/wp-content/uploads/2024/02/Screenshot-2024-02-14-at-14.45.56-768x453.png",{"file":1691,"width":149,"height":1692,"filesize":1693,"mime_type":117,"source_url":1694},"Screenshot-2024-02-14-at-14.45.56-1536x907.png",907,293106,"https://data.uipress.co/wp-content/uploads/2024/02/Screenshot-2024-02-14-at-14.45.56-1536x907.png",{"file":1696,"width":1666,"height":1667,"mime_type":117,"source_url":1697},"Screenshot-2024-02-14-at-14.45.56.png","https://data.uipress.co/wp-content/uploads/2024/02/Screenshot-2024-02-14-at-14.45.56.png",{"aperture":163,"credit":23,"camera":23,"caption":23,"created_timestamp":163,"copyright":23,"focal_length":163,"iso":163,"shutter_speed":163,"title":23,"orientation":163,"keywords":1699},[],{"self":1701,"collection":1705,"about":1707,"author":1709,"replies":1711,"wp:attached-to":1714,"curies":1716},[1702],{"href":1633,"targetHints":1703},{"allow":1704},[46],[1706],{"href":173},[1708],{"href":176},[1710],{"embeddable":55,"href":56},[1712],{"embeddable":55,"href":1713},"https://data.uipress.co/wp-json/wp/v2/comments?post=12579",[1715],{"embeddable":55,"post_type":11,"id":1593,"href":1616},[1717],{"name":82,"href":83,"templated":55},[1719,1750],[1720,1735],{"id":27,"link":189,"name":190,"slug":191,"taxonomy":75,"acf":1721,"_links":1722},[],{"self":1723,"collection":1727,"about":1729,"wp:post_type":1731,"curies":1733},[1724],{"href":196,"targetHints":1725},{"allow":1726},[46],[1728],{"href":201},[1730],{"href":204},[1732],{"href":207},[1734],{"name":82,"href":83,"templated":55},{"id":28,"link":211,"name":212,"slug":213,"taxonomy":75,"acf":1736,"_links":1737},[],{"self":1738,"collection":1742,"about":1744,"wp:post_type":1746,"curies":1748},[1739],{"href":218,"targetHints":1740},{"allow":1741},[46],[1743],{"href":201},[1745],{"href":204},[1747],{"href":227},[1749],{"name":82,"href":83,"templated":55},[],{"id":1752,"date":1753,"date_gmt":1753,"guid":1754,"modified":1756,"modified_gmt":1756,"slug":1757,"status":10,"type":11,"link":1758,"title":1759,"content":1761,"excerpt":1763,"author":20,"featured_media":1765,"comment_status":22,"ping_status":22,"sticky":17,"template":23,"format":24,"meta":1766,"categories":1767,"tags":1768,"class_list":1769,"acf":1771,"_links":1772,"_embedded":1803},12491,"2023-11-24T17:15:14",{"rendered":1755},"https://uipress.co/?p=12491","2023-11-24T17:15:15","upcoming-changes-to-pricing-farewell-to-lifetime-licenses","https://data.uipress.co/upcoming-changes-to-pricing-farewell-to-lifetime-licenses/",{"rendered":1760},"Upcoming changes to pricing: Farewell to Lifetime Licenses",{"rendered":1762,"protected":17},"\n\u003Cp class=\"wp-block-paragraph\">Today we&#8217;re announcing a significant change to UiPress&#8217;s licensing model. As of December 31, 2023, we will discontinue the sale of Lifetime Licenses. This strategic shift allows us to concentrate on providing continuous updates and dedicated support through our Annual License offerings.\u003C/p>\n\n\n\n\u003Ch2 class=\"wp-block-heading\">\u003Cstrong>Why the Change?\u003C/strong> \u003C/h2>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">This move is designed to ensure sustainable development and consistent improvement of UiPress. Our Annual Licenses will be the sole licensing option available, offering a balance of ongoing value and adaptability to evolving WordPress trends.\u003C/p>\n\n\n\n\u003Ch2 class=\"wp-block-heading\">\u003Cstrong>Existing Lifetime License Holders\u003C/strong> \u003C/h2>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">For our existing Lifetime License customers, your benefits and access will remain unchanged and fully honoured.\u003C/p>\n\n\n\n\u003Ch2 class=\"wp-block-heading\">\u003Cstrong>Our Commitment to Quality\u003C/strong>\u003C/h2>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">Focusing on Annual Licenses enables us to invest more in developing new features and maintaining the high standards of support you expect from us.\u003C/p>\n\n\n\n\u003Ch2 class=\"wp-block-heading\">\u003Cstrong>We&#8217;re Here to Help\u003C/strong> \u003C/h2>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">If you have any questions or need assistance, our team is ready to provide support.\u003C/p>\n\n\n\n\u003Cp class=\"wp-block-paragraph\">Thank You for Your Continued Support, The UiPress Team\u003C/p>\n",{"rendered":1764,"protected":17},"\u003Cp>Today we&#8217;re announcing a significant change to UiPress&#8217;s licensing model. As of December 31, 2023, we will discontinue the sale of Lifetime Licenses. This strategic shift allows us to concentrate on providing continuous updates and dedicated support through our Annual License offerings. Why the Change? This move is designed to ensure sustainable development and consistent [&hellip;]\u003C/p>\n",12413,{"_acf_changed":17,"_eb_attr":23,"footnotes":23},[27,28],[],[1770,11,32,33,34,35,36,37,38],"post-12491",[],{"self":1773,"collection":1778,"about":1780,"author":1782,"replies":1784,"version-history":1787,"wp:featuredmedia":1790,"wp:attachment":1793,"wp:term":1796,"curies":1801},[1774],{"href":1775,"targetHints":1776},"https://data.uipress.co/wp-json/wp/v2/posts/12491",{"allow":1777},[46],[1779],{"href":49},[1781],{"href":52},[1783],{"embeddable":55,"href":56},[1785],{"embeddable":55,"href":1786},"https://data.uipress.co/wp-json/wp/v2/comments?post=12491",[1788],{"count":113,"href":1789},"https://data.uipress.co/wp-json/wp/v2/posts/12491/revisions",[1791],{"embeddable":55,"href":1792},"https://data.uipress.co/wp-json/wp/v2/media/12413",[1794],{"href":1795},"https://data.uipress.co/wp-json/wp/v2/media?parent=12491",[1797,1799],{"taxonomy":75,"embeddable":55,"href":1798},"https://data.uipress.co/wp-json/wp/v2/categories?post=12491",{"taxonomy":78,"embeddable":55,"href":1800},"https://data.uipress.co/wp-json/wp/v2/tags?post=12491",[1802],{"name":82,"href":83,"templated":55},{"author":1804,"wp:featuredmedia":1815,"wp:term":1878},[1805],{"id":20,"name":87,"url":88,"description":23,"link":89,"slug":90,"avatar_urls":1806,"acf":1807,"_links":1808},{"24":92,"48":93,"96":94,"128":95},[],{"self":1809,"collection":1813},[1810],{"href":56,"targetHints":1811},{"allow":1812},[46],[1814],{"href":104},[1816],{"id":1765,"date":1817,"slug":1818,"type":109,"link":1819,"title":1820,"author":20,"featured_media":113,"acf":1822,"caption":1823,"alt_text":23,"media_type":116,"mime_type":758,"media_details":1824,"source_url":1860,"_links":1864},"2023-11-14T16:17:21","screenshot-2023-11-10-at-11-31-45","https://data.uipress.co/screenshot-2023-11-10-at-11-31-45/",{"rendered":1821},"Screenshot 2023-11-10 at 11.31.45",[],{"rendered":23},{"width":119,"height":1825,"file":1826,"filesize":1827,"sizes":1828,"image_meta":1861,"original_image":1863},1636,"2023/11/Screenshot-2023-11-10-at-11.31.45-scaled.webp",87662,{"medium":1829,"large":1834,"thumbnail":1839,"medium_large":1843,"1536x1536":1848,"2048x2048":1853,"full":1858},{"file":1830,"width":126,"height":1831,"filesize":1832,"mime_type":758,"source_url":1833},"Screenshot-2023-11-10-at-11.31.45-300x192.webp",192,4546,"https://data.uipress.co/wp-content/uploads/2023/11/Screenshot-2023-11-10-at-11.31.45-300x192.webp",{"file":1835,"width":132,"height":1836,"filesize":1837,"mime_type":758,"source_url":1838},"Screenshot-2023-11-10-at-11.31.45-1024x654.webp",654,28554,"https://data.uipress.co/wp-content/uploads/2023/11/Screenshot-2023-11-10-at-11.31.45-1024x654.webp",{"file":1840,"width":138,"height":138,"filesize":1841,"mime_type":758,"source_url":1842},"Screenshot-2023-11-10-at-11.31.45-150x150.webp",2214,"https://data.uipress.co/wp-content/uploads/2023/11/Screenshot-2023-11-10-at-11.31.45-150x150.webp",{"file":1844,"width":143,"height":1845,"filesize":1846,"mime_type":758,"source_url":1847},"Screenshot-2023-11-10-at-11.31.45-768x491.webp",491,19034,"https://data.uipress.co/wp-content/uploads/2023/11/Screenshot-2023-11-10-at-11.31.45-768x491.webp",{"file":1849,"width":149,"height":1850,"filesize":1851,"mime_type":758,"source_url":1852},"Screenshot-2023-11-10-at-11.31.45-1536x981.webp",981,48218,"https://data.uipress.co/wp-content/uploads/2023/11/Screenshot-2023-11-10-at-11.31.45-1536x981.webp",{"file":1854,"width":155,"height":1855,"filesize":1856,"mime_type":758,"source_url":1857},"Screenshot-2023-11-10-at-11.31.45-2048x1309.webp",1309,68240,"https://data.uipress.co/wp-content/uploads/2023/11/Screenshot-2023-11-10-at-11.31.45-2048x1309.webp",{"file":1859,"width":119,"height":1825,"mime_type":758,"source_url":1860},"Screenshot-2023-11-10-at-11.31.45-scaled.webp","https://data.uipress.co/wp-content/uploads/2023/11/Screenshot-2023-11-10-at-11.31.45-scaled.webp",{"aperture":163,"credit":23,"camera":23,"caption":23,"created_timestamp":163,"copyright":23,"focal_length":163,"iso":163,"shutter_speed":163,"title":23,"orientation":163,"keywords":1862},[],"Screenshot-2023-11-10-at-11.31.45.webp",{"self":1865,"collection":1869,"about":1871,"author":1873,"replies":1875},[1866],{"href":1792,"targetHints":1867},{"allow":1868},[46],[1870],{"href":173},[1872],{"href":176},[1874],{"embeddable":55,"href":56},[1876],{"embeddable":55,"href":1877},"https://data.uipress.co/wp-json/wp/v2/comments?post=12413",[1879,1910],[1880,1895],{"id":27,"link":189,"name":190,"slug":191,"taxonomy":75,"acf":1881,"_links":1882},[],{"self":1883,"collection":1887,"about":1889,"wp:post_type":1891,"curies":1893},[1884],{"href":196,"targetHints":1885},{"allow":1886},[46],[1888],{"href":201},[1890],{"href":204},[1892],{"href":207},[1894],{"name":82,"href":83,"templated":55},{"id":28,"link":211,"name":212,"slug":213,"taxonomy":75,"acf":1896,"_links":1897},[],{"self":1898,"collection":1902,"about":1904,"wp:post_type":1906,"curies":1908},[1899],{"href":218,"targetHints":1900},{"allow":1901},[46],[1903],{"href":201},[1905],{"href":204},[1907],{"href":227},[1909],{"name":82,"href":83,"templated":55},[],1786015243252]