আমি কাস্টম ট্যাবের অধীনে আমার কাস্টম বিভাগের জন্য একটি গ্রুপ এবং কিছু ক্ষেত্র তৈরি করার চেষ্টা করছি
ট্যাব এবং বিভাগটি তৈরি হচ্ছে B তবে আমি যখন বিষয়বস্তুতে বিভাগটিতে ক্লিক করব তখন এটি 404 ত্রুটি পাওয়া যায়নি
আমার system.xML ফাইলটি নিম্নরূপ
<config>
<tabs>
<!--node is just an identifier-->
<animala translate="label" module="training_animal">
<label>Training</label>
<sort_order>1</sort_order>
</animala>
</tabs>
<sections>
<animals translate="label" module="training_animal">
<class>seperator-top</class>
<label>Training</label>
<!--node vlaue should match the tabs node name-->
<tab>animala</tab>
<frontend_type>text</frontend_type>
<sort_order>100</sort_order>
<show_in_default>1</show_in_default>
<show_in_website>1</show_in_website>
<show_in_store>1</show_in_store>
<groups>
<training_animal_group translate="label">
<label>My Custom Group</label>
<comment>Some comment about my group</comment>
<sort_order>10</sort_order>
<show_in_default>1</show_in_default>
<show_in_website>1</show_in_website>
<show_in_store>1</show_in_store>
<fields>
<training_animal_field translate="label tooltip comment">
<label>My Custom Field</label>
<comment>Some comment about my field</comment>
<tooltip>Field ToolTip</tooltip>
<show_in_default>1</show_in_default>
<show_in_website>1</show_in_website>
<show_in_store>1</show_in_store>
<frontend_type>text</frontend_type>
</training_animal_field>
</fields>
</training_animal_group>
</groups>
</animals>
</sections>
</config>
আমার বিভাগটির ইউআরএল
http://localhost/mage2/index.php/admin/system_config/edit/section/animal/
মডিউল কনফিগার। xml
<modules>
<Training_Animal>
<version>0.2.0</version>
</Training_Animal>
</modules>
Training_Animal_Block
<training_animal>
<class>Training_Animal_Helper</class>
</training_animal>
</helpers>
আমাকে এই থ্রেডে জড়িত সবাইকে আমাকে প্রচুর সাহায্য করার জন্য ধন্যবাদ জানাতে চাই :)
—
সিলিকনরॉकস্টার