Open
Conversation
indykoning
commented
Feb 20, 2026
Comment on lines
+52
to
+58
| $appends = array_filter($attributes, fn ($key) => $product->hasAnyGetMutator($key)); | ||
| $relations = array_filter( | ||
| array_map(fn ($key) => Str::camel($key), $attributes), | ||
| fn ($key) => $product->isRelation($key) | ||
| ); | ||
|
|
||
| $data = Arr::only($product->toArray(), $attributes); | ||
| $data = Arr::only($product->append($appends)->loadMissing($relations)->toArray(), $attributes); |
Member
Author
There was a problem hiding this comment.
This is not immediately used so could be removed.
But it adds the ability to activate getters and relationships when asking for them in the productpage.frontend.attributes filter
…ature/tier-prices
…ature/tier-prices
indykoning
commented
Feb 23, 2026
Member
Author
There was a problem hiding this comment.
These are changed due to the fusion backback tier price for qty of 1
(2nd row to the right)
Member
Author
There was a problem hiding this comment.
This file is changed due to the fusion backpack being in the related products slider
royduin
reviewed
Feb 24, 2026
royduin
reviewed
Feb 24, 2026
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This PR adds support for tier prices to Rapidez.
If a Tierprice with qty of 1 is added it will not be shown on the product page as is default in Magento.
This can be used to set different prices for different customer groups. Search and category pages also respect this.
Magento for reference:

ref: RAP-1626