How to Change Block Arguments in Magento 2
In this post, I’m going to guide you on how to change block arguments in Magento 2.
How to Change Block Arguments
First, you need to modify the targeted block arguments you are going to change.
For the block arguments to be modified, the <referenceBlock>
instruction is used.
Below is an example of how to change the existing block argument’s value and also add a new argument.
- Initial block declaration:
<block class="Namespace_Module_Block_Type" name="block.example">
<arguments>
<argument name="label" xsi:type="string">Block Label</argument>
</arguments>
</block>
- Extending layout:
<referenceBlock name="block.example">
<arguments>
<!-- Modified block argument -->
<argument name="label" xsi:type="string">New Block Label</argument>
<!- Newly added block argument -->
<argument name="custom_label" xsi:type="string">Custom Block Label</argument>
</arguments>
</referenceBlock>
Conclusion
That’s all. I have just provided you an instruction on how to modify block arguments in Magento 2 using the <referenceBlock>
instruction. I hope it is helpful for you. If you have any questions or new ideas, feel free to leave a comment below.
Thanks for reading!
- How to create a simple Hello World module for Magento 2
- Magento 2 Block Template Ultimate Guides
- How to Create Module in Magento 2
- How to Create Controller in Magento 2
- How to create CRUD Models in Magento 2
- How to Create Magento 2 Block, Layout and Templates
- Configuration - System.xml
- How To Create Admin Menu In Magento 2
- Admin ACL
- Admin Grid