From fdf380bccdb3eb52497539f4b9057f76d7255b5e Mon Sep 17 00:00:00 2001 From: Eugene Molotov Date: Sat, 3 Dec 2022 08:58:25 +0500 Subject: [PATCH] [VkBridge] Remove junky 'Show more' button (#3176) --- bridges/VkBridge.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bridges/VkBridge.php b/bridges/VkBridge.php index a23c681c..68ccd936 100644 --- a/bridges/VkBridge.php +++ b/bridges/VkBridge.php @@ -76,9 +76,9 @@ class VkBridge extends BridgeAbstract $is_pinned_post = true; } - if (is_object($post->find('a.wall_post_more', 0))) { - //delete link "show full" in content - $post->find('a.wall_post_more', 0)->outertext = ''; + // Remove 'Show more' button + foreach ($post->find('button.PostTextMore') as $junk) { + $junk->outertext = ''; } $content_suffix = '';