osclass上的货币默认样式

时间:2017-08-03 10:15:26

标签: php osclass

大家好我的货币领域有问题!

当您使用一种货币时,您只会收到默认样式!看图像!

当您使用两种或更多货币时,您会收到一个下拉框!

我想要的是一个包含内部货币但只读功能的包装盒!

这是在osclass上的item-post.php上 这是代码!我该如何改变这个?

<?php ItemForm::currency_select(); ?> 

Default currency style

1 个答案:

答案 0 :(得分:1)

如果您只有一种货币,则此货币是默认货币。

试试这个

<input name="currency" type="text" disabled="disabled" value="<?php echo osc_currency()?>">

在你的CSS中试试这个

input[type="text"]:disabled {
background: #dddddd;
}

请参阅osclass的助手:https://doc.osclass.org/Helpers

试试并告诉我。