B&b Template 
Autore: Gabor T.
Visite 65,
Followers 1,
Condiviso 0
Hello,
I have a question regarding the B&B template.
Is there any way to make the filter menu appear in mobile view? (for example: number of guests, breakfast options, etc.)
Also, I see that the rooms are added as “webshop” products, but the client only wants a catalogue system — meaning without prices, and instead of the “Add to cart” button, the customer should be redirected to a “Request an offer” page.
Thank you in advance for your help and your reply.
Best Regards,
G.
Postato il

The filter menu can be opened in the mobile view by clicking on the magnifying glass.
-----
I don't understand how it's possible to purchase a room without specifying a date and number of guests. I've noticed these options are available, but they shouldn't be room-specific. Personally, I find it rather risky to set up a booking process like a simple e-commerce site, without clearly managing availability and essential information.
Autore
We are dealing with multiple hotels, each offering several room types, so the price changes based on several factors (room type / equipment + number of guests + season). Because of this, I need a “Request an offer” option that redirects the user to a complete questionnaire where all of the above details can be provided.
However, if I cannot remove the price and the “Cart / Purchase” button, then this function is not suitable. At the same time, I still need the filter-based search feature.
The price and the button can be hidden during product searches and on the product detail pages.
To do this, under "3 Sitemap" at the bottom of the special pages, select "Online shop: Search" and "Online shop: Product page" one after the other and click on "Edit" at the top and then click on the "Settings" tab.
Here you can uncheck “Visible” under “Box style”, see screenshot below
-----
The button for "Request an offer" can be inserted into the short description using HTML code.
----- Example of a button code in HTML -----
<a href="https://example.org/request-offer-123.html">
<button type="button">Request an offer</button>
</a>
----- 2 Screenshots -----
-----
The button can also be made more beautiful with CSS code.
-----
-----
<a href="https://beispiel.de">
<button style="background-color: #4CAF50; color: white; border: none; padding: 10px 20px; border-radius: 5px; cursor: pointer;">Gedruckter Katalog kostenlos</button></a>
-----