magento / magento2

Prior to making any Submission(s), you must sign an Adobe Contributor License Agreement, available here at: https://opensource.adobe.com/cla.html. All Submissions you make to Adobe Inc. and its affiliates, assigns and subsidiaries (collectively “Adobe”) are subject to the terms of the Adobe Contributor License Agreement.
http://www.magento.com
Open Software License 3.0
11.55k stars 9.32k forks source link

CMS Hierarchy renders breadcrumbs even when disabled #35513

Closed fredden closed 2 years ago

fredden commented 2 years ago

Preconditions and environment

Steps to reproduce

  1. Navigate to a CMS page on the front-end which exists within a hierarchy
  2. Observe the breadcrumbs displayed

Expected result

Default (ie, no hierarchy) breadcrumbs displayed

Actual result

Breadcrumbs from CMS Page Hierarchy are shown. Clicking these may result in a 404.

Additional information

I don't have access to the relevant repository any more so I'm unable to submit this as a pull request. The following is what I have used to fix this in the magento/module-versions-cms composer package via cweagans/composer-patches.

diff --git a/Block/Cms/Page.php b/Block/Cms/Page.php
index 751c658..08df823 100644
--- a/Block/Cms/Page.php
+++ b/Block/Cms/Page.php
@@ -76,6 +76,10 @@ class Page extends \Magento\Cms\Block\Page
      */
     protected function _addBreadcrumbs(\Magento\Cms\Model\Page $page)
     {
+        if (!$this->_scopeConfig->isSetFlag('cms/hierarchy/enabled', ScopeInterface::SCOPE_STORE)) {
+            return parent::_addBreadcrumbs($page);
+        }
+
         $breadcrumbs = [];
         if ($this->_scopeConfig->getValue('web/default/show_cms_breadcrumbs', ScopeInterface::SCOPE_STORE)
             && ($breadcrumbsBlock = $this->getLayout()->getBlock('breadcrumbs'))

Release note

No response

Triage and priority

m2-assistant[bot] commented 2 years ago

Hi @fredden. Thank you for your report. To speed up processing of this issue, make sure that you provided the following information:

Make sure that the issue is reproducible on the vanilla Magento instance following Steps to reproduce. To deploy vanilla Magento instance on our environment, Add a comment to the issue:

@magento give me 2.4-develop instance - upcoming 2.4.x release

For more details, review the Magento Contributor Assistant documentation.

Add a comment to assign the issue: @magento I am working on this

To learn more about issue processing workflow, refer to the Code Contributions.


:clock10: You can find the schedule on the Magento Community Calendar page.

:telephone_receiver: The triage of issues happens in the queue order. If you want to speed up the delivery of your contribution, join the Community Contributions Triage session to discuss the appropriate ticket.

:pencil2: Feel free to post questions/proposals/feedback related to the Community Contributions Triage process to the corresponding Slack Channel

m2-assistant[bot] commented 2 years ago

Hi @engcom-November. Thank you for working on this issue. In order to make sure that issue has enough information and ready for development, please read and check the following instruction: :point_down:

engcom-November commented 2 years ago

Hi @fredden , Thank you for reporting and collaboration. Verified the issue on Magento 2.4-develop branch with enterprise edition modules enabled and the issue is reproducible. Breadcrumbs from CMS Page Hierarchy getting displayed even after disabling page Hierarchy Functionality image Clicking on the node gives 404 error image

github-jira-sync-bot commented 2 years ago

:white_check_mark: Jira issue https://jira.corp.magento.com/browse/AC-3167 is successfully created for this GitHub issue.

m2-assistant[bot] commented 2 years ago

:white_check_mark: Confirmed by @engcom-November. Thank you for verifying the issue.
Issue Available: @engcom-November, You will be automatically unassigned. Contributors/Maintainers can claim this issue to continue. To reclaim and continue work, reassign the ticket to yourself.

glo17680 commented 2 years ago

@fredden thanks for contributing, internal team has started working on this.

engcom-Hotel commented 2 years ago

Hello,

As I can see this issue got fixed in the scope of the internal Jira ticket AC-3167 by the internal team Related commits: https://github.com/magento/magento2/search?q=AC-3167&type=commits

Based on the Jira ticket, the target version is 2.4.6.

Thanks