diff --git a/README.md b/README.md index 41474f66..25746109 100644 --- a/README.md +++ b/README.md @@ -1,32 +1,44 @@ -# GatherContent Import -- Version 3.0.0.2 # +# GatherContent Plugin -- Version 3.0.0.2 # -The GatherContent Import plugin allows you to quickly import structured content from your GatherContent projects into your WordPress site, as well as export your existing WordPress content to GatherContent. +This plugin allows you to transfer content from your GatherContent projects into your WordPress site and vice-versa. ## Description ## -This plugin allows you to transfer content from your GatherContent projects into your WordPress site and vice-versa. +Installing our WordPress plugin on your site allows you to quickly perform updates of your content from your GatherContent account to WordPress as well as push your WordPress content updates back to GatherContent. Content can be imported as new pages/posts or custom post types, and you can also import your WordPress content back to new GatherContent items. -GatherContent is an online platform for pulling together, editing, and reviewing website content with your clients and colleagues. It's a reliable alternative to emailing around Word documents and pasting content into your CMS. This plugin replaces that process of copying and pasting content and allows you to bulk import structured content, and then continue to update it in WordPress with a few clicks. +The plugin allows you to map each field in your GatherContent Templates with WordPress fields. This is accomplished by creating a Template Mapping, which allows you to map each field in GatherContent to various fields in WordPress; title, body content, custom fields, tags, categories, Yoast fields, advanced custom fields, featured images … and many more. -Connecting a powerful content production platform, to a powerful content publishing platform. +The module currently supports the following features: -Content can be imported as items, posts, media or custom post types. And you can choose to create new items etc. or overwrite existing entities. - -The plugin allows you to specifically map each field on your templates in GatherContent to various fields in WordPress, these include; title, body content, custom fields, tags, categories, Yoast fields, advanced custom fields, featured images … and many more. It also allows you to directly embed images and files. +* Import content from GatherContent +* Export content to GatherContent +* Update content in Wordpress from GatherContent +* Update content from Wordpress to GatherContent For additional developer documentation, please [review the wiki](https://github.com/gathercontent/wordpress-plugin/wiki). +### What is GatherContent? + +GatherContent is an online platform for pulling together, editing, and reviewing website content with your clients and colleagues. It's a reliable alternative to emailing around Word documents and pasting content into your CMS. This plugin replaces that process of copying and pasting content and allows you to bulk import structured content, and then continue to update it in WordPress with a few clicks. + +Connecting a powerful content production platform, to a powerful content publishing platform. + ## Installation ## This section describes how to install the plugin and get it working. 1. Upload `gathercontent-import` to the `/wp-content/plugins/` directory -2. Activate the GatherContent plugin through the 'Plugins' menu in WordPress -3. Click on the menu item "GatherContent" -3. Link your accounts. You will need to enter your GatherContent account URL (e.g. http://mywebsite.gathercontent.com) and your personal GatherContent API key. You can find your API key in your [Settings area within GatherContent](https://gathercontent.com/developers/authentication/). +1. Activate the GatherContent plugin through the 'Plugins' menu in WordPress +1. Click on the menu item "GatherContent" +2. Link your accounts. You will need to enter your GatherContent account URL (e.g. http://mywebsite.gathercontent.com) and your personal GatherContent API key. You can find your API key in your [Settings area within GatherContent](https://gathercontent.com/developers/authentication/). + +For more detailed installation instructions please visit our [HelpCentre](https://gathercontent.com/support/wordpress-integration-installation/). ## Support ## -Contact us directly via email for support [support@gathercontent.com](mailto:support@gathercontent.com). + +If you need help + +* Please [visit our support documentation](https://gathercontent.com/support/wordpress-integration). ## Changelog ## diff --git a/assets/css/gathercontent-importer.css b/assets/css/gathercontent-importer.css index 07c51f20..b1922560 100644 --- a/assets/css/gathercontent-importer.css +++ b/assets/css/gathercontent-importer.css @@ -1,5 +1,5 @@ /** - * GatherContent Importer + * GatherContent Plugin * http://www.gathercontent.com * * Copyright (c) 2016 GatherContent @@ -424,4 +424,4 @@ ul.gc-radio-desc li, ul.gc-reveal-items-list li { .gc-metabox-status { display: inline-block; - position: relative; } \ No newline at end of file + position: relative; } diff --git a/assets/css/sass/gathercontent-importer.scss b/assets/css/sass/gathercontent-importer.scss index 906ebd46..288922e7 100644 --- a/assets/css/sass/gathercontent-importer.scss +++ b/assets/css/sass/gathercontent-importer.scss @@ -1,5 +1,5 @@ /** - * GatherContent Importer + * GatherContent Plugin * http://www.gathercontent.com * * Copyright (c) 2016 GatherContent diff --git a/gathercontent-importer.php b/gathercontent-importer.php index 13c2ae06..32266040 100644 --- a/gathercontent-importer.php +++ b/gathercontent-importer.php @@ -1,6 +1,6 @@

%s

', - __( 'Sorry, the GatherContent Importer plugin requires a minimum PHP version of 5.3. Please contact your host and ask them to upgrade. For convenience, you can use the note provided on the WordPress recommended host supports page: https://wordpress.org/about/requirements/', 'gathercontent-import' ) + __( 'Sorry, the GatherContent plugin requires a minimum PHP version of 5.3. Please contact your host and ask them to upgrade. For convenience, you can use the note provided on the WordPress recommended host supports page: https://wordpress.org/about/requirements/', 'gathercontent-import' ) ); } @@ -78,7 +78,7 @@ function gathercontent_importer_php_version_too_low_notice() { function gathercontent_importer_wp_version_too_low_notice() { printf( '

%s

', - __( 'Sorry, for security and performance reasons, the GatherContent Importer plugin requires a minimum WordPress version of 4.4. Please update WordPress to the most recent version.', 'gathercontent-import' ) + __( 'Sorry, for security and performance reasons, the GatherContent plugin requires a minimum WordPress version of 4.4. Please update WordPress to the most recent version.', 'gathercontent-import' ) ); } diff --git a/includes/classes/admin/ajax/handlers.php b/includes/classes/admin/ajax/handlers.php index 9d8e2f55..80a2ad4f 100644 --- a/includes/classes/admin/ajax/handlers.php +++ b/includes/classes/admin/ajax/handlers.php @@ -1,8 +1,8 @@