DecomTeam
Forum Replies Created
-
Forum: Plugins
In reply to: [Giftable for WooCommerce] Gift option in Checkout@jagdishsarma we only support Cart page.
Forum: Plugins
In reply to: [Giftable for WooCommerce] “Number of gifts allowed” is not workinghi @smartoctopus if you read this post again – you will see that Giftable isnt working like that, so the answer is plugin will not work with your use case.
Forum: Plugins
In reply to: [Giftable for WooCommerce] “Number of gifts allowed” doesn’t work properlyhi @kdpatel
– Please read: https://wordpress.org/support/topic/number-of-gifts-allowed-is-not-working/
– you are sharing products/gifts, only way to make it work is to have unique gifts for every unique category, as we dont allow stacking of cats/conditions like that – this plugin isnt good solution for your use case.Forum: Plugins
In reply to: [Giftable for WooCommerce] Hide Gift Product Category from Shopdear @haleekalevitch you can use many actions/hooks to hide all things in WooCommerce (menus, titles, headings, listings) – thats theme customisation part
Forum: Plugins
In reply to: [Giftable for WooCommerce] Hide Gift Product Category from Shophi @haleekalevitch you can create category then exclude that category using a action
woocommerce_product_queryinside your functions.php file.Gist: Here is a code you will need
add_action( 'woocommerce_product_query', 'giftable_custom_pre_get_posts_query' ); function giftable_custom_pre_get_posts_query( $exclude_query ) { if( is_shop() || is_page('or-some-special-page') ) { // set conditions here $tax_query = (array) $exclude_query->get( 'tax_query' ); $tax_query[] = array( 'taxonomy' => 'product_cat', 'field' => 'slug', 'terms' => array( 'exclude', 'gifts' ), // excluded categories 'operator' => 'NOT IN' ); $exclude_query->set( 'tax_query', $tax_query ); } }If they used a Coupon Code (you can check that), then you can change how Giftable calculate things: https://wordpress.org/support/topic/gift-is-not-removed-when-adding-coupon/page/2/#post-10141127
– replace
WC()->cart->subtotalwithWC()->cart->totalingiftable-for-woocommerce/includes/CriteriaAmounts.php@ellis926 there is nothing that
Giftableis doing in that situation, only way for them to order iscoupon codeorre-order from history-> thats default WooCommerce behavior@ellis926
1. Ok
2. Was items lower priced in past ?Hi @ellis926
1. They are using Coupon Codes
2. They are re-ordering from history ?Forum: Plugins
In reply to: [Giftable for WooCommerce] Shortcodes problemHi @jonnyingenious we dont have shortcodes and we only support cart page, maybe try to share showcase (video, screenshots)
Forum: Plugins
In reply to: [Giftable for WooCommerce] Music Player and Downloadable productHi @vcorda Its hard for us to check every plugin, maybe that two plugins are in conflict
– to check things like this you need to enable WordPress Debug, then find trace of conflictsForum: Plugins
In reply to: [Giftable for WooCommerce] How to set up buy two get one freeHi @ellisoncreative we dont have
categories overlapping each other, detailed post is here: Categories stacking/overlapping– To do what you want every Gift Category must have unique gifts in them, no repeating – and thats alot of work for nothing.
There are more amazing extensions on WooCommerce official website, they have Dynamic pricing etc..
Forum: Plugins
In reply to: [Giftable for WooCommerce] remove link from product imageHi @delfniki, its not recommended but you can remove it with some custom JavaScript or CSS like this:
#dgfw-choose-gift .dgfw-gift-link { pointer-events: none !important; }Forum: Plugins
In reply to: [Giftable for WooCommerce] Translate the pluginHi @mstudioil you can use WPML plugin or PoEditor, the .pot file is located in /giftable-for-woocommerce/languages/
Forum: Plugins
In reply to: [Giftable for WooCommerce] Add certain products as a gift product@techgig101 We will try to make you a video how to setup a plugin (but this is something you should already know) – it will be done in next couple of days, but we will not help you with
custom themes, plugins, customizations etc...– only how to setup a Giftable for WooCommerceMinimum Requirements:
– PHP version: 5.6 > (7.x recommended)
– WooCommerce 3.X.X >
– Theme must support AJAX on cart