- Posts: 20
COMMUNITY FORUM
Support requests should ONLY be directed there and require an active subscription plan.
This forum board is to be used for archive purposes and knowledge exchange ONLY.
CHAT Module
- baboucarr Jobe
-
Topic Author
- Offline
- Junior Member
Please Log in or Create an account to join the conversation.
- Krikor Boghossian
-
- Offline
- Platinum Member
- Posts: 15920
You can also let me know if you want to add it to the popup player as well.
JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Please Log in or Create an account to join the conversation.
- baboucarr Jobe
-
Topic Author
- Offline
- Junior Member
- Posts: 20
Please Log in or Create an account to join the conversation.
- Krikor Boghossian
-
- Offline
- Platinum Member
- Posts: 15920
The menu type can be an empty com_content menu if you do not want any content to show up.
The chat's code is provided and directions from Radiojar.
You can use their jsfiddle link as a guide.
For the popup use this file. Simply replace the same one in the root folder of your template.
The chat should be 630px in width and about 280 pixels in width.
Do not forget to publish the module in the "RadioWave_Popup_Chat" position.
As always I am attaching a zip file so extract before uploading to get the actual php file.
JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Please Log in or Create an account to join the conversation.
- baboucarr Jobe
-
Topic Author
- Offline
- Junior Member
- Posts: 20
Secondly, the jsfiddle instructions weren't clear enough. Please remember am not a developer. When I create a module what exactly do i do with it, there are two sets of codes provide by radiojar, which goes where?
Stepped Details, and not a summary of steps could perhaps work out for us both. Screenshots are the best:) cause someone else will soon need this kind of help, but can see screenshots and follow them. Am not sure if your time permits such? :)
Please Log in or Create an account to join the conversation.
- Krikor Boghossian
-
- Offline
- Platinum Member
- Posts: 15920
No need to put it in the xml file.
Now as for the instructions.
Publish a new Custom HTML or K2 Tools module (it's up to you to choose which one) and paste this snippet inside it.
Personally I prefer the K2 Tools module because it will never add any "trash code".
<script>//<![CDATA[
window.onload=function(){
rjq('#rjp-chat').radiojar('chatProvider', {
streamname: "u0510s7hb",
width: 400,
height:200,
frameborder:false,
scrolling:"auto",
cssfile:""
});
}//]]>
</script>
<div id="rjp-chat">
</div>
JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Please Log in or Create an account to join the conversation.
- baboucarr Jobe
-
Topic Author
- Offline
- Junior Member
- Posts: 20
Please Log in or Create an account to join the conversation.
- Krikor Boghossian
-
- Offline
- Platinum Member
- Posts: 15920
JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Please Log in or Create an account to join the conversation.
- Aaron Healey & Frank Clark
-
- Offline
- Premium Member
- Posts: 136
Please Log in or Create an account to join the conversation.
- Krikor Boghossian
-
- Offline
- Platinum Member
- Posts: 15920
Do not forget to change the dimensions of the chat widget to match these of the banner.
<script>//<![CDATA[
window.onload=function(){
rjq('#rjp-chat').radiojar('chatProvider', {
streamname: "u0510s7hb",
width: 300,
height: 250,
frameborder:false,
scrolling:"auto",
cssfile:""
});
}//]]>
</script>
<div id="rjp-chat">
</div>
JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Please Log in or Create an account to join the conversation.
- Aaron Healey & Frank Clark
-
- Offline
- Premium Member
- Posts: 136
<?php require('/radiodjpanel/request.php');?>
Please Log in or Create an account to join the conversation.
- Krikor Boghossian
-
- Offline
- Platinum Member
- Posts: 15920
It can be done but you cannot edit it from the module itself.
This code has to be pasted in the popup file (popup.php).
I think using a module is quicker and more efficient.
JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Please Log in or Create an account to join the conversation.
- Aaron Healey & Frank Clark
-
- Offline
- Premium Member
- Posts: 136
im getting the hang of it im so sorry to have to keep asking for help
Please Log in or Create an account to join the conversation.
- Aaron Healey & Frank Clark
-
- Offline
- Premium Member
- Posts: 136
Please Log in or Create an account to join the conversation.
- Krikor Boghossian
-
- Offline
- Platinum Member
- Posts: 15920
Open the popup.php file and locate the following block of code
<!-- Social -->
<?php if(count($social)): ?>
<div class="socialMenu">
<h4><?php echo JText::_('NU_SHARING'); ?></h4>
<ul>
<?php foreach($social as $provider): ?>
<li>
<a class="linkIs-<?php echo $provider->class; ?>" target="_blank" href="<?php echo $provider->url; ?>">
<span><?php echo $provider->name; ?></span>
</a>
</li>
<?php endforeach; ?>
</ul>
</div>
<?php endif; ?>
Cut them and paste them directly under the opening section tag
<section id="content">
JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Please Log in or Create an account to join the conversation.