Skip to content
This repository has been archived by the owner on Aug 21, 2024. It is now read-only.

Commit

Permalink
Merge pull request #3 from Dolphiq/development
Browse files Browse the repository at this point in the history
Bugfix and documentation update
  • Loading branch information
johanzandstra authored Dec 14, 2017
2 parents 990638f + a8e1f08 commit 7f63632
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 6 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,10 @@
## 1.0.0 - 2017-12-13
### Added
- Initial release

## 1.0.1 - 2017-12-14
### Changed
- Documentation update

### Fixed
- A bug that requires the user to login into the CP to view the sitemap.xml content.
16 changes: 13 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,16 @@
# Xml Sitemap plugin for Craft CMS 3.x
# XML-sitemap plugin for Craft CMS 3.x

Craft 3 plugin that provides an easy way to enable and manage an XML sitemap for search engines like Google
Craft 3 plugin that provides an easy way to enable and manage a XML sitemap for search engines like Google and Bing

![Screenshot](resources/screenshots/screenshot1.png)

## Using the XML-sitemap plugin

After the installation, you can find the plugin in the settings section of the Control Panel.
You can enable and set the settings per entries section.

After saving the desired settings, you can submit the xml url (your site url)/sitemap.xml to the searchengines.

## Requirements

This plugin requires Craft CMS 3.0.0-RC1 or later.
Expand All @@ -23,7 +30,10 @@ To install the plugin, follow these instructions.
3. In the Control Panel, go to Settings → Plugins and click the “Install” button for XML sitemap.

## sitemap Roadmap
Add a Ping for search engines
Custom url entry section in the plugin settings
Privide a way hide entries from the list
Add a Ping for search engines to auto-submit the xml


### Contributors & Developers
Johan Zandstra - [email protected]
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "dolphiq/sitemap",
"description": "Craft 3 plugin that provides an easy way to provide and manage a XML sitemap for search engines like Google and Bing",
"type": "craft-plugin",
"version": "1.0.0",
"version": "1.0.1",
"keywords": [
"craft",
"cms",
Expand Down
1 change: 0 additions & 1 deletion src/Sitemap.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@

namespace dolphiq\sitemap;

use dolphiq\sitemap\services\SitemapService as SitemapServiceService;
use dolphiq\sitemap\models\Settings;

use Craft;
Expand Down
3 changes: 2 additions & 1 deletion src/controllers/SitemapController.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@
*/
class SitemapController extends Controller
{

private $_sourceRouteParams = [];
protected $allowAnonymous = ['index'];
// Public Methods
// =========================================================================

Expand Down

0 comments on commit 7f63632

Please sign in to comment.