Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
Не обещаю что получится, но попробовать можно:Как сделать для яндекс маркета файл, в котором цены будут в гривне? если курс рубля относительно гривны ставить, яндекс маркет не принимает, пишут что в гривнах надо.
fputs( $f, " <currencies>\n");
fputs( $f, " <currency id=\"RUR\" rate=\"1\"/>\n");
fputs( $f, " <currency id=\"USD\" rate=\"CBRF\"/>\n");
fputs( $f, " <currency id=\"EUR\" rate=\"CBRF\"/>\n");
fputs( $f, " <currency id=\"UAH\" rate=\"CBRF\"/>\n");
fputs( $f, " </currencies>\n");
fputs( $f, " <currencies>\n");
fputs( $f, " <currency id=\"UAH\" rate=\"1\"/>\n");
fputs( $f, " </currencies>\n");
fputs( $f, " <currencyId>RUR</currencyId>\n" );
fputs( $f, " <currencyId>UAH</currencyId>\n" );
в этом же файле (\published\SC\html\scripts\modules\products\yandex .market\class.yandexmarket.php) находите строчкуЯ извиняюсь за некропост, но
fputs( $f, " <currency id=\"UAH\" rate=\"CBRF\"/>\n");
можно как-то вместо CBRF ставить текущий курс магазина?
$this->_exportBegin( $f );
$this->_exportBegin( $f, $rate );
function _exportBegin( $f )
function _exportBegin( $f, $rate )
fputs( $f, " <currency id=\"UAH\" rate=\"CBRF\"/>\n");
fputs( $f, " <currency id=\"UAH\" rate=\"".$rate."\"/>\n");