: str_replace(): Passing null to parameter #2 ($replace) of type array|string is deprecated in
'.$current_price_template.'
'.$last_sale_price_template.'
if(empty($item['permalink']) && !(strpos($item['permalink'], '/ethereum/') > 0)){
return '<h4 style="text-align: center">Currently, this blockchain is not supported.</h4>';
/** inline {@inheritdoc} */
public function getFakeResponse() {
'provider_name' => $this->getProviderName(),
'provider_url' => 'https://opensea.io/',
'title' => 'Unknown title',
public function openSeaStyle($params){
if(isset($params['gapbetweenitem'])){
$gap = $params['gapbetweenitem'];
if(isset($params['nftperrow'])){
$itemperrow = $params['nftperrow'];
if(!empty($itemperrow) && (int)$itemperrow > 0 && $itemperrow != 'auto'){
$nftperrow = 'calc('.(100 / (int) $itemperrow).'% - '.$gap.'px)';
$uniqid = '.ose-uid-'.md5($this->getUrl());
<?php echo esc_html($uniqid); ?> .ep_nft_content_wrap {
grid-template-columns: repeat(auto-fit, minmax(<?php echo esc_html($nftperrow); ?>, 1fr));
gap: <?php echo esc_html($gap); ?>px;