I’ve got a site that’s running EE v6.4.7. I added a custom member field for bio, so that members can specify the bio that displays on their blog posts.
In order to display bios on blog posts, I’m using the “exp:member:custom_profile_data” tag. But that results in this error on the front-end:
The following tag cannot be processed:
{exp:member:custom_profile_data}
Please check that the ‘member’ module is installed and that ‘custom_profile_data’ is an available method of the moduleHowever, there is no “Member” module on the “Add-Ons” page to install. I feel like I’m missing something obvious. Thanks.
Sooooo the member module is native and installed by default and not ‘uninstallable’ if you will.
Is this an older site that’s been through a few upgrades? It’s possible that at some point, upgrading managed to skip making sure the member module was installed.
I think we want to get that done.
You could do it via php
<?php
ee()->addons->install_modules(array('Member'));
?>I’d make certain to do a backup first, just in case. You could also switch the version number and rerun the upgrades, but that goes back pretty far. On the plus side, it’s possible something else was missed. It looks like 3.0.5 is when it was ‘force’ installed:
$required_modules = array('channel', 'comment', 'member', 'stats', 'rte', 'file', 'filepicker', 'search');Packet Tide owns and develops ExpressionEngine. © Packet Tide, All Rights Reserved.