Gerhard Potgieter
Forum Replies Created
-
You will require the WooCommerce Subscriptions extension to take recurring payments https://www.woothemes.com/products/woocommerce-subscriptions/
The integrates automatically with PayPal standard bundled with WooCommerce for taking the payments.
Forum: Plugins
In reply to: [WooCommerce Sold Out Products] Sold Old Only Displays on Product PageHi, can you test this by switching to the twenty thirteen theme and see if this works? The only reason the badge will not show on the archive pages is if your theme is overriding the core template and removed some of the core hooks.
Forum: Plugins
In reply to: [WooCommerce Sold Out Products] Sold Badge not showing on siteNo problem, glad you could get it sorted!
Forum: Plugins
In reply to: [WooCommerce Sold Out Products] Sold out! in 2 languagesHi
The extension is fully translatable, you will require a plugin to handle the multilingual aspect for you such as WPML which can let you set up more then one language and specify translations for each language.
Hi, the extension uses the default content-product.php WooCommerce template, you can override that and add a check in to see if the product is sold out and then not output the
<a href="<?php the_permalink(); ?>">
and closing</a>
tagsThis can be done using css placed in your theme’s custom.css file
.woocommerce span.soldout, .woocommerce-page span.soldout { background: #ccc; }
Forum: Plugins
In reply to: [WooCommerce] Cross-Site Scripting Vulnerability – WARNINGJust a heads up, the issue is only inside the admin panel and unless the person has access to your admin area they cannot trigger the XSS to inject code. It has been patched in 2.0.18 which will go out soon.
Forum: Plugins
In reply to: [WooCommerce Sold Out Products] Sold Badge not showing on siteHi
Your theme seems to be overriding the shop loop template, I suggest contacting your theme developers and have them look to ensure there is a woocommerce_before_shop_loop_item_title action in there as this is used to display the sold out badge on a product.
Forum: Plugins
In reply to: [WooCommerce Sold Out Products] How can i change the button text?Hi
The text will display on both archive pages as well as single pages.
To change the text please add the following code to your theme’s functions.php file
add_filter( 'woocommerce_sold_out_flash', 'wc_custom_sold_out_flash_text' ); function wc_custom_sold_out_flash_text( $text ) { return sprintf( '<span class="soldout">%s</span>', __( 'My New Text', 'wc-sold-out-products' ) ); }
Forum: Plugins
In reply to: [WooCommerce Sold Out Products] The update today 8/14/2013 crashed my site.Hi
Sorry about this, I have just pushed an update live with the fix in for the missing file, please update to 1.0.4.
Hi
I just pushed an update live which fixes the missing file issue, please update to 1.0.4.
Forum: Plugins
In reply to: [WooCommerce Sold Out Products] The update today 8/14/2013 crashed my site.Hey guys, there was a issue while I pushed the new code to www.ads-software.com that resulted in the update to corrupt, I found it out a couple of hours after I pushed the update live. I have since fixed it, just redownload the 1.0.3 version, it should work now.
Forum: Plugins
In reply to: [WooCommerce Sold Out Products] Shortcode's page only show first pageHi John
Yea unfortunately the shortcodes does not support pagination atm, I believe this is planned for WooCommerce 2.1.
Hi Steve
Your theme seems to override the default WooCommerce layout as your images are loaded in the sidebar, unfortunate this will not work, you can get the developers of the theme to assist you with css to perhaps place the badge over the image.
Forum: Plugins
In reply to: [WooCommerce Sold Out Products] Sold out appears behind wootique pricingHi Karen
Please add the following css to your theme’s custom.css file
.woocommerce ul.products li.product .soldout, .woocommerce-page ul.products li.product .soldout { top: 0; right: auto; left: 0; margin: -6px -6px 0 0; z-index: 9999; }