mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-05 00:59:35 +00:00
[PepperBridgeAbstract] Fix Deal Origin and Shipping cost (#3790)
- Deal Origin was changed by the website : fixed the CSS class to get it - Shipping cost had an extra SVG image in the content : removed the whole HTML tags from the content
This commit is contained in:
parent
8d0ddb579f
commit
84b5ffcc7c
@ -356,11 +356,11 @@ HEREDOC;
|
||||
if ($deal->find('span[class*=space--ml-2 size--all-s overflow--wrap-off]', 0) != null) {
|
||||
if ($deal->find('span[class*=space--ml-2 size--all-s overflow--wrap-off]', 0)->children(1) != null) {
|
||||
return '<div>' . $this->i8n('shipping') . ' : '
|
||||
. $deal->find('span[class*=space--ml-2 size--all-s overflow--wrap-off]', 0)->children(1)->innertext
|
||||
. strip_tags($deal->find('span[class*=space--ml-2 size--all-s overflow--wrap-off]', 0)->children(1)->innertext)
|
||||
. '</div>';
|
||||
} else {
|
||||
return '<div>' . $this->i8n('shipping') . ' : '
|
||||
. $deal->find('span[class*=text--color-greyShade flex--inline]', 0)->innertext
|
||||
. strip_tags($deal->find('span[class*=text--color-greyShade flex--inline]', 0)->innertext)
|
||||
. '</div>';
|
||||
}
|
||||
} else {
|
||||
@ -376,7 +376,7 @@ HEREDOC;
|
||||
{
|
||||
if (($origin = $deal->find('button[class*=text--color-greyShade]', 0)) != null) {
|
||||
$path = str_replace(' ', '/', trim(Json::decode($origin->{'data-cloak-link'})['path']));
|
||||
$text = $origin->find('span[class*=cept-merchant-name]', 0);
|
||||
$text = $origin->find('span[class*=link]', 0);
|
||||
return '<div>' . $this->i8n('origin') . ' : <a href="' . static::URI . $path . '">' . $text . '</a></div>';
|
||||
} else {
|
||||
return '';
|
||||
|
Loading…
Reference in New Issue
Block a user