Shop 
Author: Joern T.
Visited 250,
Followers 2,
Shared 0
Dear Support,
I would like use onlineshop as showroom.
I need this because I want to link to a business partner.
Instead of "Add to Cart" button, I want to show a standard button.
On standard button, I want to implement my own logic.
My properties would be something like:
- Text property: "Call #49511..." or "visit website".
- External Link: "https://www. ..." or
- Internal Link: "my contact page"
What I need is global "use shop as showroom" choice on "option page".
Could you implement my request please?
Best regards and Thanks
Joern
Posted on the
(It > En) ... ... if the three additional buttons have different links for each cart tab, you could insert them in the description for example with a simple HTML <A> tag, and hide the quantity, price and buy button with EXTRA code...
... if the three buttons are the same for all the cart items, you could insert them with dynamic EXTRA JS code...
... in this case, to be able to evaluate, you need to post the LINK of a real working example online...
.
ciao
.
@Joern,
Like explained by KolAsim here a simple button into description of the product
Or click here
<input type="button" onClick="window.open('https://afsoftware.fr')" target="_blank" value="Visit My Website" />
<p>
<input type="button" onClick="window.open('https://afsoftware.fr/contact.html')" target="_blank" value="My Page" />
<p>
<input type="button" value=" Call #49511" />
And the displaying is
Hope this helps
Axel
Author
Hello KolAsim,
maybe I should why I requested a show room.
My business partner and I running a B2B service with individual products.
We want only to present some product samples.
People who are interested shall give us a call or at least write an email.
As result I want to deactivate order functionally.
The “Add to Cart” I want to replace by my own standard button.
The standard button shall be the same on whole shop.
I manipulated some screenshots to create samples.
Best Regards,

Joern
Sample 1: Call us
Sample 2: Write us




Sample 3: Visit Website
new shop configuration page:
Configuration of Button:
Hallo Joern,
alternativ könnten Sie das Objekt Portfolio verwenden. Hier finden Sie eine Anleitung: https://guide.websitex5.com/de/support/solutions/articles/44002301220
Danke! LG
ciao, ... you did not post the LINK I asked you for, an important basis for my codes, to be able to evaluate and decide what to do...

... if your structure is consistent with my example, ... with my EXTRA code you can obtain this result of my STAMP, ... and if you are interested in applying it with a click on your site, ... let me know...
.
ciao
.
Author
Hello Elisa, Hello KolAsim,
.

thanks for your fast response. I love service of Incomedia
I recommend Website X5 everywhere I can.
@Elisa:
Objekt Portfolio sounds like a good idea.
Sadly text is only visible, when I move mouse over a image. Furthermore my text ist o long and I can not fomat text.
@KolAsim:
I do not own a link, therefore I manuiipulated some screenshots.
Your example looks verry good, it consistent with structure I am looking for.
I would like apply your code on my website. Please, send it to me.
Sceenshoot of Objekt Portfolio for Elisa.
Author
Hello KolAsim,
I created a testshop for you.
https://www.hannomax.de/cartsearch/index.html
I hope it helps.
Best regards,
Joern
...OK ... this is the EXTRA code of my invention:
<!-- personalizzazione flusso CART x WSx5 by KolAsim -- INIZIO -->
<style>.im-cc-products-button , .im-cc-products-qty{display:none!important;}</style>
<script>
$(document).ready(function () { //K>;
/** --- pulsante EXTRA x CART - by KolAsim --- **/
urlK = "https://helpcenter.websitex5.com/it/community"; // indirizzo URL reale della pagina da collegare;
text_buttonK = "Contacts ZXY"; // testo del pulsante;
setTimeout(function(){ //K1>;
$(".im-cc-products-button , .im-cc-products-qty").hide()
buttonK = '<input type="button" onClick="window.open(\''+urlK+'\')" value="'+text_buttonK+'" style="position:absolute;width:auto;right:0px" />';
$(".im-cc-wrapper-row").append(buttonK)
},3000);//K1<<;
});//K<<;
</script>
<!-- personalizzazione flusso CART x WSx5 by KolAsim -- FINE -->
.
... the code must be pasted in Step_3 in the Properties of the two Special Pages of the cart:
> E-commerce: search
> E-commerce: product sheet
... in this section:
> Step 3 - Map > The 'Page Properties' window > Options in the Expert section >
▪Custom Code: > Before closing the HEAD tag
.
.
ciao
.
@KolAsim: Wenn ich den Code richtig lese, dann erhalten alle Produkte statt eines Warenkorb-Buttons immer den gleichen Kontakt-Link.
Also müsste auch der Code von Axel verwendet werden für Buttons mit unterschiedlichen Links.
... Yes. as requested by Joern ... ciao ...
.