• Resolved Thomas “tomek” Holst

    (@tholstkabelbwde)


    i am so sorry bit it seems that i am to “dump” to get to the right target attribute. i would like to have just my complete accordion printed. this is what my html is reading, although i am using the gutenberg block editor, but i thought it may help you to help me:

    <div class="wp-block-kadence-accordion alignnone"><div class="kt-accordion-wrap kt-accordion-wrap kt-accordion-id_d1e993-b4 kt-accordion-has-7-panes kt-active-pane-0 kt-accordion-block kt-pane-header-alignment-left kt-accodion-icon-style-basic kt-accodion-icon-side-right" style="max-width:none"><div class="kt-accordion-inner-wrap" data-allow-multiple-open="false" data-start-open="none"><!-- wp:kadence/pane {"id":7,"uniqueID":"_d418be-24"} -->
    <div class="wp-block-kadence-pane kt-accordion-pane kt-accordion-pane-7 kt-pane_d418be-24"><div class="kt-accordion-header-wrap"><button class="kt-blocks-accordion-header kt-acccordion-button-label-show"><span class="kt-blocks-accordion-title-wrap"><span class="kt-blocks-accordion-title">Wordpress</span></span><span class="kt-blocks-accordion-icon-trigger"></span></button></div><div class="kt-accordion-panel"><div class="kt-accordion-panel-inner"><!-- wp:paragraph -->

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Plugin Contributor twinpictures

    (@twinpictures)

    Hello Tomek,
    I think you mean this page: https://hopto.de/terms/
    is that correct?

    If I understand your request correctly, you want to print out the content of the accordion elements, even if they are collapsed, correct?

    This can be done by adjusting the @media print css in your child-theme or quick css section using something like:

    @meia print {
       .kt-accordion-panel-hidden {
           overflow: auto;
           display: block;
           max-height: none;
       }
    }

    you can also add this in the plugin settings under print css, but then you don’t need the @media print wrapper:

    .kt-accordion-panel-hidden {
        overflow: auto;
        display: block;
        max-height: none;
    }

    If you can provide a page that has the shortcode and some accordion elements, we can be of further assistance.

Viewing 1 replies (of 1 total)
  • The topic ‘cant get my accordion printed’ is closed to new replies.