Last active
March 14, 2016 13:36
-
-
Save ville6000/d96709e7cd5d63aebcfd to your computer and use it in GitHub Desktop.
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
<?xml version="1.0" encoding="UTF-8"?> | |
<modification> | |
<id>ExampleId</id> | |
<version>0.1</version> | |
<vqmver>2.5.1</vqmver> | |
<author>Ville6000</author> | |
<file name="catalog/view/theme/journal/template/product/product.tpl"> | |
<operation> | |
<search position="replace"><![CDATA[<input type="button" value="<?php echo $button_cart; ?>" id="button-cart" class="button" />]]></search> | |
<add><![CDATA[ | |
<?php if ($quantity == 0): ?> | |
<input type="button" value="<?php echo $stock; ?>" id="button-cart" class="button disabled" disabled /> | |
<?php else: ?> | |
<input type="button" value="<?php echo $button_cart; ?>" id="button-cart" class="button" /> | |
<?php endif; ?> | |
]]></add> | |
</operation> | |
</file> | |
</modification> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment