I creating a custom theme on odoo (v14) and I would like to add/change/update the thumbnail image for this theme on Pic a Theme page. Where should I edit and add an image?
In order to add a thumbnail image for the theme you are creating, you just need to indicate the directory of that image on __manifest__.py file.
'images': [
'static/description/screenshot.jpg',
],
Related
I have an image in my theme that displays icons on the website. Its a sprite image. I want to edit this image. I went to Edit Theme > Theme Actions > Edit Code > Assets > image.jpg. I can see it but I don't have any option to edit or replace it. Is this possible to do?
I am developing in shopify and want to add the background image below but can't find the url link for it. I know you can find it in Settings -> Files. But I need the actual picture url online to then upload it.
This section is being controlled from theme customization.
Go into customize theme, sections and there you will see option to change backgroud image.
Scoured the web for answers, and used file searches but cannot solve this problem.
Currently I have a Logo with a title I did not fill up.
But on my site it is showing as an empty <h3> tag. How do I remove the h3 tag?
It is destroying the layout of the site.
That's your Site Title that you entered during SocialEngine installation and it's being displayed by Logo Widget in the Header template. You can remove the Logo Widget or add your own image as your logo.
1) To completely remove the Logo Widget :
Open Header Template in Layout Editor.
SE Admin Panel -> Layout -> Layout Editor -> Header Template
You'll see the Logo widget in the header template. Click on X to remove it and then click on Save Changes.
2) To replace the site title with your own logo:
First, upload your logo via File Manager.
SE Admin Panel -> Layout -> File Manager
Open Header Template in Layout Editor.
SE Admin Panel -> Layout -> Layout Editor -> Header Template
Click Edit on the widget, choose the uploaded image from dropdown and lastly click on Save Changes.
NOTE : It is highly recommended that you do not modify any core files directly, including the .tpl file of any widgets. If you modify core files, you'll lose all your modifications to those files after installing new upgrade packages that SocialEngine releases regularly.
You can remove h3 tag in modules->core->widgets->menu-logo->index.tpl
Hi I have made a custom module for my openerp-7 . Now I need to include an image icon as the other modules but I am lacking the setting to do this . What changes should I have to made to have this icon view available.
Hopes for suggesstion
Regards
save your icon as 'icon.png' and place it under your_module_directory/static/src/img
for example check account_voucher module. Its icon images path is in account_voucher/static/src/img/icon.png
Openerp will automatically selects the icon from the static/src/img path
for creating an icon to the custom module you have to override your default icon that exists in the base module
base/static/description/icon.png.
write your icon in the description folder.
your project name /static/description/icon.png.
I think this will help you to change the icon.
I'm new to wordpress.. I have created a custom theme with files of twenty eleven theme in wordpress. But I'm not able to add custom background option and custom logo option. I'm trying to implement it in theme options page. I want to add a custom background color to a div in header section and also a logo in header.
Please give any suggestions for me to complete this theme creation.
Please give some idea about how to add new fields in theme options page and how to display it in pages..
I also want to add some custom text field for displaying address or some lines of text which can be updated from theme options.
Thanks in advance.
try wp codex (https://codex.wordpress.org/Theme_Customization_API), it'll help you with setting up the default wp customizer.
I personally use both the default customiser and the OptionTree plugin (http://wordpress.org/extend/plugins/option-tree/), the plugin is really easy to implement, I'd suggest you start with that.