Lightning component not visible to community members
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty{ margin-bottom:0;
}
up vote
1
down vote
favorite
So I have a lightning component
<aura:component implements="forceCommunity:availableForAllPageTypes" access="global" controller="GSTAR_LGHT_CTRL">
<aura:attribute name="accs" type="Account"/>
<aura:handler name="init" action="{!c.doInit}" value="{!this}"/>
<lightning:layout>
<lightning:layoutItem padding="around-small" size="6">
<lightning:card title="My Brand new Lightning Component">
....
And it shows up in my Community Builder. And I am able to publish my community builder and set it as the landing page for my community.
But when I log in as a community user my Lightning Component is just not there. All the other components from the Builder show up.
So what am I missing?
lightning-components community community-builder
|
show 3 more comments
up vote
1
down vote
favorite
So I have a lightning component
<aura:component implements="forceCommunity:availableForAllPageTypes" access="global" controller="GSTAR_LGHT_CTRL">
<aura:attribute name="accs" type="Account"/>
<aura:handler name="init" action="{!c.doInit}" value="{!this}"/>
<lightning:layout>
<lightning:layoutItem padding="around-small" size="6">
<lightning:card title="My Brand new Lightning Component">
....
And it shows up in my Community Builder. And I am able to publish my community builder and set it as the landing page for my community.
But when I log in as a community user my Lightning Component is just not there. All the other components from the Builder show up.
So what am I missing?
lightning-components community community-builder
Did you receive community published successfully email before loging in and trying?
– Pranay Jaiswal
Nov 29 at 12:41
@PranayJaiswal, yes.
– AvailableName
Nov 29 at 12:42
Also can you check if you have provided Access to Class "GSTAR_LGHT_CTRL" to community user profile?
– Pranay Jaiswal
Nov 29 at 12:43
@PranayJaiswal Yup. That profile has access.
– AvailableName
Nov 29 at 12:47
It should work, Its very strange. Can you remove init handler in your code, save and then try refreshing the community?
– Pranay Jaiswal
Nov 29 at 12:51
|
show 3 more comments
up vote
1
down vote
favorite
up vote
1
down vote
favorite
So I have a lightning component
<aura:component implements="forceCommunity:availableForAllPageTypes" access="global" controller="GSTAR_LGHT_CTRL">
<aura:attribute name="accs" type="Account"/>
<aura:handler name="init" action="{!c.doInit}" value="{!this}"/>
<lightning:layout>
<lightning:layoutItem padding="around-small" size="6">
<lightning:card title="My Brand new Lightning Component">
....
And it shows up in my Community Builder. And I am able to publish my community builder and set it as the landing page for my community.
But when I log in as a community user my Lightning Component is just not there. All the other components from the Builder show up.
So what am I missing?
lightning-components community community-builder
So I have a lightning component
<aura:component implements="forceCommunity:availableForAllPageTypes" access="global" controller="GSTAR_LGHT_CTRL">
<aura:attribute name="accs" type="Account"/>
<aura:handler name="init" action="{!c.doInit}" value="{!this}"/>
<lightning:layout>
<lightning:layoutItem padding="around-small" size="6">
<lightning:card title="My Brand new Lightning Component">
....
And it shows up in my Community Builder. And I am able to publish my community builder and set it as the landing page for my community.
But when I log in as a community user my Lightning Component is just not there. All the other components from the Builder show up.
So what am I missing?
lightning-components community community-builder
lightning-components community community-builder
asked Nov 29 at 12:33
AvailableName
353111
353111
Did you receive community published successfully email before loging in and trying?
– Pranay Jaiswal
Nov 29 at 12:41
@PranayJaiswal, yes.
– AvailableName
Nov 29 at 12:42
Also can you check if you have provided Access to Class "GSTAR_LGHT_CTRL" to community user profile?
– Pranay Jaiswal
Nov 29 at 12:43
@PranayJaiswal Yup. That profile has access.
– AvailableName
Nov 29 at 12:47
It should work, Its very strange. Can you remove init handler in your code, save and then try refreshing the community?
– Pranay Jaiswal
Nov 29 at 12:51
|
show 3 more comments
Did you receive community published successfully email before loging in and trying?
– Pranay Jaiswal
Nov 29 at 12:41
@PranayJaiswal, yes.
– AvailableName
Nov 29 at 12:42
Also can you check if you have provided Access to Class "GSTAR_LGHT_CTRL" to community user profile?
– Pranay Jaiswal
Nov 29 at 12:43
@PranayJaiswal Yup. That profile has access.
– AvailableName
Nov 29 at 12:47
It should work, Its very strange. Can you remove init handler in your code, save and then try refreshing the community?
– Pranay Jaiswal
Nov 29 at 12:51
Did you receive community published successfully email before loging in and trying?
– Pranay Jaiswal
Nov 29 at 12:41
Did you receive community published successfully email before loging in and trying?
– Pranay Jaiswal
Nov 29 at 12:41
@PranayJaiswal, yes.
– AvailableName
Nov 29 at 12:42
@PranayJaiswal, yes.
– AvailableName
Nov 29 at 12:42
Also can you check if you have provided Access to Class "GSTAR_LGHT_CTRL" to community user profile?
– Pranay Jaiswal
Nov 29 at 12:43
Also can you check if you have provided Access to Class "GSTAR_LGHT_CTRL" to community user profile?
– Pranay Jaiswal
Nov 29 at 12:43
@PranayJaiswal Yup. That profile has access.
– AvailableName
Nov 29 at 12:47
@PranayJaiswal Yup. That profile has access.
– AvailableName
Nov 29 at 12:47
It should work, Its very strange. Can you remove init handler in your code, save and then try refreshing the community?
– Pranay Jaiswal
Nov 29 at 12:51
It should work, Its very strange. Can you remove init handler in your code, save and then try refreshing the community?
– Pranay Jaiswal
Nov 29 at 12:51
|
show 3 more comments
1 Answer
1
active
oldest
votes
up vote
4
down vote
accepted
Check the objects referred in component by the Community site User have access to that Object in Profile Settings. If not, the component won't be displayed.
1
The profile in use for this community did not have read access to the Account object. Setting that fixed it.
– AvailableName
Nov 29 at 13:51
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
4
down vote
accepted
Check the objects referred in component by the Community site User have access to that Object in Profile Settings. If not, the component won't be displayed.
1
The profile in use for this community did not have read access to the Account object. Setting that fixed it.
– AvailableName
Nov 29 at 13:51
add a comment |
up vote
4
down vote
accepted
Check the objects referred in component by the Community site User have access to that Object in Profile Settings. If not, the component won't be displayed.
1
The profile in use for this community did not have read access to the Account object. Setting that fixed it.
– AvailableName
Nov 29 at 13:51
add a comment |
up vote
4
down vote
accepted
up vote
4
down vote
accepted
Check the objects referred in component by the Community site User have access to that Object in Profile Settings. If not, the component won't be displayed.
Check the objects referred in component by the Community site User have access to that Object in Profile Settings. If not, the component won't be displayed.
answered Nov 29 at 13:13
Pranay Jaiswal
12.2k32251
12.2k32251
1
The profile in use for this community did not have read access to the Account object. Setting that fixed it.
– AvailableName
Nov 29 at 13:51
add a comment |
1
The profile in use for this community did not have read access to the Account object. Setting that fixed it.
– AvailableName
Nov 29 at 13:51
1
1
The profile in use for this community did not have read access to the Account object. Setting that fixed it.
– AvailableName
Nov 29 at 13:51
The profile in use for this community did not have read access to the Account object. Setting that fixed it.
– AvailableName
Nov 29 at 13:51
add a comment |
Thanks for contributing an answer to Salesforce Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsalesforce.stackexchange.com%2fquestions%2f240940%2flightning-component-not-visible-to-community-members%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Did you receive community published successfully email before loging in and trying?
– Pranay Jaiswal
Nov 29 at 12:41
@PranayJaiswal, yes.
– AvailableName
Nov 29 at 12:42
Also can you check if you have provided Access to Class "GSTAR_LGHT_CTRL" to community user profile?
– Pranay Jaiswal
Nov 29 at 12:43
@PranayJaiswal Yup. That profile has access.
– AvailableName
Nov 29 at 12:47
It should work, Its very strange. Can you remove init handler in your code, save and then try refreshing the community?
– Pranay Jaiswal
Nov 29 at 12:51