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
.circle { | |
width: 200px; | |
height: 200px; | |
background: #00a1de; | |
border-radius: 50% | |
} |
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
<attribute name="class" value="my-new-class"/> |
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
<?= $this->getLayout() | |
->createBlock('Magento\Store\Block\Switcher') | |
->setTemplate('Magento_Store::switch/stores.phtml') | |
->toHtml(); ?> |
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
<?php | |
namespace VeritStudio\CustomModule\Block; | |
use Magento\Customer\Model\Session; | |
class CustomBlock extends \Magento\Framework\View\Element\Template { | |
public function __construct( | |
Session $customerSession, |
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
_RenderControls: function () { | |
var $widget = this, | |
container = this.element, | |
classes = this.options.classes, | |
chooseText = this.options.jsonConfig.chooseText; | |
$widget.optionsMap = {}; | |
$.each(this.options.jsonConfig.attributes, function () { | |
var item = this, |
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
.payment-method-content { | |
.lib-vendor-prefix-display(); | |
.lib-vendor-prefix-flex-direction(column); | |
} | |
.checkout-agreements-block { | |
order: 1; | |
} |
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
<body> | |
<attribute name="class" value="custom_class"/> | |
</body> |
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
<a data-bind="attr: {href: window.checkout.checkoutUrl}">Checkout</a> |
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
<a data-bind="attr: {href: window.checkout.shoppingCartUrl}">Cart</a> |
NewerOlder