Arifursdev
Arifursdev
when added some html inside php `before save` `after save` `if html added in echo it works correctly`
I think prev. version of the plugin had whitespace control hyphen snippets. https://shopify.github.io/liquid/basics/whitespace/ ```liquid {% assign test = 'text' %} ``` // whitespace control: ```liquid {%- assign test = 'text'...
Shopify introduced new "text_alignment" input https://shopify.dev/docs/themes/architecture/settings/input-settings#text_alignment' currently if you add that in schema, it will give you a error.
Before there was no whitespace control snippets ```liquid {% assign variable = 123 %} ``` After ```liquid {% assign variable = 123 %} {%- assign variable = 123 -%} ......
missing transform properties like rotate3d, translateZ, scale3d etc.. https://developer.mozilla.org/en-US/docs/Web/CSS/transform
This pull request introduces two new functions to the `functions.php` file to enhance the functionality of the action scheduler. These functions allow for running all queued actions or the next...
This pull request introduces **new swipe-related events** to the Slick slider, allowing developers to hook into the swipe lifecycle more easily. The changes include both **documentation updates** and **event triggers...