Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+2 votes
357 views
in Themes by
edited by

We (https://gateoverflow.in/) are facing following issues in the polaris theme:

  1. Additional information in the question title is not showing. The screenshots are below:
    • in snowflat theme those are showing.
  2. Users profile page are hidden through a custom plugin layer. However, those are still visible. Screenshots will be shared.
Q2A version: 1.8.8
by
edited by
1. Which plugin is this?
I'd need to check which method or function it hooks, to append that additional information.

Also, please check your plugin’s "metadata.json" file.
Look for the "load_order" option,  it defines when the plugin is loaded in Q2A.
I can't remember for sure, but options like "before_db_init" or "after_db_init" might also affect the layer override priority (for example, whether the theme or the plugin loads first).

2. About the hidden profile privacy:
The Polaris theme has its own custom User Profile sections, so you’ll need to wrap those sections with your plugin’s option.
Here’s an example:

if (qa_opt('hide_user_profile')) {
    // Custom User Profile section from the theme goes here
}

1 Answer

+2 votes
by
selected by
 
Best answer

Status Solved ✅


The fix will be included in the next theme update, coming in the next couple of weeks.
Meanwhile, you can already apply that same fix provided via private message.

Thanks

...