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

[Closed] How to change redirect URL after Reply?

3 Posts
2 Users
0 Reactions
2,539 Views
Posts: 2
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
(@xyzha)
New Member
Joined: 3 years ago
[#30561]

Hi everyone!

I changed the order of my forum:

add_filter('wpforo_post_list_args', function ($args){
if(!empty($args)){
$args['orderby'] = 'created DESC, postid DESC';
}
return $args;
});

 After that I have a trouble at the reply and the redirect. How can I redirect the user to the first page of the replied topic (to show your own reply)? 

Currently, my redirect URL looks like : "https://domain.xx/forum/uzenofal/teszte-topic/paged/2/#post-38776/" --> Its could by fine without "/paged/2/" part, because our new replies are on the first page. 

I have a code for redirect to the parent URL, but it doesnt works:

function redirect_to_first_page( $url, $post ) {

$topic_url = get_permalink( $post->post_parent );
return $topic_url . '?wpforo=page1';

}

add_filter( 'wpforo_reply_add_redirect_url', 'redirect_to_first_page', 10, 2 );

I hope you can help me in this matter!

Thanks a lot!

 


2 Replies
Posts: 2
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
(@xyzha)
New Member
Joined: 3 years ago

Any idea? 🙁


1 Reply
Chris
(@chris)
Joined: 5 years ago

Famed Member
Posts: 3610
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

Hi @xyzha,

Sorry for the late response, your question has been sent to the Devs, that's why it took time to give an answer. 

wpForo Doesn't have that hook which you added in the code and because of that, your code doesn't work.

'wpforo_reply_add_redirect_url'

And also, we have set under consideration to create hooks with paths for the front end actions before the redirection.


Share: