
-
AuthorPosts
-
December 18, 2015 at 1:06 pm #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.
December 19, 2015 at 9:54 am #555383Hey TineBln,
Not sure if that would be possible but send us a link to your site and we’ll have a look.
Regards,
RikardDecember 21, 2015 at 4:03 pm #555987Hey 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,
TineDecember 27, 2015 at 2:48 pm #557607Hi,
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,
JosueJanuary 4, 2016 at 2:30 pm #559185Hi 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,
TineJanuary 4, 2016 at 2:41 pm #559189Addition:
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.
January 5, 2016 at 11:11 am #559836 -
This topic was modified 9 years, 3 months ago by
-
AuthorPosts
- You must be logged in to reply to this topic.