Hi Ed,
Jive Media is the parent company of DNNprofessor.com. We have many requests for help from folks starting out in web video. The Jive Media video selection choice was not intended to be blatant advertising but an attempt to offer a video help and solution resource.
Since Xmod applications are not compiled and can easily be edited we did not consider it an issue.
If it is a major issue let us know and we will remove it in the next release of Move My Inventory.
To remove the Jive Media video help selection choice you can do one of the following:
Option 1. The quickest method is to open the form in an editor and perform a search for
the div named DivVideoJive
Simply replace the couple paragraphs of code, between the div tags, with possibly your own help link to video assistance.
[div align="center" id="DivVideoJive"]
Your message code here
[/div]
(Note: brackets have been used to display the code in the forum)
This will become the text the user sees before selecting a video choice.
Save the form
Done
Option 2. Set the div named DivVideoJive style to style.display='none' by opening the form in a editor and modify the function initializeForm() at the bottom of the form code. Perform a find and replace for
document.getElementById('DivVideoJive').style.display='';
with
document.getElementById('DivVideoJive').style.display='none';
There will be a total of three occurrences.
Save the form
Option 3. If you wish to totally remove the div named DivVideoJive and all associated files, you can:
- edit the form and remove the div section named DivVideoJive,
- remove all references to document.getElementById('DivVideoJive') in the function initializeForm() as described in option 2.
- Save the form
- Open the dnnp-MMI.js file that is located in your xmod >> packages >> MoveMyInventory folder and remove all references to document.getElementById('DivVideoJive') in the function displayVideoChoice().
My choice eould be Option 1. It is a 3 minute solution that allows you to customize the form to suit your own personal needs.
Best regards,
Buck |