Description:
- You have 2 Portfolio Page: Work, Work 02
- This post will guide you copy all items from Work 02 page into Work page
- This will require a custom plugin
#1. First, you need to install Section Loader Supreme Plugin.
Plugin will give you some code to Code Injection Header/Footer, like this.
Header
Footer
#2. Hover on Work 02 > Click Gear icon
See URL Slug. In my example, we will have: /work-02
We will use URL Slug in next steps.
#3. Hover on Work Page > Click Gear icon > Advanced > Paste this code
<div data-wm-plugin="load" data-target="/work-02"></div>
#4. Paste this code to Footer Injection, under #1 code.
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.0/jquery.min.js"></script> <script> document.addEventListener('wmSectionLoader:loaded', ({detail}) => { if (detail.target !== '/work-02') return; $('div.wm-load-container').insertAfter('#page>article>section div#gridThumbs'); }) </script>
#5. Use this code to Custom CSS box
body[class*="view-item"] [data-target="/work-02"] { display: none; }
#6. Result