• Resolved ibl92

    (@isabella92)


    Hello!

    I want to add some files (like logos, manuals etc.) to the downloads tab in my account. I can’t seem to find where to do this?

    Please help!

    Best regards,
    Izzy

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

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Support Shameem R. a11n

    (@shameemreza)

    Hi @isabella92

    The Downloads tab on “my account” page is for managing customer downloads, not for uploading files.

    However, if you want to share manuals, logos etc, you can share them as a digital product, or create a page and simply upload and insert those assets on that page.

    I hope this helps! Please let us know how it goes or if you need further assistance.

    Thread Starter ibl92

    (@isabella92)

    Oh I see! I did not realize that. Is there no other way to put manuals etc. in my account other than making them into products? Like just uploading the pdfs etc. in the media library, then linking to them in /downloads? Or is there no easy way to customize what that “page” looks like?

    Thanks ??

    Saif

    (@babylon1999)

    Hello @isabella92,

    Like just uploading the pdfs etc. in the media library, then linking to them in /downloads? Or is there no easy way to customize what that “page” looks like?

    Just to confirm we’re on the same page: you’re looking to add specific content visible to all customers in the downloads tab within the ‘My Account’ page, correct?


    Link to image: https://d.pr/i/DHIuDX

    You can find several WooCommerce action hooks for this section of the my-account page illustrated in the following guide: WooCommerce Visual Hook Guide for Account Pages

    Let’s take the first hook as an example to add some dummy text that redirects to a manual PDF.

    add_action( 'woocommerce_before_available_downloads', 'display_pdf_link' );
    
    function display_pdf_link() {
        // Replace 'your-pdf-file.pdf' with the actual file name and path
        $pdf_url = 'https://www.w3.org/WAI/ER/tests/xhtml/testfiles/resources/pdf/dummy.pdf';
        
        echo '<p>You can find our guide by clicking <a href="' . esc_url( $pdf_url ) . '" target="_blank">this link</a>.</p>';
    }
    


    Link to image: https://d.pr/i/v0ANSC

    To learn more about WooCommerce actions and filters, please check https://woo.com/document/introduction-to-hooks-actions-and-filters/

    If you require the assistance of a developer, consider hiring a WooExpert as we’re not able to provide support for custom solutions per our support policy.

    Let us know if you have any other questions.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Add manuals etc. to downloads in my account’ is closed to new replies.