magento2-blog-module-tutorial icon indicating copy to clipboard operation
magento2-blog-module-tutorial copied to clipboard

A tutorial on how create a magento 2 module from scratch, with tests.

Results 11 magento2-blog-module-tutorial issues
Sort by recently updated
recently updated
newest added

https://www.ashsmith.io/magento2/module-from-scratch-module-part-2-models On this page. link of "Service Contracts - Data interfaces" is broken It just sends to main developer doc page. i suggest replace http://devdocs.magento.com/guides/v2.0//extension-dev-guide/service-contracts/design-patterns.html#data-interfaces with http://devdocs.magento.com/guides/v2.0/extension-dev-guide/service-contracts/design-patterns.html#data-interfaces There's a extra...

I am working on create a blog using magento 2. So, i have install your module and go to admin panel it throw below error: ``` Invalid Document Element 'add':...

Exception #0 (Zend_Db_Statement_Exception): SQLSTATE[42S22]: Column not found: 1054 Unknown column 'block_id' in 'where clause', query was: SELECT `main_table`.* FROM `ashsmith_blog_post` AS `main_table` WHERE (`block_id` IN('9'))

A lot has changed since 2.0 release of Magento, so I want to investigate and document on this ticket everything that should change within the article, or where I can...

Great tutorial. One of the best. Is primaryFieldName correct? https://github.com/ashsmith/magento2-blog-module-tutorial/blob/master/view/adminhtml/ui_component/blog_post_listing.xml#L28

I don't see a grid collection which is referenced in the di.xml file or do I misunderstand? https://github.com/ashsmith/magento2-blog-module-tutorial/blob/master/etc/di.xml#L27 Keep up the great work!

Ability to work with multi-store would be great. Select which stores can publish a post.

We should follow best practises set out by Magento by using data models to access our blog posts. I'm going to implement the following - `Ashsmith\Blog\Api\Data\PostInterface` (this already exists) -...

Things are a little funky in 2.1.x, so it makes sense to follow what `Magento_Cms` does, which uses ui components to build up the forms. Makes sense.

I have implemented WYSIWYYG editor. So user can format the content into the blog.