• Resolved goliathks

    (@goliathks)


    Hello, through which way can I add a text on the page of the overviews of the wish lists?

    Thanks and many greetings
    Tim

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Support rzepsen

    (@rzepsen)

    Hello @goliathks

    There is no such option because we did not assume that it would be needed. But the plugin is new and we are open to all suggestions. We will add new features if plugin users need them.

    I informed our Developer about this idea. If we add this option then I will write about it in this thread.

    If you have any questions, I will gladly help you!

    Kind regards

    Thread Starter goliathks

    (@goliathks)

    Hello, thank you for the answer.

    I actually wanted to know which file of the plugin would have to be edited for the overview of the wish lists, the insertion of the text I would then do independently via the code of this file.

    Many greetings
    Tim

    Plugin Support rzepsen

    (@rzepsen)

    Hi @goliathks

    We have started work on modifying the plugin. Is a matter of a few days and there should be a version ready with the new functionality added. I’ll let you know when the new version be available for download and tests.

    Kind regards

    Plugin Support przemyslawrosa

    (@przemyslawrosa)

    Hey Tim,

    you can download a zip file of the modification we are testing. Please check if the modification method suits you.

    What method we proposed, and how will the plugin work?
    We have added hooks, by with you can put your own HTML in the wishlist page template (before page, before table, after table and after page). Custom HTML you can add:

    1. To wishlist archive pages:

    
    add_action( 'flexible_wishlist/template_archive/before_page', function () {
        echo '<p>template_archive - before_page</p>';
    } );
    add_action( 'flexible_wishlist/template_archive/before_table', function () {
        echo '<p>template_archive - before_table</p>';
    } );
    add_action( 'flexible_wishlist/template_archive/after_table', function () {
        echo '<p>template_archive - after_table</p>';
    } );
    add_action( 'flexible_wishlist/template_archive/after_page', function () {
        echo '<p>template_archive - after_page</p>';
    } );
    

    2. To pages with single wishlist:

    
    
    add_action( 'flexible_wishlist/template_single/before_page', function () {
        echo '<p>template_single - before_page</p>';
    } );
    add_action( 'flexible_wishlist/template_single/before_table', function () {
        echo '<p>template_single - before_table</p>';
    } );
    add_action( 'flexible_wishlist/template_single/after_table', function () {
        echo '<p>template_single - after_table</p>';
    } );
    add_action( 'flexible_wishlist/template_single/after_page', function () {
        echo '<p>template_single - after_page</p>';
    } );

    Plugin Support Tomasz WP Desk

    (@tomaszwp)

    I am marking this topic as resolved as we have not received any new replies.
    Please let us know if you need our help again.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘How can I add a text on the My Wish Lists page?’ is closed to new replies.