How to change email header Odoo 10 - configuration

I'm trying to change the pink header at the top ( color and text )
in Configuration i've found only how to change content
any idea !!

Follow this step :
login Odoo
Activate debug mode
Go to Setting menu
Open Email menu
Select Templates
Search sale order template
Edit template

Related

Accessing odoo html/css/js editor

Using Odoo 15.0
I went to customize -> html/css/js editor and added a link to the header in html
This link broke the js on the website including the action buttons (edit, new ..) and html/css/js editor as well
now I want to access the editor so I can remove the link from html
Is there any way to access it other than the dropdown button?
This question is resolved by
Going to settings
General settings -> Developer Tools (section) -> activate the developer mode
Inside settings a new link will be added to the toolbar called 'Technical'
In Technical dropdown choose views
From views filter by QWeb (here where all website views are: pages, header, navbar, footer ..etc)
Remove the buggy code from the view you edited or edit the code you need in there

i want to remove the search bar from the right column in magento

i want to remove the search bar and the advanced search link in the right side bar.i tried using the local.xml to remove the advanced search link and the search box but nothing happens. Iam working on a local server (wamp).there is no mention of the search box in the menu.phtml also and the bolg extension used is aw blog extension
site currently looks like this
Try to turn on template path hints in admin (Configuration->System->Developer in Debug tab) so you can locate phtml witch is displaying block that you need to remove. With that name you can find it in xml and remove it by name.

Wordpress customize specific site

I made a little game using html and new I´m looking to publish it on my wordpress site. There is only on problem though, I don´t know how to add a page in html code. If I add a new Site I can only edit the text and attach pictures, but is there a way to add a complete page under a domain like www.example.com/page ?
Upload the HTML file to your website's root directory using FTP. If you name it game.html, you should be able to open the file by navigating directly to it www.example.com/game.html.
You go to My Page. Then there is a submenu Publish. Click on the button Add next to Pages. When you did that, there is that small menu in the middle where you can choose several options such as header, bold, italics, etc.. In the top right corner of that menu, there are two options: Visual | HTML. Just click on HTML and you can add HTML code.

How to edit WordPress page's html code

I can't get editable html code behind the page. I want to make some changes to the page. Web site is hosted in the remote server. Someone assigned this task. There is empty editor when open edit page as below image.
Also I added plugin and actived it but can't get the result.
The picture you posted is of the WYSIWYG editor, which is only for adding content to the page.
If you want to edit the layout of the page itself you have 2 options -
Minor page edits to appear across all pages on the site - Go to Appearance -> editor -> page.php and then edit the code to suite your needs.
Large page edits to appear on one or two pages -
Get access to the files
Duplicate page.php with a different name
Edit code
When you go to add a new page you should have an option to pick a page template. Choose the page template you just created.
If you know exactly what you are doing, you can use Chrome "Inspect" feature, and change the HTML of the content inside the WordPress WYSIWYG Editor. After injecting your HTML, click Preview or Publish and your changes will be saved correctly.
In WordPress 5.5.3, you should be able to click the three dots on the top right, then select Code editor. Alternatively, press Ctrl+Shift+Alt+M.

how can i make my custom html webpage the index page of my wordpress site

I have created a custom html webpage that i wish to use as the homepage or index of my site. However my site is a Word press site. How can i make my custom webpage the index of my Word press site?
It will need to be a php page within your theme folder. You will then need to declare it as a template file by doing the following:
<?php
//Template Name: Homepage Template
get_header() ;
?>
Create a new page and assign the Hompeage Template.
It your wordpress reading settings you will to set Your latest posts to a static page and select the page you just created.
You create a template and put it in the theme you are using. An example name would be page-home.php.
At the top of the page you put this...like shown here http://codex.wordpress.org/Page_Templates
<?php
/*
Template Name: My Custom Page
*/
Then you save it and go into the Wordpress console and find the page that you want to change the template and under page attributes on the right hand site you will see Template. You select "My Custom Page" from the list and save it.
If you don't see page attributes pull down the screen options in the right upper corner and make sure Page Attributes is checked.