[MOV] content/*: move resource files into their related page's directory
Since odoo/documentation#903, the guideline for the location of new resource (images, downloadable files, RST includes...) files is to place those inside the directory of the RST page that references them. For example, if `doc1.rst` has a reference to `image.png` and to `download.zip`, the file structure should look like this: ├── parent_doc/ │ └── doc1/ │ │ └── image.png │ │ └── download.zip │ └── doc1.rst │ └── doc2.rst ├── parent_doc.rst Before this commit, most of the resource files were still located inside 'media' directories holding all the resource files referenced by RST pages located at the same level as these directories. In the example above, a single 'media' directory would hold all the resource files referenced by both `doc1.rst` and `doc2.rst`. Doing so prevented us from figuring out easily which resource file was referenced by which RST page and, thus, lead to unused resource files piling up in the repository. It also made it more complicated to define codeowners regex rules because a team could not simply be assigned to `/some_page.*` but needed to be assigned to both `/some_page\.rst` and to the location of 'media'. In order to help new content writers figure out the guideline when taking examples from other RST pages, this commit retroactively applies the guideline to existing resource files and 'media' directories. The left-over resource files that are not referenced by any RST page are removed. task-2497965 Part-of: odoo/documentation#2064
@@ -7,13 +7,13 @@ Product Catalog
|
||||
|
||||
All your published items show up in your catalog page (or *Shop* page).
|
||||
|
||||
.. image:: ./media/shop.png
|
||||
.. image:: catalog/shop.png
|
||||
:align: center
|
||||
|
||||
Most options are available in the *Customize* menu: display attributes,
|
||||
website categories, etc.
|
||||
|
||||
.. image:: ./media/shop_customize.png
|
||||
.. image:: catalog/shop_customize.png
|
||||
:align: center
|
||||
|
||||
Highlight a product
|
||||
@@ -33,5 +33,5 @@ the catalog page. To do so, add product description and add to cart button. Turn
|
||||
options in *Customize* menu: Product Description, Add to Cart, List View (to display product
|
||||
description better).
|
||||
|
||||
.. image:: ./media/shop_list.png
|
||||
.. image:: catalog/shop_list.png
|
||||
:align: center
|
||||
|
Before Width: | Height: | Size: 112 KiB After Width: | Height: | Size: 112 KiB |
|
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 18 KiB |
|
Before Width: | Height: | Size: 22 KiB After Width: | Height: | Size: 22 KiB |
@@ -6,17 +6,17 @@ On the website click *New Page* in the top-right corner.
|
||||
|
||||
Then click *New Product* and follow the blinking tips.
|
||||
|
||||
.. image:: ./media/create_product.png
|
||||
.. image:: product_page/create_product.png
|
||||
:align: center
|
||||
|
||||
Here are the main elements of the Product page:
|
||||
|
||||
.. image:: ./media/product_page_tips.png
|
||||
.. image:: product_page/product_page_tips.png
|
||||
:align: center
|
||||
|
||||
Many elements can be made visible from the *Customize* menu.
|
||||
|
||||
.. image:: ./media/product_customize.png
|
||||
.. image:: product_page/product_customize.png
|
||||
:align: center
|
||||
|
||||
See how to configure your products from links here below.
|
||||
|
||||
|
Before Width: | Height: | Size: 4.0 KiB After Width: | Height: | Size: 4.0 KiB |
|
Before Width: | Height: | Size: 63 KiB After Width: | Height: | Size: 63 KiB |
|
Before Width: | Height: | Size: 102 KiB After Width: | Height: | Size: 102 KiB |
@@ -5,14 +5,14 @@ How to display several images per product
|
||||
By default your product web page displays the main image of your product only.
|
||||
If you like to show your products under several angles, you can turn the image into a carrousel.
|
||||
|
||||
.. image:: ./media/multi_images01.png
|
||||
.. image:: multi_images/multi_images01.png
|
||||
:align: center
|
||||
|
||||
* Check *Several images per product* in :menuselection:`Website Admin --> Configuration --> Settings`.
|
||||
|
||||
* Open a product detail form and upload images from *Images* tab. Hit *Create* in Edit mode to get the upload wizard.
|
||||
|
||||
.. image:: ./media/multi_images02.png
|
||||
.. image:: multi_images/multi_images02.png
|
||||
:align: center
|
||||
|
||||
.. note::
|
||||
|
||||
|
Before Width: | Height: | Size: 120 KiB After Width: | Height: | Size: 120 KiB |
|
Before Width: | Height: | Size: 27 KiB After Width: | Height: | Size: 27 KiB |
@@ -14,12 +14,12 @@ Accessory products when checking out
|
||||
Accessories (e.g. for computers: mouse, keyboard) show up when the customer
|
||||
reviews the cart before paying.
|
||||
|
||||
.. image:: ./media/cross_sell_accessory_web.png
|
||||
.. image:: cross_selling/cross_sell_accessory_web.png
|
||||
:align: center
|
||||
|
||||
Select accessories in the *Sales* tab of the product detail page.
|
||||
|
||||
.. image:: ./media/cross_sell_accessory.png
|
||||
.. image:: cross_selling/cross_sell_accessory.png
|
||||
:align: center
|
||||
|
||||
.. note::
|
||||
@@ -34,7 +34,7 @@ Optional products are directly related to the item added to cart (e.g. for compu
|
||||
warranty, OS software, extra components). Whenever the main product is added to cart,
|
||||
such a new screen pops up as an extra step.
|
||||
|
||||
.. image:: ./media/cross_sell_optional_web.png
|
||||
.. image:: cross_selling/cross_sell_optional_web.png
|
||||
:align: center
|
||||
|
||||
To publish optional products:
|
||||
@@ -42,12 +42,12 @@ To publish optional products:
|
||||
* Install *eCommerce Optional Products* addon in *Apps* menu. Remove the default filter to
|
||||
search on addons as well, otherwise only main apps show up.
|
||||
|
||||
.. image:: ./media/cross_sell_optional_install.png
|
||||
.. image:: cross_selling/cross_sell_optional_install.png
|
||||
:align: center
|
||||
|
||||
* Select optional items from the *Sales* tab of the product detail form.
|
||||
|
||||
.. image:: ./media/cross_sell_optional.png
|
||||
.. image:: cross_selling/cross_sell_optional.png
|
||||
:align: center
|
||||
|
||||
.. note::
|
||||
|
||||
|
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 14 KiB |
|
Before Width: | Height: | Size: 64 KiB After Width: | Height: | Size: 64 KiB |
|
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 16 KiB |
|
Before Width: | Height: | Size: 23 KiB After Width: | Height: | Size: 23 KiB |
|
Before Width: | Height: | Size: 49 KiB After Width: | Height: | Size: 49 KiB |
@@ -26,7 +26,7 @@ In the case that you sell in several currencies, you can let your customers choo
|
||||
their own. Check the *Selectable* box to add the pricelist to the website drop-down menu, which
|
||||
can be found in *Pricelists* under the *Products* menu, located in the Website application.
|
||||
|
||||
.. image:: ./media/website_pricelist_select.png
|
||||
.. image:: pricing/website_pricelist_select.png
|
||||
:align: center
|
||||
:width: 50 %
|
||||
|
||||
|
||||
|
Before Width: | Height: | Size: 84 KiB After Width: | Height: | Size: 84 KiB |
@@ -15,25 +15,25 @@ Setup
|
||||
pricelist with the discount rule (see :doc:`pricing`).
|
||||
Then enter a code.
|
||||
|
||||
.. image:: ./media/promocode.png
|
||||
.. image:: promo_code/promocode.png
|
||||
:align: center
|
||||
|
||||
* Make the promocode field available on your *Shopping Cart* page (option in
|
||||
*Customize* menu). Add a product to cart to reach it.
|
||||
|
||||
.. image:: ./media/promocode_publish.png
|
||||
.. image:: promo_code/promocode_publish.png
|
||||
:align: center
|
||||
|
||||
Once turned on you see a new section on the right side. On clicking *Apply* prices get
|
||||
automatically updated in the cart.
|
||||
|
||||
.. image:: ./media/promocode_web.png
|
||||
.. image:: promo_code/promocode_web.png
|
||||
:align: center
|
||||
|
||||
The promocode used by the customer is stored in the system so you can analyze the
|
||||
performance of your marketing campaigns.
|
||||
|
||||
.. image:: ./media/promocode_backend.png
|
||||
.. image:: promo_code/promocode_backend.png
|
||||
:align: center
|
||||
|
||||
+ Show sales per pricelists...
|
||||
|
||||
|
Before Width: | Height: | Size: 23 KiB After Width: | Height: | Size: 23 KiB |
|
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 15 KiB |
|
Before Width: | Height: | Size: 43 KiB After Width: | Height: | Size: 43 KiB |
|
Before Width: | Height: | Size: 54 KiB After Width: | Height: | Size: 54 KiB |
@@ -6,7 +6,7 @@ Publishing and monitoring customer experience will help you gain the trust
|
||||
of new customers and better engage with your community. In 2 clicks, allow
|
||||
your customer to share their feedback!
|
||||
|
||||
.. image:: ./media/comment_post.png
|
||||
.. image:: reviews/comment_post.png
|
||||
:align: center
|
||||
|
||||
Setup
|
||||
@@ -14,7 +14,7 @@ Setup
|
||||
|
||||
Activate comments & rating from the *Customize* menu of the product web page.
|
||||
|
||||
.. image:: ./media/comment_setup.png
|
||||
.. image:: reviews/comment_setup.png
|
||||
:align: center
|
||||
|
||||
.. note::
|
||||
@@ -27,7 +27,7 @@ Review the posts in real time
|
||||
Whenever a post is published, the product manager and all the product followers
|
||||
get notified in their Inbox (*Discuss* menu).
|
||||
|
||||
.. image:: ./media/comment_new.png
|
||||
.. image:: reviews/comment_new.png
|
||||
:align: center
|
||||
|
||||
.. note::
|
||||
@@ -36,7 +36,7 @@ get notified in their Inbox (*Discuss* menu).
|
||||
Click the product name to open the detail form and review the comment (in the
|
||||
product discussion thread).
|
||||
|
||||
.. image:: ./media/comment_inbox.png
|
||||
.. image:: reviews/comment_inbox.png
|
||||
:align: center
|
||||
|
||||
Moderate & unpublish
|
||||
@@ -48,12 +48,12 @@ or on the web page.
|
||||
To unpublish the post, open the product web page and click the *Published* button
|
||||
to turn it red (*Unpublished*).
|
||||
|
||||
.. image:: ./media/comment_unpublish.png
|
||||
.. image:: reviews/comment_unpublish.png
|
||||
:align: center
|
||||
|
||||
..tip::
|
||||
You can access the web page from the detail form by clicking the *Published*
|
||||
smart button (and vice versa).
|
||||
|
||||
.. image:: ./media/comment_webpage.png
|
||||
.. image:: reviews/comment_webpage.png
|
||||
:align: center
|
||||
|
||||
|
Before Width: | Height: | Size: 26 KiB After Width: | Height: | Size: 26 KiB |
|
Before Width: | Height: | Size: 6.8 KiB After Width: | Height: | Size: 6.8 KiB |
|
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 16 KiB |
|
Before Width: | Height: | Size: 63 KiB After Width: | Height: | Size: 63 KiB |
|
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 21 KiB |
|
Before Width: | Height: | Size: 33 KiB After Width: | Height: | Size: 33 KiB |
@@ -6,7 +6,7 @@ In order to maximize your revenue, suggesting pricier alternative products is
|
||||
strongly advised for basic items. That way, your customer will spend more time
|
||||
browsing your catalog.
|
||||
|
||||
.. image:: ./media/upsell_web.png
|
||||
.. image:: upselling/upsell_web.png
|
||||
:align: center
|
||||
|
||||
To do so:
|
||||
@@ -14,12 +14,12 @@ To do so:
|
||||
* Select such *Alternative Products* in the *Sales* tab of the product detail form.
|
||||
3 alternatives are fine! Don't publish too many otherwise your customers will be confused.
|
||||
|
||||
.. image:: ./media/upsell.png
|
||||
.. image:: upselling/upsell.png
|
||||
:align: center
|
||||
|
||||
* Turn on *Alternative Products* from the *Customize* menu of the product web page.
|
||||
|
||||
.. image:: ./media/upsell_publish.png
|
||||
.. image:: upselling/upsell_publish.png
|
||||
:align: center
|
||||
|
||||
|
||||
|
||||
|
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 15 KiB |
|
Before Width: | Height: | Size: 63 KiB After Width: | Height: | Size: 63 KiB |
|
Before Width: | Height: | Size: 124 KiB After Width: | Height: | Size: 124 KiB |
@@ -16,7 +16,7 @@ Sign up
|
||||
The invitation to sign up shows up when the customer wants to visualize
|
||||
the order from order confirmation email.
|
||||
|
||||
.. image:: ./media/portal_odoo_signup.png
|
||||
.. image:: portal/portal_odoo_signup.png
|
||||
:align: center
|
||||
|
||||
Customer account
|
||||
@@ -25,12 +25,12 @@ Customer account
|
||||
Once logged in the customer will access the account by clicking *My Account*
|
||||
in the login dropdown menu.
|
||||
|
||||
.. image:: ./media/portal_link.png
|
||||
.. image:: portal/portal_link.png
|
||||
:align: center
|
||||
|
||||
THere they find all their history. The main address (billing) can also be modified.
|
||||
|
||||
.. image:: ./media/portal_menu.png
|
||||
.. image:: portal/portal_menu.png
|
||||
:align: center
|
||||
|
||||
.. note::
|
||||
|
||||
|
Before Width: | Height: | Size: 4.7 KiB After Width: | Height: | Size: 4.7 KiB |
|
Before Width: | Height: | Size: 35 KiB After Width: | Height: | Size: 35 KiB |
|
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 18 KiB |
@@ -13,14 +13,14 @@ Once *Live Chat* is installed on your database, if your website was created with
|
||||
application is automatically added to it. All that is left to do is to go to
|
||||
:menuselection:`Website --> Configuration --> Settings --> Live Chat`.
|
||||
|
||||
.. image:: media/livechat_settings.png
|
||||
.. image:: get_started/livechat_settings.png
|
||||
:align: center
|
||||
:height: 300
|
||||
:alt: View of the settings page and the live chat feature for Odoo Live Chat
|
||||
|
||||
Select the channel to be linked to your website or create one on the fly.
|
||||
|
||||
.. image:: media/channels.png
|
||||
.. image:: get_started/channels.png
|
||||
:align: center
|
||||
:alt: View of a live chat channel form for Odoo Live Chat
|
||||
|
||||
@@ -35,7 +35,7 @@ Select the channel to be linked to your website or create one on the fly.
|
||||
the chat window automatically pops-up 3 seconds after users (from any country) land on the
|
||||
contact us page.
|
||||
|
||||
.. image:: media/rules.png
|
||||
.. image:: get_started/rules.png
|
||||
:align: center
|
||||
:alt: View of a channel’s rules form for Odoo Live Chat
|
||||
|
||||
@@ -51,7 +51,7 @@ External options
|
||||
the *Widget* tab.
|
||||
| Odoo also offers an URL you can send to users so they can have access to a single live chat page.
|
||||
|
||||
.. image:: media/widget.png
|
||||
.. image:: get_started/widget.png
|
||||
:align: center
|
||||
:alt: View of the widget tab for Odoo Live Chat
|
||||
|
||||
@@ -61,7 +61,7 @@ Managing chat requests
|
||||
Conversations initiated by visitors pop up as a direct message, and are shown in *Discuss*.
|
||||
Therefore, inquiries can be answered wherever you are in Odoo.
|
||||
|
||||
.. image:: media/discuss.png
|
||||
.. image:: get_started/discuss.png
|
||||
:align: center
|
||||
:alt: View of the discuss application with a message sent through live chat in Odoo
|
||||
|
||||
@@ -74,7 +74,7 @@ Leave or join a channel
|
||||
Go to :menuselection:`Website --> Configuration --> Settings`, access your channel under
|
||||
*Live Chat*, and *Join Channel* or *Leave Channel*.
|
||||
|
||||
.. image:: media/joinchannel.png
|
||||
.. image:: get_started/joinchannel.png
|
||||
:align: center
|
||||
:alt: View of a channel form and the option to join a channel for Odoo Live Chat
|
||||
|
||||
|
||||
|
Before Width: | Height: | Size: 37 KiB After Width: | Height: | Size: 37 KiB |
|
Before Width: | Height: | Size: 42 KiB After Width: | Height: | Size: 42 KiB |
|
Before Width: | Height: | Size: 44 KiB After Width: | Height: | Size: 44 KiB |
|
Before Width: | Height: | Size: 26 KiB After Width: | Height: | Size: 26 KiB |
|
Before Width: | Height: | Size: 28 KiB After Width: | Height: | Size: 28 KiB |
|
Before Width: | Height: | Size: 19 KiB After Width: | Height: | Size: 19 KiB |
@@ -14,20 +14,20 @@ Customer Rating
|
||||
is shown.
|
||||
| A copy of the conversation can also be sent by email.
|
||||
|
||||
.. image:: media/user_chatwindow.png
|
||||
.. image:: ratings/user_chatwindow.png
|
||||
:align: center
|
||||
:height: 400
|
||||
:alt: View of the chat window from a user’s side for Odoo Live Chat
|
||||
|
||||
The rating is shown on the chat window itself for the operator.
|
||||
|
||||
.. image:: media/operator_chatwindow.png
|
||||
.. image:: ratings/operator_chatwindow.png
|
||||
:align: center
|
||||
:alt: View of a chat window from an operator’s side highlighting a rating for Odoo Live Chat
|
||||
|
||||
And under :menuselection:`Report --> Customer Ratings`.
|
||||
|
||||
.. image:: media/customer_ratings.png
|
||||
.. image:: ratings/customer_ratings.png
|
||||
:align: center
|
||||
:alt: View of the customer ratings page in Odoo Live Chat
|
||||
|
||||
@@ -37,7 +37,7 @@ Make the rating public
|
||||
Go to :menuselection:`Website --> Configuration --> Settings`, access your channel form, click on
|
||||
*Go to Website* and on *Unpublished*, to publish the rating of that channel on your website.
|
||||
|
||||
.. image:: media/publish_ratings.png
|
||||
.. image:: ratings/publish_ratings.png
|
||||
:align: center
|
||||
:alt: View of the public ratings in the website for Odoo Live Chat
|
||||
|
||||
|
||||
|
Before Width: | Height: | Size: 29 KiB After Width: | Height: | Size: 29 KiB |
|
Before Width: | Height: | Size: 30 KiB After Width: | Height: | Size: 30 KiB |
|
Before Width: | Height: | Size: 41 KiB After Width: | Height: | Size: 41 KiB |
|
Before Width: | Height: | Size: 24 KiB After Width: | Height: | Size: 24 KiB |
@@ -25,7 +25,7 @@ Commands are shortcuts that do specific actions within the chat window:
|
||||
|
||||
To access the ticket or lead created from the chat, click on the shortcut link.
|
||||
|
||||
.. image:: media/create_ticket.png
|
||||
.. image:: responses/create_ticket.png
|
||||
:align: center
|
||||
:alt: View of the chat window with a helpdesk ticket created in Odoo Live Chat
|
||||
|
||||
@@ -40,7 +40,7 @@ Send canned responses
|
||||
To create them, go to :menuselection:`Live Chat --> Configuration --> Canned Responses`.
|
||||
| To use them during a conversation, simply type **:** followed by the shortcut word you created.
|
||||
|
||||
.. image:: media/canned_response.png
|
||||
.. image:: responses/canned_response.png
|
||||
:align: center
|
||||
:alt: View of a chat window and the use of a canned response in Odoo Live Chat
|
||||
|
||||
|
||||
|
Before Width: | Height: | Size: 5.4 KiB After Width: | Height: | Size: 5.4 KiB |
|
Before Width: | Height: | Size: 6.9 KiB After Width: | Height: | Size: 6.9 KiB |
@@ -9,19 +9,19 @@ To follow your website's traffic with Google Analytics:
|
||||
|
||||
- Go through the creation form and accept the conditions to get the tracking ID.
|
||||
|
||||
.. image:: media/google_analytics_account.png
|
||||
.. image:: google_analytics/google_analytics_account.png
|
||||
:align: center
|
||||
|
||||
- Copy the tracking ID to insert it in Odoo.
|
||||
|
||||
.. image:: media/google_analytics_tracking_id.png
|
||||
.. image:: google_analytics/google_analytics_tracking_id.png
|
||||
:align: center
|
||||
|
||||
- Go to the *Configuration* menu of your Odoo's Website app.
|
||||
In the settings, turn on Google Analytics and paste the tracking ID.
|
||||
Then save the page.
|
||||
|
||||
.. image:: media/google_analytics_settings.png
|
||||
.. image:: google_analytics/google_analytics_settings.png
|
||||
:align: center
|
||||
|
||||
To make your first steps in Google Analytics, refer to `Google Documentation
|
||||
|
||||
|
Before Width: | Height: | Size: 36 KiB After Width: | Height: | Size: 36 KiB |
|
Before Width: | Height: | Size: 70 KiB After Width: | Height: | Size: 70 KiB |
|
Before Width: | Height: | Size: 7.6 KiB After Width: | Height: | Size: 7.6 KiB |
@@ -13,29 +13,29 @@ Dashboard thanks to Google Analytics.
|
||||
|
||||
- Select Analytics API.
|
||||
|
||||
.. image:: media/google_analytics_api.png
|
||||
.. image:: google_analytics_dashboard/google_analytics_api.png
|
||||
:align: center
|
||||
|
||||
- Create a new project and give it a name (e.g. Odoo).
|
||||
This project is needed to store your API credentials.
|
||||
|
||||
.. image:: media/google_analytics_create_project.png
|
||||
.. image:: google_analytics_dashboard/google_analytics_create_project.png
|
||||
:align: center
|
||||
|
||||
- Enable the API.
|
||||
|
||||
.. image:: media/google_analytics_enable.png
|
||||
.. image:: google_analytics_dashboard/google_analytics_enable.png
|
||||
:align: center
|
||||
|
||||
- Create credentials to use in Odoo.
|
||||
|
||||
.. image:: media/google_analytics_create_credentials.png
|
||||
.. image:: google_analytics_dashboard/google_analytics_create_credentials.png
|
||||
:align: center
|
||||
|
||||
- Select *Web browser (Javascript)*
|
||||
as calling source and *User data* as kind of data.
|
||||
|
||||
.. image:: media/google_analytics_get_credentials.png
|
||||
.. image:: google_analytics_dashboard/google_analytics_get_credentials.png
|
||||
:align: center
|
||||
|
||||
- Then you can create a Client ID.
|
||||
@@ -44,7 +44,7 @@ Dashboard thanks to Google Analytics.
|
||||
Odoo's instance URL. The *Authorized redirect URI* is your Odoo's instance
|
||||
URL followed by '/google_account/authentication'.
|
||||
|
||||
.. image:: media/google_analytics_authorization.png
|
||||
.. image:: google_analytics_dashboard/google_analytics_authorization.png
|
||||
:align: center
|
||||
|
||||
|
||||
@@ -55,16 +55,16 @@ Dashboard thanks to Google Analytics.
|
||||
|
||||
- Finally you are provided with your Client ID. Copy and paste it in Odoo.
|
||||
|
||||
.. image:: media/google_analytics_client_id.png
|
||||
.. image:: google_analytics_dashboard/google_analytics_client_id.png
|
||||
:align: center
|
||||
|
||||
- Open your Website Dashboard in Odoo and link your Analytics account to past
|
||||
your Client ID.
|
||||
|
||||
.. image:: media/google_analytics_start.png
|
||||
.. image:: google_analytics_dashboard/google_analytics_start.png
|
||||
:align: center
|
||||
|
||||
- As a last step, authorize Odoo to access Google API.
|
||||
|
||||
.. image:: media/google_analytics_login.png
|
||||
.. image:: google_analytics_dashboard/google_analytics_login.png
|
||||
:align: center
|
||||
|
||||
|
Before Width: | Height: | Size: 145 KiB After Width: | Height: | Size: 145 KiB |
|
Before Width: | Height: | Size: 50 KiB After Width: | Height: | Size: 50 KiB |
|
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 2.2 KiB |
|
Before Width: | Height: | Size: 9.6 KiB After Width: | Height: | Size: 9.6 KiB |
|
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.5 KiB |
|
Before Width: | Height: | Size: 4.5 KiB After Width: | Height: | Size: 4.5 KiB |
|
Before Width: | Height: | Size: 45 KiB After Width: | Height: | Size: 45 KiB |
|
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 11 KiB |
|
Before Width: | Height: | Size: 9.3 KiB After Width: | Height: | Size: 9.3 KiB |
@@ -11,7 +11,7 @@ Configuration
|
||||
|
||||
Go to :menuselection:`Website --> Configuration --> Settings` and activate *Link Trackers*.
|
||||
|
||||
.. image:: media/enable_link_tracker.png
|
||||
.. image:: link_tracker/enable_link_tracker.png
|
||||
:align: center
|
||||
:alt: View of Website settings page emphasizing the link trackers field in Odoo Website
|
||||
|
||||
@@ -21,7 +21,7 @@ Set up traceable URLs
|
||||
Go to :menuselection:`Website --> Go to website --> Promote --> Track this page`. Here, you are able
|
||||
to get a specific tracked URL based on the campaign, medium, and source being used.
|
||||
|
||||
.. image:: media/link_tracker_fields.png
|
||||
.. image:: link_tracker/link_tracker_fields.png
|
||||
:align: center
|
||||
:alt: View of the link tracker fields for Odoo Website
|
||||
|
||||
@@ -41,7 +41,7 @@ To look at statistics of your links, go to :menuselection:`Website --> Go to web
|
||||
can also see complete statistics by clicking on *Stats*, including the number of clicks, and the
|
||||
country of origin for those clicks.
|
||||
|
||||
.. image:: media/links_statistics.png
|
||||
.. image:: link_tracker/links_statistics.png
|
||||
:align: center
|
||||
:alt: View of the tracked list emphasizing the statistics buttons in Odoo Website
|
||||
|
||||
|
||||
|
Before Width: | Height: | Size: 28 KiB After Width: | Height: | Size: 28 KiB |
|
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 15 KiB |
|
Before Width: | Height: | Size: 29 KiB After Width: | Height: | Size: 29 KiB |
@@ -32,7 +32,7 @@ They are automatically generated based on page title & content, but you can
|
||||
finetune them. Make sure they fit the content of the page, otherwise you will
|
||||
be downgraded by search engines.
|
||||
|
||||
.. image:: media/seo01.png
|
||||
.. image:: seo/seo01.png
|
||||
:align: center
|
||||
|
||||
Keywords
|
||||
@@ -43,7 +43,7 @@ towards your website. For each keyword, you see how it is used in the content
|
||||
(H1, H2, page title, page description, page content) and what are the related
|
||||
searches in Google. The more keywords are used the better.
|
||||
|
||||
.. image:: media/seo02.png
|
||||
.. image:: seo/seo02.png
|
||||
:align: center
|
||||
|
||||
.. note::
|
||||
@@ -92,7 +92,7 @@ Social Network
|
||||
Odoo allows to link all your social network accounts in your website footer.
|
||||
All you have to do is to refer all your accounts in your company settings.
|
||||
|
||||
.. image:: media/seo03.png
|
||||
.. image:: seo/seo03.png
|
||||
:align: center
|
||||
|
||||
Social Share
|
||||
@@ -102,14 +102,14 @@ Drop the building block *Share* on any page you want your visitors to share.
|
||||
By clicking the icon, they are prompted to share the page in their social media
|
||||
wall.
|
||||
|
||||
.. image:: media/seo04.png
|
||||
.. image:: seo/seo04.png
|
||||
:align: center
|
||||
|
||||
Most social media use a picture of the picture to decorate the share post.
|
||||
Odoo uses the website logo by default but you can choose any other image
|
||||
of your page in the Promote tool.
|
||||
|
||||
.. image:: media/seo05.png
|
||||
.. image:: seo/seo05.png
|
||||
:align: center
|
||||
|
||||
Facebook Page
|
||||
@@ -319,7 +319,7 @@ visitor abandonment rate is also divided by two. (25% to 12.5%). One
|
||||
extra second to load a page could `cost $1.6b to Amazon in
|
||||
sales <http://www.fastcompany.com/1825005/how-one-second-could-cost-amazon-16-billion-sales>`__.
|
||||
|
||||
.. image:: media/seo06.png
|
||||
.. image:: seo/seo06.png
|
||||
:align: center
|
||||
|
||||
Fortunately, Odoo does all the magic for you. Below, you will find the
|
||||
@@ -341,7 +341,7 @@ From the upload button, you have the option to keep the original image
|
||||
unmodified if you prefer to optimize the quality of the image rather
|
||||
than performance.
|
||||
|
||||
.. image:: media/seo07.png
|
||||
.. image:: seo/seo07.png
|
||||
:align: center
|
||||
|
||||
.. note::
|
||||
@@ -355,12 +355,12 @@ When you click on an image, Odoo shows you the Alt and title attributes
|
||||
of the ``<img>`` tag. You can click on it to set your own title and Alt
|
||||
attributes for the image.
|
||||
|
||||
.. image:: media/seo08.png
|
||||
.. image:: seo/seo08.png
|
||||
:align: center
|
||||
|
||||
When you click on this link, the following window will appear:
|
||||
|
||||
.. image:: media/seo09.png
|
||||
.. image:: seo/seo09.png
|
||||
:align: center
|
||||
|
||||
Odoo's pictograms are implemented using a font (`Font
|
||||
@@ -368,7 +368,7 @@ Awesome <https://fortawesome.github.io/Font-Awesome/icons/>`__ in most
|
||||
Odoo themes). Thus, you can use as many pictograms as you want in your
|
||||
page, they will not result in extra requests to load the page.
|
||||
|
||||
.. image:: media/seo10.png
|
||||
.. image:: seo/seo10.png
|
||||
:align: center
|
||||
|
||||
Static Resources: CSS
|
||||
@@ -504,7 +504,7 @@ Delivery Network has three advantages:
|
||||
You can configure your CDN options from the **Website Admin** app, using
|
||||
the Configuration menu. Here is an example of configuration you can use:
|
||||
|
||||
.. image:: media/seo11.png
|
||||
.. image:: seo/seo11.png
|
||||
:align: center
|
||||
|
||||
HTML Pages
|
||||
@@ -535,7 +535,7 @@ Websites that are not mobile-friendly are negatively
|
||||
impacted in search engine rankings. All Odoo themes rely on Bootstrap to
|
||||
render efficiently according to the device: desktop, tablet or mobile.
|
||||
|
||||
.. image:: media/seo12.png
|
||||
.. image:: seo/seo12.png
|
||||
:align: center
|
||||
|
||||
As all Odoo modules share the same technology, absolutely all pages in
|
||||
@@ -569,7 +569,7 @@ eCommerce compared to Odoo when it comes to high query volumes:
|
||||
|
||||
Here is the slide that summarizes the scalability of Odoo Website & eCommerce.
|
||||
|
||||
.. image:: media/seo13.png
|
||||
.. image:: seo/seo13.png
|
||||
:align: center
|
||||
|
||||
Search Engines Files
|
||||
@@ -620,7 +620,7 @@ products, forum posts and contact addresses. This allows your product
|
||||
pages to be displayed in Google using extra information like the price
|
||||
and rating of a product:
|
||||
|
||||
.. image:: media/seo14.png
|
||||
.. image:: seo/seo14.png
|
||||
:align: center
|
||||
|
||||
robots.txt
|
||||
|
||||
|
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 21 KiB |
|
Before Width: | Height: | Size: 58 KiB After Width: | Height: | Size: 58 KiB |
|
Before Width: | Height: | Size: 6.8 KiB After Width: | Height: | Size: 6.8 KiB |
|
Before Width: | Height: | Size: 58 KiB After Width: | Height: | Size: 58 KiB |
|
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 13 KiB |
|
Before Width: | Height: | Size: 56 KiB After Width: | Height: | Size: 56 KiB |
|
Before Width: | Height: | Size: 9.2 KiB After Width: | Height: | Size: 9.2 KiB |
|
Before Width: | Height: | Size: 4.3 KiB After Width: | Height: | Size: 4.3 KiB |
|
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 18 KiB |
|
Before Width: | Height: | Size: 6.9 KiB After Width: | Height: | Size: 6.9 KiB |
|
Before Width: | Height: | Size: 7.6 KiB After Width: | Height: | Size: 7.6 KiB |
|
Before Width: | Height: | Size: 46 KiB After Width: | Height: | Size: 46 KiB |
|
Before Width: | Height: | Size: 26 KiB After Width: | Height: | Size: 26 KiB |
|
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 18 KiB |
@@ -2,7 +2,7 @@
|
||||
Manage Multi Websites
|
||||
=====================
|
||||
|
||||
.. image:: media/multi_website04.png
|
||||
.. image:: multi_website/multi_website04.png
|
||||
:align: center
|
||||
|
||||
Odoo’s Multi-Websites opens up broad possibilities of diversification and
|
||||
@@ -22,7 +22,7 @@ The button, *Create a new website*, lays in the first section.
|
||||
|
||||
|
||||
|
||||
.. image:: media/multi_website05.png
|
||||
.. image:: multi_website/multi_website05.png
|
||||
:align: center
|
||||
|
||||
In the upcoming prompt, set a name for your new website and a specific
|
||||
@@ -30,7 +30,7 @@ domain name. Leave empty to publish the new website under the default
|
||||
domain of your Odoo database. You can later set some country groups to
|
||||
redirect visitors to it using Geo IP.
|
||||
|
||||
.. image:: media/multi_website01.png
|
||||
.. image:: multi_website/multi_website01.png
|
||||
:align: center
|
||||
|
||||
Then, select a theme. This new website might have an entirely different
|
||||
@@ -40,7 +40,7 @@ different theme!
|
||||
Once the theme is selected, you can start to build the homepage of your
|
||||
website. Follow the purple drops; they will help you in the first steps.
|
||||
|
||||
.. image:: media/multi_website08.png
|
||||
.. image:: multi_website/multi_website08.png
|
||||
:align: center
|
||||
|
||||
|
||||
@@ -64,7 +64,7 @@ edit bar. Switching to another website will connect to the domain of
|
||||
this website. If you use another domain for the website, the user is
|
||||
requested to sign in.
|
||||
|
||||
.. image:: media/multi_website03.png
|
||||
.. image:: multi_website/multi_website03.png
|
||||
:align: center
|
||||
|
||||
.. note::
|
||||
@@ -82,13 +82,13 @@ removing the menu item.
|
||||
Each website comes with a high range of specific options in the
|
||||
settings. First, select the website to configure.
|
||||
|
||||
.. image:: media/multi_website15.png
|
||||
.. image:: multi_website/multi_website15.png
|
||||
:align: center
|
||||
|
||||
Then, take a look at the options flagged with the earth icon. It means
|
||||
they only impact the very website you are working on.
|
||||
|
||||
.. image:: media/multi_website12.png
|
||||
.. image:: multi_website/multi_website12.png
|
||||
:align: center
|
||||
|
||||
You can, for instance, set specific :
|
||||
@@ -115,7 +115,7 @@ use a specific one. If you share it and want to adapt the content per
|
||||
region, set country groups in the setting of each website. Visitors will
|
||||
be redirected to the right website using GeoIP.
|
||||
|
||||
.. image:: media/multi_website18.png
|
||||
.. image:: multi_website/multi_website18.png
|
||||
:align: center
|
||||
|
||||
.. note::
|
||||
@@ -145,7 +145,7 @@ each website. Go through the different pages to adapt them to this new
|
||||
audience. Focus on workflows, and automatic pages (eCommerce checkout,
|
||||
blogs, events, etc.) as the number of available options is higher there.
|
||||
|
||||
.. image:: media/multi_website14.png
|
||||
.. image:: multi_website/multi_website14.png
|
||||
:align: center
|
||||
|
||||
Publish specific content per website
|
||||
@@ -157,7 +157,7 @@ post, etc.) is always only published in the current website. You can
|
||||
change that from the edit form view in the backend and leave the
|
||||
*Website* field blank. This will publish it in all the websites.
|
||||
|
||||
.. image:: media/multi_website06.png
|
||||
.. image:: multi_website/multi_website06.png
|
||||
:align: center
|
||||
|
||||
Here are all the objects that you can link to *either one or all the
|
||||
@@ -191,7 +191,7 @@ website. You can duplicate it to other websites from
|
||||
If you want to duplicate it in just one other website, duplicate the
|
||||
page and set the new website.
|
||||
|
||||
.. image:: media/multi_website09.png
|
||||
.. image:: multi_website/multi_website09.png
|
||||
:align: center
|
||||
|
||||
When you edit the page again, the change only affects the current
|
||||
@@ -202,7 +202,7 @@ The original page still being linked to all websites.
|
||||
By grouping pages by URL in the page manager, you quickly find
|
||||
the original page behind each edited page.
|
||||
|
||||
.. image:: media/multi_website10.png
|
||||
.. image:: multi_website/multi_website10.png
|
||||
:align: center
|
||||
|
||||
Multi-companies
|
||||
@@ -211,7 +211,7 @@ Multi-companies
|
||||
Each website can be linked to a specific company of your system, in a
|
||||
multi-companies environment.
|
||||
|
||||
.. image:: media/multi_website16.png
|
||||
.. image:: multi_website/multi_website16.png
|
||||
:align: center
|
||||
|
||||
With such a configuration, only company-related data appear on the
|
||||
@@ -225,7 +225,7 @@ is it for visitors.
|
||||
.. note::
|
||||
If websites are multi-companies, you don’t change company when switching websites. To change the company and see the related content, use the company selector in the menu.
|
||||
|
||||
.. image:: media/multi_website02.png
|
||||
.. image:: multi_website/multi_website02.png
|
||||
:align: center
|
||||
|
||||
Configure your eCommerce website
|
||||
@@ -242,7 +242,7 @@ We already saw earlier how to publish a specific record in only one
|
||||
website. You will find the \*Website\* field in the eCommerce tab of the
|
||||
product edit form. Empty means available in all websites.
|
||||
|
||||
.. image:: media/multi_website13.png
|
||||
.. image:: multi_website/multi_website13.png
|
||||
:align: center
|
||||
|
||||
Products available on *some* websites
|
||||
@@ -269,7 +269,7 @@ pricelists. See :doc:`../../ecommerce/maximizing_revenue/pricing`.
|
||||
If you need help. Select a website to make a pricelist only available on
|
||||
this website.
|
||||
|
||||
.. image:: media/multi_website07.png
|
||||
.. image:: multi_website/multi_website07.png
|
||||
:align: center
|
||||
|
||||
Leaving the field empty means that you make it work in all websites if
|
||||
@@ -293,7 +293,7 @@ the websites or compel them to create one account for each website. This
|
||||
last option is convenient if your websites shouldn’t be related to each
|
||||
other in the visitor mind.
|
||||
|
||||
.. image:: media/multi_website17.png
|
||||
.. image:: multi_website/multi_website17.png
|
||||
:align: center
|
||||
|
||||
Technical hints for customization
|
||||
@@ -313,5 +313,5 @@ tips to make it work with multi websites:
|
||||
the domain to only display records available for the current
|
||||
website.
|
||||
|
||||
.. image:: media/multi_website11.png
|
||||
.. image:: multi_website/multi_website11.png
|
||||
:align: center
|
||||
|
||||
|
Before Width: | Height: | Size: 3.5 KiB After Width: | Height: | Size: 3.5 KiB |
|
Before Width: | Height: | Size: 4.0 KiB After Width: | Height: | Size: 4.0 KiB |
|
Before Width: | Height: | Size: 20 KiB After Width: | Height: | Size: 20 KiB |
|
Before Width: | Height: | Size: 116 KiB After Width: | Height: | Size: 116 KiB |
|
Before Width: | Height: | Size: 3.5 KiB After Width: | Height: | Size: 3.5 KiB |
|
Before Width: | Height: | Size: 6.3 KiB After Width: | Height: | Size: 6.3 KiB |
|
Before Width: | Height: | Size: 8.5 KiB After Width: | Height: | Size: 8.5 KiB |
|
Before Width: | Height: | Size: 228 KiB After Width: | Height: | Size: 228 KiB |
|
Before Width: | Height: | Size: 5.2 KiB After Width: | Height: | Size: 5.2 KiB |
|
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 13 KiB |
|
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 18 KiB |
|
Before Width: | Height: | Size: 5.7 KiB After Width: | Height: | Size: 5.7 KiB |