Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #554916

    Hello,
    is it possible to remove or change the URL parameter/anchor-link of the active toggles etc. ( e.g. #toggle-id-1)?
    It conflicts with other plugins in my installation.

    Thanks,
    Tine

    • This topic was modified 9 years, 3 months ago by TineBln.
    #555383

    Hey TineBln,

    Not sure if that would be possible but send us a link to your site and we’ll have a look.

    Regards,
    Rikard

    #555987

    Hey Rikard,

    thanks for your response! The site isn’t online yet (working on my localhost).
    Presumably I can’t deactivate the anchor-links for the active elements?

    Thanks,
    Tine

    #557607

    Hi,

    Try adding this at the very end of your theme / child theme functions.php file:

    function add_custom_script(){
    ?>
    <script>
    (function($){
        $(window).load(function() {
        	 $(".toggler").on('click', function(){ setTimeout(function(){ window.location.hash='#_'; }, 10); });
        });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'add_custom_script');

    Regards,
    Josue

    #559185

    Hi Josue,

    thanks for your example!
    Unfortunately this solution would remove the other (necessary) anchor-tags, which I want to use furthermore.
    Readout the actual anchor before changing and inserting it on click doesn’t also work, because the toggler-click-function always seems to change the actual anchor :-(. Is there a possibility to grab the anchor BEFORE it has been overwritten by the toggler?

    Regards,
    Tine

    #559189

    Addition:

    I tried this:

    $(window).load(function() {
                $actualhash = window.location.hash;
                $(".toggler").on('mousedown', function(){
                    $actualhash = window.location.hash;
                });
                $(".toggler").on('click', function(){ 
                    setTimeout(function(){ 
                        window.location.hash = $actualhash; 
                    }, 10); 
                });
            });

    It works, but seems to be a dirty workaround. Do you have a better solution?

    It would be nicer if I could generally deactivate the anchor for toggles etc.

    • This reply was modified 9 years, 3 months ago by TineBln.
    #559836

    Hi!

    You could try using hashchange:
    http://stackoverflow.com/a/14970748

    Cheers!
    Josue

Viewing 7 posts - 1 through 7 (of 7 total)
  • You must be logged in to reply to this topic.