hgtonight
MVPhgtonight MVP
This is an activity!
Reactions
-
Re: How to include discussion pages into sitemap?
Wordpress is completely different. Vanilla forums are explicitly a tree structure with a root. (View Post)1 -
Re: Doesn't work for NewDiscussion Module
This is the best idea I could come up with. Get a list of php files with module in the name, include them, then iterate over the declared classes. $dir = new RecursiveDirectoryIterator(PATH_ROOT);$i … (View Post)2 -
Re: Doesn't work for NewDiscussion Module
Iterate over get_declared_classes() and see if it implements Gdn_IModule. Do this once on setup and have a button to refresh the list. This should get you every possible module that is in the Autoloa… (View Post)2 -
Re: How to prevent duplication when overriding an event handler?
I could/should split this out into a module with a view, then you could override the view easily. Perhaps an enhancement for 1.2. That said, why would you need another div? That smells like a bad ide… (View Post)1 -
Re: Google Search Console collects not needed Content Keywords
public function base_render_before($sender) { if(!Gdn::Session()->isValid()) { $Definition['Edited %s by %s.'] = ''; $Definition['Edited %s.'] = ''; $Definition['edited %s'] = ''; }} Untested and … (View Post)2