And once again, this seems to be a theme here, I have made it way more complicated than it need to be. The jumble is a result of trying to migrate a site from XML only.. While I'm sure that is fine for some updates, okay, I don't know what it would be fine for because obviously some relationships are missing. I'll leave this here for now but the real way to migrate a WordPress is the same as any other LAMP project. You need access to the backend and take a full SQL dump. The right way was painless. The wrong way, taught me a good deal about WordPress, and dare I add, GUI tools in general. When in doubt avoid trying to fix problems from the Front End!!
🎯 Goal
Duplicate the Taxonomy Categories widget into another widget area or sidebar.
✅ Step-by-Step: Duplicate “Taxonomy Categories”
-
Go to:
Appearance → Widgets -
Locate the original region containing the Taxonomy Categories widget
(likely in Global Sidebar or one of the Home widget zones) -
Open the “Taxonomy Categories” widget
-
Note its settings:
-
Title (e.g.,
Browse Sections,Topics) -
Taxonomy selected (e.g.,
category,custom_cat, etc.) - Display options (dropdown, hierarchy, post counts)
-
Title (e.g.,
-
Note its settings:
-
Scroll to the target region where you want to duplicate it
(e.g.,Home 3 – Second Column,Footer 1, etc.) - Click Add a Widget (or equivalent block option)
-
Look for:
- “Taxonomy Categories” in the list
- (May be under “Browse all” or inside plugin section)
- Add the widget
- Configure exactly as the original, or tweak if needed
- Save
📝 Notes
- Some themes rename or wrap this widget (e.g., MH Magazine might expose it as “MH Custom Categories”)
- This is not the same as the default Categories or Tag Cloud widget — it's taxonomy-aware
- You can use multiple instances of it across different regions
Let me know if:
- The widget isn’t appearing in the new region
-
Or you need help identifying the exact taxonomy it uses (e.g.,
category,topic,section)
No assumptions — just clean duplication from your confirmed setup.
Â
Â
Â
Â
Â
🎯 Task: Split Recent Posts into Two Displays on the Main Page
You want:
- One featured post (the most recent)
- Followed by four more posts as a list
- Using the theme’s MH Recent Posts section (which respects post count = 5)
📌 Theme Context
You’re using an MH Magazine-based theme (or child theme), which includes:
- A widget called MH Custom Posts or MH Recent Posts
- Predefined widget areas for homepage layout (e.g., Home 1–4)
- These areas stack widgets in rows or columns depending on layout
âś… Step-by-Step to Build the Two Displays
🔧 Widget 1 — Display Top 1 Post
-
Go to
Appearance → Widgets -
Scroll to a Home region (e.g.,
Home 1 – Large Column (Top)) -
Add widget:
MH Recent Posts -
Configure:
-
Number of posts:
1 - Layout: choose the one with image/title (for featured look)
-
Title (optional): e.g.,
Top Story
-
Number of posts:
🔧 Widget 2 — Display Next 4 Posts
-
Add another MH Recent Posts widget in the next Home region (e.g.,
Home 2 – First Column) -
Configure:
-
Number of posts:
4 -
Offset:
1
(this skips the first post so you don't duplicate it) - Layout: list view or compact layout
-
Title (optional):
More Headlines,In the News, etc.
-
Number of posts:
📝 Notes
- Offset is key to avoiding repetition
- You can test layouts live: the MH widget supports multiple display styles
- You can collapse both widgets into one region if needed (theme permitting)
Ready when you are to test the live display. No assumptions beyond what you gave. Let me know how it renders.
Â
Â
🧾 Summary: How You Got Here (WordPress Widgets – Search Sidebar Task)
1. Initial Context
- Working in a WordPress site migrated from an older install
-
Entered via:
Appearance → Widgets - Theme uses a region called: Global Sidebar
-
This sidebar displayed:
- Recent Posts
- Archives (as a long list of dated links)
- Categories
2. Observed Problem
-
The Archives display on the new site is not correct:
- Shows a long date list
-
On the live site, this was a search box labeled
Search Octopus Archives
- Goal: Hide the date list and replace it with a search box
3. Exploration
-
Found that Global Sidebar contains:
- A Search widget
- A Group block (or nested group) that includes Archives
- Confirmed that content is controlled from within the Global Sidebar region
4. Investigated Other Regions
-
Discovered additional regions:
-
Home 1 – Large Column (Top) -
Home 2 – First Column✅ (focus) -
Home 3 – Second Column -
Home 4 – Large Column (Bottom)
-
- Initially, Home 2 was locked
-
Later, you were able to add widgets like:
- List
- Paragraph
- Confirmed: Home 2 – First Column is now usable
5. Tried to Add Search
- In Home 2 – First Column, opened the widget/browser panel
-
Observed available options included:
-
List,Local Business,Paragraph,Image,Heading,Gallery - Archives
- A “Browse all” option
-
- Search widget was missing, even under Browse all
- Confirmed that the system limits what widgets are available in this region
6. Current Status
-
Search widget is unavailable in
Home 2 – First Column - You have not approved any workarounds (e.g., Custom HTML)
- You're still evaluating next steps, based on what’s possible in this layout
Â
Â
Â
Â
Â
âś… Early run
đź§ Current Location
You are in:
Appearance → Widgets
Working within the Global Sidebar region of a WordPress site migrated from an older install
Contents of Global Sidebar:
-
Search(top level) -
Groupblock, which includes:-
Recent Posts -
Archives→ renders a long, ugly list of dated archive links -
Categories
-
🛠️ The Problem
-
On the live (original) site, “Archives” appears as a clean search box, labeled:
Search Octopus Archives -
On the current migrated site, “Archives” is rendering as:
A long vertical list of monthly/yearly archive links - This is not what was intended, and not how the site used to work
🎯 The Task at Hand
Replace the visible Archives list with a search box, as it was before.
Required Behavior:
-
Label:
Search Octopus Archives - Function: Searches older posts (archives)
- Appearance: Should resemble the original box — not a list of dates
- Do not expand search to “all posts” unless confirmed
âś… Step-by-Step Path Forward
Step 1: Confirm the unwanted widget
-
In
Appearance → Widgets → Global Sidebar, open the Group block - Look at its contents
- If there is a block labeled Archives (or one you suspect is rendering the date list), delete that block
- Confirm that the long list of archive dates disappears from the front-end
→ This cleans up the display.
Step 2: Replace it with the correct UI
-
Still inside the Group block (or top-level if you prefer):
- Add a Search block
-
Set the Label/Title to:
Search Octopus Archives
- This will show a search input + button instead of a date list
Step 3: Search Scope (to do later)
- Confirm what counts as “archives” for the purpose of limiting search
-
If needed, apply a filter to
pre_get_poststo restrict search results
📝 Summary
- The issue is the Archives block (or function) rendering a date list
- It needs to be removed
- Replace with a Search box labeled “Search Octopus Archives”
- Search behavior will be adjusted later, once we define “archives” precisely
Let me know when you're ready to delete the date list block, or if you'd like help identifying exactly which block it is.