magespecialist / m2-MSP_CmsImportExport

MSP - CMS Import Export module for M2
74 stars 36 forks source link

CMS Page meta_title is not exported or imported #16

Open jwhitney55 opened 4 years ago

jwhitney55 commented 4 years ago

I noticed the meta title is missing from CMS pages on export and import. This can be fixed with two lines of code in /Model/Content.php:

At line #160: CmsPageInterface::META_KEYWORDS => $pageInterface->getMetaKeywords(),`

add this: CmsPageInterface::META_TITLE => $pageInterface->getMetaTitle(),

Then, at line #423: ->setMetaKeywords($cms[CmsPageInterface::META_KEYWORDS])

Add this: ->setMetaTitle($cms[CmsPageInterface::META_TITLE])