AI Search
Classic Search
 Search Phrase:
 Search Type:
Advanced search options
 Search in Forums:
 Search in date period:

 Sort Search Results by:

AI Assistant
Notifications
Clear all

[Solved] How to disable clickable links in comments (wpforo-auto-embeded-link)

3 Posts
2 Users
1 Reactions
1,523 Views
Posts: 2
 Olli
Topic starter
Translate
English
Spanish
French
German
Italian
Portuguese
Russian
Chinese
Japanese
Korean
Arabic
Hindi
Dutch
Polish
Turkish
Vietnamese
Thai
Swedish
Danish
Finnish
Norwegian
Czech
Hungarian
Romanian
Greek
Hebrew
Indonesian
Malay
Ukrainian
Bulgarian
Croatian
Slovak
Slovenian
Serbian
Lithuanian
Latvian
Estonian
(@olli)
New Member
Joined: 2 years ago
[#57595]

Hi! 

Is there a way to disable the the auto-linking of URLs in comments? I found out, that every link within a comment automatically gets the class "wpforo-auto-embeded-link" which seems to being set by the function "wpforo_content_filter" and there this specific code within the functions.php:

if( apply_filters( 'wpforo_auto_embed_link', true, $post ) ) {
		$content = preg_replace(
			'#([^\'\"]|^)(https?://[^\s\'\"<>\[\]]+)([^\'\"]|$)#iu',
			'$1 <a class="wpforo-auto-embeded-link" href="$2" target="_blank">$2</a> $3',
			(string) $content
		);
	}

I couldn't find an option to disable this functionality but would really like to do so.

Does anyony have any hints on this to me?

Kind regards

Olli


2 Replies
Sofy
Posts: 5774
 Sofy
Admin
Translate
English
Spanish
French
German
Italian
Portuguese
Russian
Chinese
Japanese
Korean
Arabic
Hindi
Dutch
Polish
Turkish
Vietnamese
Thai
Swedish
Danish
Finnish
Norwegian
Czech
Hungarian
Romanian
Greek
Hebrew
Indonesian
Malay
Ukrainian
Bulgarian
Croatian
Slovak
Slovenian
Serbian
Lithuanian
Latvian
Estonian
(@sofy)
Support Team
Joined: 8 years ago

Hi,

You can use the hook-code below:

add_filter( 'wpforo_auto_embed_link', '__return_false' );

Here is a helpful article: https://www.wpbeginner.com/plugins/how-to-easily-add-custom-code-in-wordpress-without-breaking-your-site/


Reply
Posts: 2
 Olli
Topic starter
Translate
English
Spanish
French
German
Italian
Portuguese
Russian
Chinese
Japanese
Korean
Arabic
Hindi
Dutch
Polish
Turkish
Vietnamese
Thai
Swedish
Danish
Finnish
Norwegian
Czech
Hungarian
Romanian
Greek
Hebrew
Indonesian
Malay
Ukrainian
Bulgarian
Croatian
Slovak
Slovenian
Serbian
Lithuanian
Latvian
Estonian
(@olli)
New Member
Joined: 2 years ago

Awesome, thanks for the quick response and help!


Reply
Share: