Forum Replies Created
-
AuthorPosts
-
Ernest Marcinko
KeymasterYou cannot access this content.
Ernest Marcinko
KeymasterYou cannot access this content.
Ernest Marcinko
KeymasterYou cannot access this content.
Ernest Marcinko
KeymasterYou cannot access this content.
Ernest Marcinko
KeymasterSorry, yes I did.
The reason why it doesn’t work there it’s because the match is within an accordion, which is in the sidebar and therefore the browser can’t scroll into it.
I will look into the MDM documentation to see if there is any way to check if the match is visible. So far it was not possible to do, but maybe they have implemented something for it.
If that’s possible, then this should be resolvable very easily. I will let you know.Ernest Marcinko
KeymasterYou cannot access this content.
Ernest Marcinko
KeymasterYou cannot access this content.
July 19, 2025 at 10:58 am in reply to: Input Search Field Won’t Focus After Click Magnifying Glass – 2.0 #54952Ernest Marcinko
KeymasterNice find, thank you very much for sharing! I will keep this in mind.
I suspect it inherently applies to all animations, therefore it triggers every time you type, removing the focus, explains everything.
Ernest Marcinko
KeymasterInterestingly, that worked!
However when I try to install the beta version I get blocked immediately: https://i.imgur.com/GxiE00J.png
Can you please try installing it, you can donwload it from this URL. After installing and clearing all layers of cache the new scroll method should be in effect.
If it works, then I will make sure to add this change to the upcoming release.
Ernest Marcinko
KeymasterYou cannot access this content.
Ernest Marcinko
KeymasterUnfortunately no, I did not recieve any email. I checked spam too, but nothing in there.
Ernest Marcinko
KeymasterYou cannot access this content.
Ernest Marcinko
KeymasterYou cannot access this content.
Ernest Marcinko
KeymasterHi,
In theory yes, but definitely needs some custom work.
If it’s only CSS classes and nothing major, then I recommend using the group-header.php template file, where you can do some conditional checks via the
$group_class,$group_urland$group_namevariables.If something more complex, then within the vertical.php you also have access to those variables, they are passed on, so you can do conditional checks against the
$group_class,$group_urland$group_namevariables too.Based on that you could create more files like vertical1.php, vertical2.php etc.. and do logics like:
if ( $group_name === 'Group name 1' ) { require_once 'vertical1.php'; } else if ( $group_name === 'Group name 2' ) { require_once 'vertical2.php'; } else { require_once 'vertical_default.php'; }..altough I’m not sure if the variables will be passed on to the required files.
Alternatively you can do the whole logic in the vertical.php file directly too:
<?php if ( $group_name === 'Group name 1' ): ?> <div>...</div> <?php elseif ( $group_name === 'Group name 2' ): ?> <div>...</div> <?php else: ?> <div>...</div> <?php endif; ?>Ernest Marcinko
KeymasterIntersting, now the scroll animation triggers but it’s simply ignored for some reason. I don’t know if it’s a 3rd party script or an attribute, but something is blocking it.
Can you add temporary back-end details? I would like to install and test a beta release to see if a different method works.
-
AuthorPosts