custom Switch button in footer
-
I've created a switch button on my homepage (which is also the project footer) that lets me switch between the Series view and the Artworks view, thanks to Collapse Row (code below). But I can't manage to improve the code so that when I'm on a project in the ‘Artworks’ category (selector: data-catid=‘[3]’) I can force the active state of the switch to Artworks to get the corresponding footer. And vice versa when you switch back to the Series view (selector: data-catid=‘[1]’). Is it the fact that my homepage is a footer that's causing the problem?
I'd appreciate your help :)
Thanks a lot!
—
https://benoitlefeuvre.com/<script> function toggleButton(clickedButton) { var buttons = document.querySelectorAll('.overview-button, .artworks-button'); buttons.forEach(function(button) { button.classList.remove('selected'); }); clickedButton.classList.add('selected'); } </script>
-
ah im not sure if i understand correctly!
u mean when ure inside this:
https://benoitlefeuvre.com/rooted/this is a series.
and there the switch doesnt work?I can force the active state of the switch to Artworks to get the corresponding footer.
this sentence i dont understand.
you mean the active state is not correct when you areah you mean when you are here:
https://benoitlefeuvre.com/erosion-3/the button "artwork" should have the active state. but instead right now "series" has the active state?
window.laytheme.on('newpageshown', function(){ if(jQuery('body').attr('data-catid') == '[3]'){ jQuery(".artworks-button").addClass('selected'); jQuery(".overview-button").removeClass('selected'); } else if(jQuery('body').attr('data-catid') == '[1]'){ jQuery(".artworks-button").removeClass('selected'); jQuery(".overview-button").addClass('selected'); } })
do you understand what my code does? maybe try this
-
thanks for your quick feedback, yes that's exactly it, you've got it right! activating the switch button works with your code but not changing the expand/collapse rows. Would you know how it could be done?
-
when i click on series and when i click on artworks
both times rows are hidden and shown
-
I've added the code you gave me, which selects the artworks tab in the example on this page but doesn't display the content as if you'd clicked on artworks, see?
-
idk, when i click artworks i see things like this:
how am i supposed to know which rows should show and which should hide?
its so many rowscan you create a simpler case for me
look this is the series button.
in there, it has: all row ids:
6,24,30,46,58,63,9,68,49,90,105,109,101,104,136,133,86,91,94,141,143,120,128,497in the data-expand attribute.
those should get shown when you click on there.the artworks button has these:
1,65,72,85,56,79,21,40,52,61,38,12,42,99,136,147,138,159,156,153,388,426,124,179,331,329,367,369,307,314,119,455,71these are like idk. 90 rows, i dont really have the time to go through all of these and check them out
i think using the row expand feature here is not good.
i think you should give your rows a class of either:
seriesor
artworks
in right click- > set html class and id
then make your javascript show and hide rows based on their class and what you clicked on
jQuery(".artworks-button").on('click', function(){ jQuery(".row.artworks").show(); jQuery(".row.series").hide(); });
if you dont want to do this, please create a much simpler test case for me on a separate page with like 2 artwork rows and 2 series rows and a clear way for me to see which row is an artwork row and which is a series row
-
there's no need to change which rows should be displayed or not, because I manage this myself in the homepage (which is also the footer). when here, for example, you're on an Artwork detail page, you need to be able to display the correct corresponding category in the footer as if you'd clicked on it (as on the homepage).
in your previous code, the category selection worked but not the simulated click to display the correct category (artwork or series). As I said earlier in my messages. Is this more understandable ?
-
as i said i need a simpler test case
:(
Before you post:
- When using a WordPress Cache plugin, disable it or clear your cache.
- Update Lay Theme and all Lay Theme Addons
- Disable all Plugins
- Go to Lay Options → Custom CSS & HTML, click "Turn Off All Custom Code", click "Save Changes"
This often solves issues you might run into
When you post:
- Post a link to where the problem is
- Does the problem happen on Chrome, Firefox, Safari or iPhone or Android?
- If the problem is difficult to explain, post screenshots / link to a video to explain it