- Posts: 37
COMMUNITY FORUM
How to use a different frontend editor?
- Chris
- Offline
- Junior Member
Less
More
7 years 6 months ago #161735
by Chris
Replied by Chris on topic How to use a different frontend editor?
imgur.com/a/gHgqo
The new screengrab
The new screengrab
Please Log in or Create an account to join the conversation.
- Krikor Boghossian
- Offline
- Platinum Member
Less
More
- Posts: 15920
7 years 6 months ago #161747
by Krikor Boghossian
JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Replied by Krikor Boghossian on topic How to use a different frontend editor?
Sorry I meant like this.
jmp.sh/8o2Red7
jmp.sh/8o2Red7
JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Please Log in or Create an account to join the conversation.
- Chris
- Offline
- Junior Member
Less
More
- Posts: 37
7 years 6 months ago #161751
by Chris
Replied by Chris on topic How to use a different frontend editor?
Hi Krikor,
I've managed to hide the field alias (yesterday, I didn't recompile css for specific template part).
Now, as you can see it remains the label. What css rule I have to add?
imgur.com/a/UrETJ
Thanks
I've managed to hide the field alias (yesterday, I didn't recompile css for specific template part).
Now, as you can see it remains the label. What css rule I have to add?
imgur.com/a/UrETJ
Thanks
Please Log in or Create an account to join the conversation.
- Krikor Boghossian
- Offline
- Platinum Member
Less
More
- Posts: 15920
7 years 6 months ago #161767
by Krikor Boghossian
JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Replied by Krikor Boghossian on topic How to use a different frontend editor?
I would recommend a different approach.
Create a new class like this:
Then apply that class to each you want to hide.
Create a new class like this:
.visually-hidden {
position: absolute;
clip: rect(0,0,0,0);
}
Then apply that class to each you want to hide.
JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Please Log in or Create an account to join the conversation.
- ale
- Offline
- New Member
Less
More
- Posts: 10
6 years 11 months ago #165769
by ale
Replied by ale on topic How to use a different frontend editor?
I use this way:Transform the input type in "hidden" and leave the "name" attribute unchanged.
Regards
<input class="text_area k2TitleAliasBox" type="hidden" name="alias" id="alias" maxlength="250" value="<?php echo $this->row->alias; ?>" />
Regards
Please Log in or Create an account to join the conversation.
- Krikor Boghossian
- Offline
- Platinum Member
Less
More
- Posts: 15920
6 years 11 months ago #165775
by Krikor Boghossian
JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Replied by Krikor Boghossian on topic How to use a different frontend editor?
This is also perfectly fine.
JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Please Log in or Create an account to join the conversation.