How to add same info to Additional Info

To add same information into Additional Info of all products, you can do these.

#1. Create a Page in Not Linked.

Use Name/URL: Saved Section – /saved

#2. Next, design the page. Here I use a simple design.

#3. Use this code to Code Injection > Header

<div data-wm-plugin="load" data-target="/saved"></div>

#4. Use this code to Code Injection > Footer

<script>
  document.addEventListener('wmSectionLoader:scriptsLoaded', () => {
    const loadContainer = document.querySelector('div.wm-load-container');
    const targetSection = document.querySelector('section.ProductItem-summary');
    if (loadContainer && targetSection) {
        targetSection.after(loadContainer);
    }
});
</script>

#5. Install this plugin

Plugin will give you some code to Code Injection > Header

and Footer

1 Like