ccollier

Forum Replies Created

Viewing 1 post (of 1 total)
  • Author
    Posts
  • in reply to: View All bypasses Category limits #1493503
    ccollier
    Participant

    Thank you for replying.
    First I want to say, I have been customizing your code, especially the emailed tickets since purchasing your software. I want to go on record, you folks program exceptionally well. The code is some of the best I have ever seen, Perfectly formatted, spectacular variable names, and adequate documentation.

    For this use, I will not need to use all of the features, in fact most of my customization is for hiding many of them. I am still very happy to have contributed to your efforts.

    Thank You.

    NOW!

    I understand your position and greatly apprciate the tips for where to find the code.

    I had already made an adequate, NOT perfect, but very usable solution to the issue, I will continue with it.

    For anyone who would like to know how.

    I hid the Default “View Calendar” and the Next / Previous Event Links; using CSS.
    Next in Events/Display Setting I added the following in the HTML before event.
    This adds another button, that is a simple Back button.

    This will not prevent anyone from direct linking, or getting to an unwanted category some other way, but so long as people are aware of this. It is a very useable solution to keeping those categories seperated when needed.

    this is the simple code

    =========

    <button onclick=”goBack()”>Return to Calendar</button>

    <script>
    function goBack() {
    window.history.back();
    }
    </script>

Viewing 1 post (of 1 total)