If you want to add new custom fonts in your theme then follow below Instruction.
Let’s say you need to add your font.woff file in your theme web/fonts folder, then you need to import that font in Magento, so you need to create new file _typography.less in your theme web/css/source/ folder.
and add your fonts like below
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
& when (@media-common = true) { .lib-font-face( @family-name: "Neue Plak W04 Regular", @font-path: '@{baseDir}fonts/65781df7-af4a-4a7e-8a89-83876affcd78', @font-weight: normal, @font-style: normal ); .lib-font-face( @family-name: "font-family-name-here", @font-path: '@{baseDir}fonts/{your-woff-font-file-name-here}', @font-weight: normal, @font-style: normal ); } |
If you want get query string params in controller file,...
Create di.xml and add the below code Magemonkey/Redirect/etc/frontend/di.xml [crayon-628470c8e945f565804568/] Create...
You can try below code to change local date to...
Step 1: First you need to add registration.php file in...
Step1 : Override message.js in current theme file on the...