Magento 1.9 – Change Multiple Page/Blocks Store View

magento-1.9store-view

I created a new Store View in my Magento 1.9.1.0 and now I need to set some of my pages and blocks to "All Store Views".

When I go to CMS > Page or CMS > Static Blocks I am able to open one item (page or block) and change the Store View inside it. Do I need to do it manually for each page/block or is there an easy way to do that? (Like multiple select changes)

Thanks!

Best Answer

Run sql to update them by batch,

  1. Mark down all your cms page id that want to switch to all store view
  2. insert record into table 'cms_page_store', where the page id is the cms you mentioned in step1, set store_id = 0 (means all store view)
Related Topic