- Posts: 47
- Thank you received: 1
Ask the community, share ideas, and connect with other LimeSurvey users!
Please Log in to join the conversation.
Please Log in to join the conversation.
Please Log in to join the conversation.
Please Log in to join the conversation.
I'm on my phone now so cannot provide a code example but you may be able to hide/modify that element via JavaScript in a custom admin theme. This would get around the updating concerns.And everything will be overwritten by an update.
Please Log in to join the conversation.
$(document).on('ready pjax:scriptcomplete',function(){ // Remove the core links $('#help-dropdown li').remove(); // Insert some new links $('#help-dropdown').append('<li>\ <a href="https:google.com" target="_blank">\ Google\ <i class="fa fa-external-link pull-right"></i>\ </a>\ </li>\ <li>\ <a href="https:example.org" target="_blank">\ Example\ <i class="fa fa-external-link pull-right"></i>\ </a>\ </li>'); });
Please Log in to join the conversation.
Please Log in to join the conversation.
Please Log in to join the conversation.
CODE:$(document).on('ready pjax:scriptcomplete',function(){ // Remove the core links $('#help-dropdown li').remove(); // Insert some new links $('#help-dropdown').append('<li>\ <a href="https:google.com" target="_blank">\ Google\ <i class="fa fa-external-link pull-right"></i>\ </a>\ </li>\ <li>\ <a href="https:example.org" target="_blank">\ Example\ <i class="fa fa-external-link pull-right"></i>\ </a>\ </li>'); });
Please Log in to join the conversation.
Please Log in to join the conversation.