{"id":13509,"date":"2011-06-03T10:35:26","date_gmt":"2011-06-03T10:35:26","guid":{"rendered":"https:\/\/wordpress.org\/plugins-wp\/service-status\/"},"modified":"2011-08-16T10:51:45","modified_gmt":"2011-08-16T10:51:45","slug":"service-status","status":"closed","type":"plugin","link":"https:\/\/wordpress.org\/plugins\/service-status\/","author":7988877,"comment_status":"closed","ping_status":"closed","template":"","meta":{"version":"1.2","stable_tag":"1.2","tested":"3.2.1","requires":"3.0.0","requires_php":"","requires_plugins":"","header_name":"Service Status","header_author":"Mediaburst Ltd","header_description":"","assets_banners_color":"ffffff","last_updated":"2011-08-16 10:51:45","external_support_url":"","external_repository_url":"","donate_link":"","header_plugin_uri":"http:\/\/www.mediaburst.co.uk\/wordpress\/service-status","header_author_uri":"http:\/\/www.mediaburst.co.uk\/","rating":0,"author_block_rating":0,"active_installs":10,"downloads":2716,"num_ratings":0,"support_threads":0,"support_threads_resolved":0,"author_block_count":0,"sections":["description","installation","faq","changelog"],"tags":[],"upgrade_notice":{"1.2":"<ul>\n<li>The rewrite rules used in previous versions broke other custom post types.\nThis version changes the permalink structure from \/status\/id to \/status\/title \nto fix the problem. Sorry about the change but I don&#039;t want to break other plugins.<\/li>\n<\/ul>"},"ratings":{"1":0,"2":0,"3":0,"4":0,"5":0},"assets_icons":[],"assets_banners":{"banner-772x250.png":{"filename":"banner-772x250.png","revision":"479296","resolution":"772x250","location":"assets"}},"assets_blueprints":{},"all_blocks":[],"tagged_versions":["1.0","1.1","1.2"],"block_files":[],"assets_screenshots":{"screenshot-1.png":{"filename":"screenshot-1.png","revision":"1573780","resolution":"1","location":"plugin"},"screenshot-2.png":{"filename":"screenshot-2.png","revision":"1573780","resolution":"2","location":"plugin"},"screenshot-3.png":{"filename":"screenshot-3.png","revision":"1573780","resolution":"3","location":"plugin"}},"screenshots":{"1":"<p>Service Status admin page<\/p>","2":"<p>Add\/Edit a status update<\/p>","3":"<p>Options page where you add\/edit\/remove statuses<\/p>"}},"plugin_section":[],"plugin_tags":[2925,3781,409],"plugin_category":[],"plugin_contributors":[85098,85097],"plugin_business_model":[],"class_list":["post-13509","plugin","type-plugin","status-closed","hentry","plugin_tags-server","plugin_tags-service","plugin_tags-status","plugin_contributors-martinsteel","plugin_contributors-mediaburst","plugin_committers-garethmediaburst","plugin_committers-mediaburst","plugin_committers-mediaburstjohnc"],"banners":[],"icons":{"svg":false,"icon":"https:\/\/s.w.org\/plugins\/geopattern-icon\/service-status_ffffff.svg","icon_2x":false,"generated":true},"screenshots":[{"src":"https:\/\/ps.w.org\/service-status\/trunk\/screenshot-1.png?rev=1573780","caption":"<p>Service Status admin page<\/p>"},{"src":"https:\/\/ps.w.org\/service-status\/trunk\/screenshot-2.png?rev=1573780","caption":"<p>Add\/Edit a status update<\/p>"},{"src":"https:\/\/ps.w.org\/service-status\/trunk\/screenshot-3.png?rev=1573780","caption":"<p>Options page where you add\/edit\/remove statuses<\/p>"}],"raw_content":"<!--section=description-->\n<p>Add a new status page to keep your customers up to date with your current service status<\/p>\n\n<p>Adds a custom post type and admin pages to manage your status updates.<\/p>\n\n<p>All you need to do is log in to wordpress admin and it's as simple as adding a\npost.<\/p>\n\n<p>To see what this plugin can do have a look at <a href=\"http:\/\/www.mediaburst.co.uk\/status\/\" title=\"Mediaburst service status page\">our status page<\/a>.<\/p>\n\n<p>If you have any questions or feedback drop us an email at hello@mediaburst.co.uk.<\/p>\n\n<h3>Themeing<\/h3>\n\n<p>If you want to display your status updates with custom styling simply create\ntwo new pages in your theme.<\/p>\n\n<h4>archive-service-status.php<\/h4>\n\n<p>Display a list of your status updates, just like the standard post archive.\nUse all the normal WordPress functions such as the_title() and the_excerpt()\nwithin the loop.<\/p>\n\n<h4>single-service-status.php<\/h4>\n\n<p>Show a single service status update, just like the standard single post page.\nAgain uses the standard WordPress functions.<\/p>\n\n<p>If you've made use of the Products feature, to tag each update with the\naffected products, call get_the_terms() like this:<\/p>\n\n<pre><code>&lt;?php \nget_the_terms( $post-&gt;ID, 'products' ); \nforeach ( $terms as $term ) {\n    printf( '&lt;li&gt;%s&lt;\/li&gt;', $term-&gt;name );\n}\n?&gt;\n<\/code><\/pre>\n\n<!--section=installation-->\n<ol>\n<li>Upload the 'service-status' directory to the '\/wp-content\/plugins\/' directory<\/li>\n<li>Activate the plugin through the 'Plugins' menu in WordPress<\/li>\n<li>Login to Wordpress Admin and setup your statuses (Under Options)<\/li>\n<li>Add some status updates.<\/li>\n<\/ol>\n\n<!--section=faq-->\n<dl>\n<dt>Can I use a custom page template for my status updates?<\/dt>\n<dd><p>Simply create an archive-service-status.php and single-service-status.php file in your theme.\nThey use the standard Wordpress loop so copying archive.php and single.php is a good\nplace to start.<\/p><\/dd>\n<dt>How do I set the possible status values?<\/dt>\n<dd><p>Once the plugin is activated you should see a Service Status entry under the Wordpress \nSettings menu.  On this page you can add as many statuses as you need.<\/p><\/dd>\n<dt>Can I change the custom post type name?<\/dt>\n<dd><p>Yes.  You need to change $post_type variable in the Site_Status_Options class.\nYou'll also need to rename any theme files to archive-.php and single-.php<\/p><\/dd>\n<dt>Can I include the current status in a blog post or page?<\/dt>\n<dd><p>Yes.  There are two shortcodes in can include in either a blog post or within\npage content, these will be replaced when somebody views the page. \n1. [service-status-name] Name of the current status.\n2. [service-status-desc] Full text description of the current status.<\/p><\/dd>\n<dt>Can I include the current status in my theme?<\/dt>\n<dd><p>Yes. There are two functions you can call to get the status and the status\ndescription.<\/p>\n\n<ol>\n<li>Status\n<\/li>\n<li>Status Description\n<\/li>\n<\/ol><\/dd>\n\n<\/dl>\n\n<!--section=changelog-->\n<h4>1.2<\/h4>\n\n<ul>\n<li>Removed the custom rewrite rules as these broke rewrites for other custom\npost types.  This means permalinks change from \/status\/post-id to\n\/status\/post-title.   Thanks to Steve Ogg for the bug report.<\/li>\n<\/ul>\n\n<h4>1.1<\/h4>\n\n<ul>\n<li>Added support for comments on status updates, new option under settings<\/li>\n<li>Tidied up code in to separate class files<\/li>\n<\/ul>\n\n<h4>1.0<\/h4>\n\n<ul>\n<li>Public release<\/li>\n<\/ul>\n\n<h4>0.1<\/h4>\n\n<ul>\n<li>Internal development release<\/li>\n<\/ul>","raw_excerpt":"Add a service status page to your WordPress powered website.","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin\/13509","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin"}],"about":[{"href":"https:\/\/wordpress.org\/plugins\/wp-json\/wp\/v2\/types\/plugin"}],"replies":[{"embeddable":true,"href":"https:\/\/wordpress.org\/plugins\/wp-json\/wp\/v2\/comments?post=13509"}],"author":[{"embeddable":true,"href":"https:\/\/wordpress.org\/plugins\/wp-json\/wporg\/v1\/users\/mediaburst"}],"wp:attachment":[{"href":"https:\/\/wordpress.org\/plugins\/wp-json\/wp\/v2\/media?parent=13509"}],"wp:term":[{"taxonomy":"plugin_section","embeddable":true,"href":"https:\/\/wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_section?post=13509"},{"taxonomy":"plugin_tags","embeddable":true,"href":"https:\/\/wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_tags?post=13509"},{"taxonomy":"plugin_category","embeddable":true,"href":"https:\/\/wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_category?post=13509"},{"taxonomy":"plugin_contributors","embeddable":true,"href":"https:\/\/wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_contributors?post=13509"},{"taxonomy":"plugin_business_model","embeddable":true,"href":"https:\/\/wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_business_model?post=13509"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}