Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #457683

    Hi there, best Support ever ;-)

    on e.g. http://www.musikzentrale.net/ueber-uns/musikschulen/gladenbach/ the catalogue module to show the different instruments we teach at our music school. I would like to have the whole cell linked to the respective page, but since this feature obviously adds some extra spacing, thumbnail flips above the title and the the text gets somewhat more narrow.

    Is there any way to remove the additional spacing and get the catalogue element linked to a page? Thanks for your assistance.

    Best regards, Sebastian.

    #457760

    Hi Sebastian!

    Please add following code to functions.php file in Appearance > Editor

    function add_custom_div(){
    ?>
    <script>
    jQuery(".av-catalogue-item").click(function(){
            window.location = jQuery(this).find("a:first").attr("href");
            return false;
        });
    </script>
    <?php
    }
    add_action('wp_footer', 'add_custom_div');

    Can you please post a screenshot and show the extra spacing?

    Cheers!
    Yigit

    #457800

    hi Yigit,

    thanks for coming back on my issue. before i work on the function.php, here is the one of the pages i do use the catalogue. First cell called BASS is linked to its respective page. As you can see, thumbnail flips to the top, the row with “Info zum Bassunterricht” moves down. I would like to have the styling of the unlinked version, apply the link and finally remove the “info…” part.

    Please see http://www.musikzentrale.net/ueber-uns/musikschulen/gladenbach/ for reference.

    Cheers, Sebastian.

    #457995

    Hi!

    Did you modify the catalogue template? The av-catalogue-item link is duplicated. Try to add this in the Quick CSS field:

    .av-catalogue-item-inner .av-catalogue-item {
      width: 100%;
    }
    
    #top .av-catalogue-item {
      float: left;
    }

    Regards,
    Ismael

    #458193

    Hi Ismael,

    this was the perfect idea: when i insert a second link into a already linked catalogue cell, it breaks the styling. Without the sentence “Infos zum Unterricht”, everything is fine. Maybe someday there will be the chance to link the whole cell AND have additional links in the catalogues` text.

    Cheers, Sebastian

    #458843

    Hey!

    feel free to make a feature request for this here: kriesi.at/support/enfold-feature-requests/

    Regards,
    Andy

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