Hi,
what are "all suggested code in other forums"?
If you do not show it, we can't know where there is the mistake?
What version of LS was the code for?
Did you use the wrong identifier?
Or relied on ChatGPT
?
Nevertheless:
These two solutions work in LS 6.x.
and this question hasnt been asked for years,
This is covered several times during the last year.
But as this question is not asked isolated but the buttons are to hide under certain conditions (for ten secondes, until the video has ended, etc.) it is a bit difficult to search for.
1. Hidden by javascript
Code:
<script charset="utf-8" type="text/javascript">
$(document).ready(function() {
$('#ls-button-submit').hide();
});
</script>
2. Hidden by css
Code:
<style type="text/css">#ls-button-submit {
display:none;
}
</style>
And the identifier of the "Previous"-button is "#ls-button-previous".
Joffm