dimiro93
Forum Replies Created
-
Forum: Plugins
In reply to: [Calculated Fields Form] Form stopped workingHi!
The plugin version is 5.4.8.2 and you can see the form here:
https://pet-house.e-logistiki.site/animals-ids/ids-myfamily/ids-myfamilybasic/taftotita-basic-military-large/ after you sellect one of the two dropdown options (sorry, the site is in greek)I finally solved the issue by adding the data-no-translation data-no-translation-href to the <a> tags of the email.
So now, it displays the urls based on the visitor’s language.
Hello again,
After some tests, I’ve noticed the following:
In the waitlist-subscribe-emai.php, I’ve used
<?php echo esc_html( $email->object->get_permalink() ); ?>
and the url displays in greek, as it shoud.However, when I change the product link php at the table like below, the link keeps coming with /en/.
<td class=”td xts-tbody-td xts-align-start”>
<a class=”product-link” href=”<?php echo esc_html( $email->object->get_permalink() ); ?>”>
<?php echo esc_html( $email->object->get_name() ); ?>
</a>
</td>
What is the problem?Hello @danieldandu
Thank you for your reply.
I searched the String Translation interface and didn’t find the url I was looking for. However, I found a lot of other product urls containing /en/.
My questions are:
What is their use?
What will happen if I delete them?
How and when are they created?
Also, the en/ product urls are saved greek version and I can’t edit them.Σε ευχαριστώ πολύ και για την βοήθεια και για τις διευκρινήσεις.
Καλησπέρα και πάλι.
Τελικά δούλεψε. Έπρεπε να έχω δει λίγο καλύτερα το documentation…
Ο κώδικας που χρησιμοποίησα είναι αυτός:
// Add SKU in id field for Simple Products
add_filter('dicha_skroutz_feed_custom_product_id', 'bc_skroutz_use_sku_as_product_id', 10, 3);
function bc_skroutz_use_sku_as_product_id($unique_id, $product, $feed_type) {
if (empty($product) || !is_a($product, 'WC_Product')) {
return $unique_id;
}
$sku = $product->get_sku();
if (!empty($sku)) {
return $sku;
}
return $unique_id;
}
// Add SKU in ID field for Variations
add_filter('dicha_skroutz_feed_custom_variation_id', 'bc_skroutz_use_sku_as_variation_id', 10, 4);
function bc_skroutz_use_sku_as_variation_id($variation_id, $variation_obj, $parent_product, $feed_type) {
if (empty($variation_obj) || !is_a($variation_obj, 'WC_Product_Variation')) {
return $variation_id;
}
$sku = $variation_obj->get_sku();
if (empty($sku) && !empty($parent_product) && is_a($parent_product, 'WC_Product')) {
$sku = $parent_product->get_sku();
}
if (!empty($sku)) {
return $sku;
}
return $variation_id;
}Καλησπέρα
Εξαιρετικός! Έκανα την αναβάθμιση και δούλεψε άψογα.
Σε ευχαριστώ πολύ
Καλησπέρα Θοδωρή,
Σε ευχαριστώ πάρα πολύ για την βοήθεια.Α) Το έκανα όπως είπες και δούλεψε αμέσως!
Β) Ναι, θα ενημερώσω τον πελάτη αν θέλει να μεταφέρει τα brands σε ένα σημείο, αλλιώς θα δοκιμάσω το filter που είπες και αν κολλήσω κάπου θα επανέλθω.
Σου στέλνω το zip αρχείο του yith-brands-addon.
Και πάλι σε ευχαριστώ.
Hello,
@autobrochuresnz I didn’t manage to fix the issue and since Google accepted the feed as is, I didn’t give anymore efford.
@superlemon1998 There are about 200 categories. Unfortunatelly, I can’t run any updates or disable plugins to test, since I’m working on a live site.
Forum: Plugins
In reply to: [Discount Rules and Dynamic Pricing for WooCommerce] Multiple available giftsHello @emilywil
Thank you very much for your aswer.
Unfortunatelly, I can’t ask the client for a second paid plugin, so soon. But I’m thinking of adding the gift products as Upsells or related Products and display them on the product page and the cart page.
Forum: Plugins
In reply to: [WooCommerce] Tax rates for different post codesHi @lovingbro, Thank you very much for explaining in detail how the tax rules are calculated.
Forum: Plugins
In reply to: [WooCommerce] Tax rates for different post codesIt did work actually! Thank you very much.
Any ideas why changing thee priority to 1 solved the issue?
Forum: Plugins
In reply to: [WooCommerce] Tax rates for different post codesSo, after making some more tests with the 81103 postcode, here is what I’ve noticed:
1. If I select Pay in store and Store pick up, the tax is 24%
2. If I select Cash on Delivery and any other shipping method, both 17% and 24% taxes are displayed
3. If I select any payment method and any Weight Based Shipping (legacy), both 17% and 24% taxes are displayed
If I test with any other payment or shipment method, I always get the 24% vat.
Both COD and Weigt Based Shipping are Taxable: No
Cash on Delivery https://snipboard.io/NZljEK.jpg
Weight Based Shipping (Legacy) https://snipboard.io/yiNQlD.jpgI’m using the Smart COD for WooCommerce plugin, since I want to add an extra fee to Cash on Delivery. Disabling the plugin, didn’t fix the problem.
Also, changing the GR general tax rule priority from 5 to 2, didn’t make any difference.Forum: Plugins
In reply to: [WooCommerce] Tax rates for different post codesSure,
Here is the Standard rates https://snipboard.io/UhEm1M.jpg
And the Reduced rates https://snipboard.io/hkR6PM.jpgI forgot to add that the double taxes are also displayed on the Cart page. I have also tried with the defaulat theme and I have the same result.
Forum: Plugins
In reply to: [WooCommerce] Tax rates for different post codesHello @shahzeenfarooq ,
The snippet you provided works and now I see the final price as it should be,. Thank you!
However, now I see two tax rules being applied. Here is a screenshot from the checkout https://snipboard.io/gAiTyL.jpg
I’m doing the tests in incognito mode.