Woo commerce just like a product catalog
I would like to use a Woocommerce plugin for wordpress just like a catalog of products. The reason is, that now the client wants only catalog of products, but in future is possible, that he would like to sell product via website, so I would like to use woocommerce and then, just change some settings and the e-shop will work. Is that possible? Thank you.
wordpress woocommerce
add a comment |
I would like to use a Woocommerce plugin for wordpress just like a catalog of products. The reason is, that now the client wants only catalog of products, but in future is possible, that he would like to sell product via website, so I would like to use woocommerce and then, just change some settings and the e-shop will work. Is that possible? Thank you.
wordpress woocommerce
add a comment |
I would like to use a Woocommerce plugin for wordpress just like a catalog of products. The reason is, that now the client wants only catalog of products, but in future is possible, that he would like to sell product via website, so I would like to use woocommerce and then, just change some settings and the e-shop will work. Is that possible? Thank you.
wordpress woocommerce
I would like to use a Woocommerce plugin for wordpress just like a catalog of products. The reason is, that now the client wants only catalog of products, but in future is possible, that he would like to sell product via website, so I would like to use woocommerce and then, just change some settings and the e-shop will work. Is that possible? Thank you.
wordpress woocommerce
wordpress woocommerce
asked Nov 22 '18 at 4:57
MegoSoftMegoSoft
909
909
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Yes, its very possible. The easiest way to do this is to create all of the products on WooCommerce as you normally would, and set no price for the products. If a product has no price, it will not be purchasable, but will still be displayed on the shop. It basically creates for you, a catalogue.
Once you're ready to sell the items, all you need to do is add a price.
Edit:
Add this to your functions.php
remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart');
add_filter( 'woocommerce_is_purchasable', false );
You may also need to make changes to your css to hide certain things, it depends on your theme.
Of course, but there will be still things like cart, add to cart button etc? I found a plugin YITH woocommerce catalogue, seems it works OK
– MegoSoft
Nov 22 '18 at 5:23
I've edited the question to include specific tweaks I've done on my own sites.
– Ryan Kozak
Nov 22 '18 at 5:33
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53424141%2fwoo-commerce-just-like-a-product-catalog%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Yes, its very possible. The easiest way to do this is to create all of the products on WooCommerce as you normally would, and set no price for the products. If a product has no price, it will not be purchasable, but will still be displayed on the shop. It basically creates for you, a catalogue.
Once you're ready to sell the items, all you need to do is add a price.
Edit:
Add this to your functions.php
remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart');
add_filter( 'woocommerce_is_purchasable', false );
You may also need to make changes to your css to hide certain things, it depends on your theme.
Of course, but there will be still things like cart, add to cart button etc? I found a plugin YITH woocommerce catalogue, seems it works OK
– MegoSoft
Nov 22 '18 at 5:23
I've edited the question to include specific tweaks I've done on my own sites.
– Ryan Kozak
Nov 22 '18 at 5:33
add a comment |
Yes, its very possible. The easiest way to do this is to create all of the products on WooCommerce as you normally would, and set no price for the products. If a product has no price, it will not be purchasable, but will still be displayed on the shop. It basically creates for you, a catalogue.
Once you're ready to sell the items, all you need to do is add a price.
Edit:
Add this to your functions.php
remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart');
add_filter( 'woocommerce_is_purchasable', false );
You may also need to make changes to your css to hide certain things, it depends on your theme.
Of course, but there will be still things like cart, add to cart button etc? I found a plugin YITH woocommerce catalogue, seems it works OK
– MegoSoft
Nov 22 '18 at 5:23
I've edited the question to include specific tweaks I've done on my own sites.
– Ryan Kozak
Nov 22 '18 at 5:33
add a comment |
Yes, its very possible. The easiest way to do this is to create all of the products on WooCommerce as you normally would, and set no price for the products. If a product has no price, it will not be purchasable, but will still be displayed on the shop. It basically creates for you, a catalogue.
Once you're ready to sell the items, all you need to do is add a price.
Edit:
Add this to your functions.php
remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart');
add_filter( 'woocommerce_is_purchasable', false );
You may also need to make changes to your css to hide certain things, it depends on your theme.
Yes, its very possible. The easiest way to do this is to create all of the products on WooCommerce as you normally would, and set no price for the products. If a product has no price, it will not be purchasable, but will still be displayed on the shop. It basically creates for you, a catalogue.
Once you're ready to sell the items, all you need to do is add a price.
Edit:
Add this to your functions.php
remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart');
add_filter( 'woocommerce_is_purchasable', false );
You may also need to make changes to your css to hide certain things, it depends on your theme.
edited Nov 22 '18 at 5:34
answered Nov 22 '18 at 5:22
Ryan KozakRyan Kozak
69651218
69651218
Of course, but there will be still things like cart, add to cart button etc? I found a plugin YITH woocommerce catalogue, seems it works OK
– MegoSoft
Nov 22 '18 at 5:23
I've edited the question to include specific tweaks I've done on my own sites.
– Ryan Kozak
Nov 22 '18 at 5:33
add a comment |
Of course, but there will be still things like cart, add to cart button etc? I found a plugin YITH woocommerce catalogue, seems it works OK
– MegoSoft
Nov 22 '18 at 5:23
I've edited the question to include specific tweaks I've done on my own sites.
– Ryan Kozak
Nov 22 '18 at 5:33
Of course, but there will be still things like cart, add to cart button etc? I found a plugin YITH woocommerce catalogue, seems it works OK
– MegoSoft
Nov 22 '18 at 5:23
Of course, but there will be still things like cart, add to cart button etc? I found a plugin YITH woocommerce catalogue, seems it works OK
– MegoSoft
Nov 22 '18 at 5:23
I've edited the question to include specific tweaks I've done on my own sites.
– Ryan Kozak
Nov 22 '18 at 5:33
I've edited the question to include specific tweaks I've done on my own sites.
– Ryan Kozak
Nov 22 '18 at 5:33
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53424141%2fwoo-commerce-just-like-a-product-catalog%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown