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] Adding chat box code to wpforo

4 Posts
2 Users
2 Reactions
2,873 Views
Posts: 1244
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
(@percysgrowroom)
Noble Member
Joined: 7 years ago
[#11981]

Hi all, I want to embed some code, so an embedded chat box appears above the main forum, on my forum front page:

https://percysgrowroom.com/forum/

So it will appear under the menu, but above the forum boxes, and within the side bar. 

I have the code to embed, I just don't know where to put it, will I have to edit theme files for Wforro? 


3 Replies
Robert
Posts: 10749
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
(@robert)
Support Team
Joined: 3 months ago

Hi @percysgrowroom,

I'm sorry but I can't follow you. How can something be located in forum boxes and in the same time in the sidebar. So where exactly you'd like to locate it?


Posts: 1244
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
(@percysgrowroom)
Noble Member
Joined: 7 years ago

Yer i understand that wasn't clear, maybe this pic will help:

 

If i add the chat box code, above the Wpforro short code, it will show as full width, like the blue box in this picture

I need to embed it into the wpforro code, so it site within the side bars, like the red box does 🙂 HOpe this helps explain what I mean 

 chatbox

1 Reply
Robert
Admin
(@robert)
Joined: 3 months ago

Support Team
Posts: 10749
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

@percysgrowroom,

You can use wpForo 'wpforo_top_hook'. Put this code in your active theme functions.php file. Replace the [chat-shortcode] with the real shortcode. If it doesn't work, contact to the chat plugin developers and ask them why it doesn't work through do_shortcode() function.

function my_chat_function(){
do_shortcode( '[chat-shortcode]' );
}
add_action('wpforo_top_hook', 'my_chat_function', 10);

 


Share: