-
Notifications
You must be signed in to change notification settings - Fork 9.4k
[Forwardport] Add compare list link to success message after adding a product #16757
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
magento-engcom-team
merged 6 commits into
magento:2.3-develop
from
gelanivishal:2.3-develop-PR-port-13862
Aug 10, 2018
Merged
Changes from 3 commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
577e8dd
Add a link to the success message when adding a product to the compar…
avstudnitz de0e8d1
Renaming to avoid duplication
avstudnitz f225505
Merge branch '2.2-develop' into compare-success-message
gelanivishal b8440f0
Resolved conflict changes
gelanivishal 7965492
Fixed conflict issue
gelanivishal e7463c1
Update CompareTest.php
gelanivishal File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -79,23 +79,14 @@ | |
<argument name="typeId" xsi:type="string">recently_compared_product</argument> | ||
</arguments> | ||
</virtualType> | ||
<type name="Magento\Catalog\Block\Product\View\Gallery"> | ||
<type name="Magento\Framework\View\Element\Message\MessageConfigurationsPool"> | ||
<arguments> | ||
<argument name="galleryImagesConfig" xsi:type="array"> | ||
<item name="small_image" xsi:type="array"> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Hi |
||
<item name="image_id" xsi:type="string">product_page_image_small</item> | ||
<item name="data_object_key" xsi:type="string">small_image_url</item> | ||
<item name="json_object_key" xsi:type="string">thumb</item> | ||
</item> | ||
<item name="medium_image" xsi:type="array"> | ||
<item name="image_id" xsi:type="string">product_page_image_medium</item> | ||
<item name="data_object_key" xsi:type="string">medium_image_url</item> | ||
<item name="json_object_key" xsi:type="string">img</item> | ||
</item> | ||
<item name="large_image" xsi:type="array"> | ||
<item name="image_id" xsi:type="string">product_page_image_large</item> | ||
<item name="data_object_key" xsi:type="string">large_image_url</item> | ||
<item name="json_object_key" xsi:type="string">full</item> | ||
<argument name="configurationsMap" xsi:type="array"> | ||
<item name="addCompareAddSuccessMessage" xsi:type="array"> | ||
<item name="renderer" xsi:type="const">\Magento\Framework\View\Element\Message\Renderer\BlockRenderer::CODE</item> | ||
<item name="data" xsi:type="array"> | ||
<item name="template" xsi:type="string">Magento_Catalog::messages/addCompareAddSuccessMessage.phtml</item> | ||
</item> | ||
</item> | ||
</argument> | ||
</arguments> | ||
|
14 changes: 14 additions & 0 deletions
14
app/code/Magento/Catalog/view/frontend/templates/messages/addCompareSuccessMessage.phtml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<?php | ||
/** | ||
* Copyright © Magento, Inc. All rights reserved. | ||
* See COPYING.txt for license details. | ||
*/ | ||
// @codingStandardsIgnoreFile | ||
/** @var \Magento\Framework\View\Element\Template $block */ | ||
?> | ||
<?= $block->escapeHtml(__( | ||
'You added product %1 to the <a href="%2">comparison list</a>.', | ||
$block->getData('product_name'), | ||
$block->getData('compare_list_url')), | ||
['a'] | ||
); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks like you wrongly resolved conflicts while doing this Forwardport. Can you please check this part and resolve it correctly?