How to remove the duplicate header of a contact form in Joomla? - joomla3.0

I have a menu that points to a native joomla contact form.
My problem is that I can't remove the double "Contact" and "Contact Form" headings from my page.
I don't know if it is related but my website has multi-language support.
See below :
I only want that my menu points directly to the form without heading.
Can you help me with this ?
EDIT :
Thanks to the answer of Simonyan Hayk, I managed to remove the second Contact Form. However there was still the first one Contact. Finally I found another similar way.

Try to disable page heading by editing menu item. Go to "Page display" tab and turn off "Show Page Heading" or you can customize your contact-page by editing "contact display options".

Try this Remove Header . Remove that second header from language overrides.

I found the solution here and I summarised it below :
Login into Joomla Admin
Click on Extension >> Language Manager
Click on Overrides
Click on New
Enter following in Language Constant : COM_CONTACT_DETAILS
Click on Save and close
Repeat steps 1 to 6 for each language of the website (with the dropdown menu filter on the left)

Related

Drupal 7 – not able to change path in "edit menu link"

I am building a navigation menu in drupal 7 and in a few of the menu links it is not possible to edit the "path" in the page "Edit menu links" (under Structure -> Menu -> Navigation). Instead there is a fixed path to for ex. "Add new basic page".
These links also have the option "reset" in stead of "delete"... under Structure -> Menus.
I realize that I must have brought this problem on myself, but I am stuck and cannot figure out how to change the path for these menu links.
So I would like to change the "path". Can someone point me in the right direction?
Just turn off the menu item and create a new one which will fit your need.
This particular menu item was probably created using views. Go into the view and modify the menu item for the related view under Page settings

Salesforce Custom field in Edit Page ONLY

I wanted to display a custom field as Read-Only on the Edit page ONLY of a custom object. This field should be hidden on the detail page. I tried wrapping the field in a section and display the section in Edit Page only(Page layout editor). That didn't work. I don't want to create a custom visual force page for the EDIT Page. Please suggest.
Thanks
Kumar
Unfortunately, there's no way to put a field on just edit or just detail. It's both or neither.
You have two options, custom Visualforce page as an Edit override is the easiest one, but if you want to leave the page layout editor as something useful to admins, there's also a very hacky option...
Create two record types, one that displays the field and one that doesn't. Create a new button that launches a Flow (with a return URL of the edit page for that object). The Flow should change the object's recordtype to the one that displays the field. Additionally, create a Process or trigger that changes the recordtype back to the one that does not display the trigger after you save the object.
I definitely recommend the VF page...

Add a label custom field in Salesforce Page

I'm trying to put a checkbox in a salesforce page but the problem is that the required message is more than 40 characters so it doesn't fit in the checkbox label (40 character max)
I tried adding two custom fields on top of the checkbox but the problem that these fields even though if they are read only the user can edit there content(text(255)) or not be able to see them(formula(text)) in edit mode.
Is there any way I can do that without creating a custom page and appending it in the page?
It isn't an ideal solution but you could create a new section on your page layout which will allow more text than a label to be displayed. Then only put your confirmation check box field in that section.
That will affectively give you the long label description you are looking for.
You can create a very simple Visualforce page:
<apex:page standardController="Account" showHeader="false" sidebar="false">
I confirm that the new account is open
</apex:page>
Set the controller to your object; I use "Account" here.
You then insert the Visualforce page directly into the page layout, just like you would a field.
It sounds like you need visualforce or S-Controls (now deprecated)
An alternate is to make a text box and prepopulate it with the info, but I think that too would need those technologies
If you come up with a solution to this- let me know.

How do I add a new content type entry link at drupal top page?

I am creating a Drupal-7.12 test site.
After adding a new content type "famous airplane", how do I add a "famous airplane entry" link similar to "Blog entry" link under "Add content" menu at our user loginned top page?
Own Answer:
Home » Administration » People >> Permissions TAB
Node
famous airplane: Create new content
famous airplane: Edit own content
famous airplane: Edit any content
famous airplane: Delete own content
famous airplane: Delete any content
Check above for authenticated user.
If you want the normal user to add content, then you need to set the permission. Under People > Permission you will find node. And there you have to add the permission so that users can add content. But yes, giving permission to users who add content directly has a lot of security implications.
So act accordingly. Hope this solves your problem.
If you have successfully created the content type then the link will come automatically under node/add link. But I am not sure if you mean the top black toolbar or somewhere else.
If you need to add the link at the top of the toolbar then go to the create content and then to your famous airplane add content form, there at the top you will see a black plus icon which will help you add the link at the top in the black toolbar also know as shortcut bar.
Hope this answers your question.

Can i call a vf page as popup from a custom link button from a standard sf page

I want to show a popup of list of cases without parentid and allow to select usign checkbox and the selected cases are added up in a related list. This popup would be availabe on clicking of link button
First question would be can i call a vf page as popup from a standard page? The rest i guess i can hande it in the VF page
Thanks
Prady
Yes, you create a link button for the object in whose page layout the link will reside. As a source for the link button choose "Visual force page" and choose a page. Keep in mind that the vf page MUST use standardController for the same object (with or without extensions) or it will not show up in the list. Choose to show the page in a new window and later place the link button on the page layout.

Resources