Remove CiviCRM and Drupal links / banner on profile formHow to Fix Missing Organization Profile Dropdown in Contribution Form SettingsIs there an autorespond email function for profile form sign ups (wordpress)?Registration Profile Selection Reverts after Save & Closeprofile email notifications: can CiviCRM indicate what information has changed?Efficient methods for flagging profile submissions from a contact formCan't find HTML Snippet in Profiles (Joomla)CiviCRM profile search not working when integrated with WordpressRequest login on edit mode profile formUse - Create Mode - URL error messageProfile registeration interaction between wordpress and civicrm
Which European Languages are not Indo-European?
Is the field of q-series 'dead'?
How to politely tell someone they did not hit "reply to all" in an email?
Am I a new writer?
Make 24 using exactly three 3s
Remove CiviCRM and Drupal links / banner on profile form
Is "cool" appropriate or offensive to use in IMs?
Website returning plaintext password
How did NASA Langley end up with the first 737?
Can a British citizen living in France vote in both France and Britain in the European Elections?
Using credit/debit card details vs swiping a card in a payment (credit card) terminal
The art of clickbait captions
128-bit unsigned integer
How to patch glass cuts in a bicycle tire?
How to reverse input order?
How to deal with a colleague who is being aggressive?
Why would Ryanair allow me to book this journey through a third party, but not through their own website?
Is Jon Snow the last of his House?
Popcorn is the only acceptable snack to consume while watching a movie
Is it rude to call a professor by their last name with no prefix in a non-academic setting?
A steel cutting sword?
My players want to grind XP but we're using milestone advancement
Is it possible to remotely hack the GPS system and disable GPS service worldwide?
Do photons bend spacetime or not?
Remove CiviCRM and Drupal links / banner on profile form
How to Fix Missing Organization Profile Dropdown in Contribution Form SettingsIs there an autorespond email function for profile form sign ups (wordpress)?Registration Profile Selection Reverts after Save & Closeprofile email notifications: can CiviCRM indicate what information has changed?Efficient methods for flagging profile submissions from a contact formCan't find HTML Snippet in Profiles (Joomla)CiviCRM profile search not working when integrated with WordpressRequest login on edit mode profile formUse - Create Mode - URL error messageProfile registeration interaction between wordpress and civicrm
we have setup an online profile form that new members to our charity can complete. The information then pulls directly into CiviCRM.
When accessing the profile / form online there are drupal and CiviCRM headers / footers and links on there that we would prefer to remove:


Is anybody aware of a way to do this?
Many thanks
profile header-footer
add a comment |
we have setup an online profile form that new members to our charity can complete. The information then pulls directly into CiviCRM.
When accessing the profile / form online there are drupal and CiviCRM headers / footers and links on there that we would prefer to remove:


Is anybody aware of a way to do this?
Many thanks
profile header-footer
add a comment |
we have setup an online profile form that new members to our charity can complete. The information then pulls directly into CiviCRM.
When accessing the profile / form online there are drupal and CiviCRM headers / footers and links on there that we would prefer to remove:


Is anybody aware of a way to do this?
Many thanks
profile header-footer
we have setup an online profile form that new members to our charity can complete. The information then pulls directly into CiviCRM.
When accessing the profile / form online there are drupal and CiviCRM headers / footers and links on there that we would prefer to remove:


Is anybody aware of a way to do this?
Many thanks
profile header-footer
profile header-footer
asked 8 hours ago
TCVTerryTCVTerry
254
254
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
To remove the Drupal footer (This is a block called - Powered by Drupal) –
www.yoursite.com/admin/structure/block/manage/system/powered-by/configure
Under region settings, set all to - None
To remove empowered by CiviCRM –
www.yoursite.com/civicrm/admin/setting/misc?reset=1
Set Display "empowered by CiviCRM" to No
For the header, that’s the logo, which can be changed/removed from the CiviCRM public theme –
www.yoursite.com/admin/appearance
add a comment |
Certain things can be turned off from UI but others needs to be hidden by css
- Since you want to hide this option on public facing forms than you can switch the theme from using CiviCRM Seven to use your default one by navigating to Appearance(/admin/appearance). Scroll down and change the 'CiviCRM Public theme' right at the bottom of the page to use your default theme. (If you have CiviCRM theme module enabled)
If not 1 than
- Hide Logo from header - You will need to add below css in CiviCRM seven theme styling file to hide the logo
>
body.page-civicrm #branding
background-image: none !important;
- empowered by CiviCRM - This can be disabled by navigating to CiviCRM >> Administrator >> System Settings >> Misc (Undelete, PDFs, Limits, Logging, Captcha, etc.). Change the option for 'Display "empowered by CiviCRM"' to and save the form.

- Powered By Drupal - Is a Drupal block which can be disabled by navigating to Structure >> Blocks. Scroll down and find 'Powered by Drupal' and change the corresponding drop down option to none and save.

HTH
Pradeep
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "605"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
noCode: true, onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
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%2fcivicrm.stackexchange.com%2fquestions%2f30775%2fremove-civicrm-and-drupal-links-banner-on-profile-form%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
To remove the Drupal footer (This is a block called - Powered by Drupal) –
www.yoursite.com/admin/structure/block/manage/system/powered-by/configure
Under region settings, set all to - None
To remove empowered by CiviCRM –
www.yoursite.com/civicrm/admin/setting/misc?reset=1
Set Display "empowered by CiviCRM" to No
For the header, that’s the logo, which can be changed/removed from the CiviCRM public theme –
www.yoursite.com/admin/appearance
add a comment |
To remove the Drupal footer (This is a block called - Powered by Drupal) –
www.yoursite.com/admin/structure/block/manage/system/powered-by/configure
Under region settings, set all to - None
To remove empowered by CiviCRM –
www.yoursite.com/civicrm/admin/setting/misc?reset=1
Set Display "empowered by CiviCRM" to No
For the header, that’s the logo, which can be changed/removed from the CiviCRM public theme –
www.yoursite.com/admin/appearance
add a comment |
To remove the Drupal footer (This is a block called - Powered by Drupal) –
www.yoursite.com/admin/structure/block/manage/system/powered-by/configure
Under region settings, set all to - None
To remove empowered by CiviCRM –
www.yoursite.com/civicrm/admin/setting/misc?reset=1
Set Display "empowered by CiviCRM" to No
For the header, that’s the logo, which can be changed/removed from the CiviCRM public theme –
www.yoursite.com/admin/appearance
To remove the Drupal footer (This is a block called - Powered by Drupal) –
www.yoursite.com/admin/structure/block/manage/system/powered-by/configure
Under region settings, set all to - None
To remove empowered by CiviCRM –
www.yoursite.com/civicrm/admin/setting/misc?reset=1
Set Display "empowered by CiviCRM" to No
For the header, that’s the logo, which can be changed/removed from the CiviCRM public theme –
www.yoursite.com/admin/appearance
answered 7 hours ago
Anil - MillerTechAnil - MillerTech
1,138110
1,138110
add a comment |
add a comment |
Certain things can be turned off from UI but others needs to be hidden by css
- Since you want to hide this option on public facing forms than you can switch the theme from using CiviCRM Seven to use your default one by navigating to Appearance(/admin/appearance). Scroll down and change the 'CiviCRM Public theme' right at the bottom of the page to use your default theme. (If you have CiviCRM theme module enabled)
If not 1 than
- Hide Logo from header - You will need to add below css in CiviCRM seven theme styling file to hide the logo
>
body.page-civicrm #branding
background-image: none !important;
- empowered by CiviCRM - This can be disabled by navigating to CiviCRM >> Administrator >> System Settings >> Misc (Undelete, PDFs, Limits, Logging, Captcha, etc.). Change the option for 'Display "empowered by CiviCRM"' to and save the form.

- Powered By Drupal - Is a Drupal block which can be disabled by navigating to Structure >> Blocks. Scroll down and find 'Powered by Drupal' and change the corresponding drop down option to none and save.

HTH
Pradeep
add a comment |
Certain things can be turned off from UI but others needs to be hidden by css
- Since you want to hide this option on public facing forms than you can switch the theme from using CiviCRM Seven to use your default one by navigating to Appearance(/admin/appearance). Scroll down and change the 'CiviCRM Public theme' right at the bottom of the page to use your default theme. (If you have CiviCRM theme module enabled)
If not 1 than
- Hide Logo from header - You will need to add below css in CiviCRM seven theme styling file to hide the logo
>
body.page-civicrm #branding
background-image: none !important;
- empowered by CiviCRM - This can be disabled by navigating to CiviCRM >> Administrator >> System Settings >> Misc (Undelete, PDFs, Limits, Logging, Captcha, etc.). Change the option for 'Display "empowered by CiviCRM"' to and save the form.

- Powered By Drupal - Is a Drupal block which can be disabled by navigating to Structure >> Blocks. Scroll down and find 'Powered by Drupal' and change the corresponding drop down option to none and save.

HTH
Pradeep
add a comment |
Certain things can be turned off from UI but others needs to be hidden by css
- Since you want to hide this option on public facing forms than you can switch the theme from using CiviCRM Seven to use your default one by navigating to Appearance(/admin/appearance). Scroll down and change the 'CiviCRM Public theme' right at the bottom of the page to use your default theme. (If you have CiviCRM theme module enabled)
If not 1 than
- Hide Logo from header - You will need to add below css in CiviCRM seven theme styling file to hide the logo
>
body.page-civicrm #branding
background-image: none !important;
- empowered by CiviCRM - This can be disabled by navigating to CiviCRM >> Administrator >> System Settings >> Misc (Undelete, PDFs, Limits, Logging, Captcha, etc.). Change the option for 'Display "empowered by CiviCRM"' to and save the form.

- Powered By Drupal - Is a Drupal block which can be disabled by navigating to Structure >> Blocks. Scroll down and find 'Powered by Drupal' and change the corresponding drop down option to none and save.

HTH
Pradeep
Certain things can be turned off from UI but others needs to be hidden by css
- Since you want to hide this option on public facing forms than you can switch the theme from using CiviCRM Seven to use your default one by navigating to Appearance(/admin/appearance). Scroll down and change the 'CiviCRM Public theme' right at the bottom of the page to use your default theme. (If you have CiviCRM theme module enabled)
If not 1 than
- Hide Logo from header - You will need to add below css in CiviCRM seven theme styling file to hide the logo
>
body.page-civicrm #branding
background-image: none !important;
- empowered by CiviCRM - This can be disabled by navigating to CiviCRM >> Administrator >> System Settings >> Misc (Undelete, PDFs, Limits, Logging, Captcha, etc.). Change the option for 'Display "empowered by CiviCRM"' to and save the form.

- Powered By Drupal - Is a Drupal block which can be disabled by navigating to Structure >> Blocks. Scroll down and find 'Powered by Drupal' and change the corresponding drop down option to none and save.

HTH
Pradeep
answered 7 hours ago
Pradeep NayakPradeep Nayak
12.9k1624
12.9k1624
add a comment |
add a comment |
Thanks for contributing an answer to CiviCRM 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.
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%2fcivicrm.stackexchange.com%2fquestions%2f30775%2fremove-civicrm-and-drupal-links-banner-on-profile-form%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