fellter2
Forum Replies Created
-
Forum: Plugins
In reply to: [Simply Static - The Static Site Generator] SEO questions@reverrainz sorry, but this doesn’t really answer all my questions. And I cannot use Cloudflare.
Forum: Themes and Templates
In reply to: [Blocksy] SelectorsThank you! I need to set font-weight and family the same for everything, that is why!
So the feed only updates daily (when set to daily), even if the products have changed inbetween? For example, a product becomes out of stock but the feed will still display in stock until the hour on the day when the feed is refreshing itself?? That would create problems in Google when data is not synched, especially stock and price…
@supportadtribes Yes, it is set to daily and to only refresh when products are updated/changed. But I was under the impression that means that when a product changes(either stock or manually when you update a product in backend) that the feed would automatically refresh at that time!
Okay, thanks, that seems to be fixed. But what about the other issue? The feed is not updating itself when a product is updated. Only when I update the feed manually…
@supportadtribes no, the free version. That is what I mean – even though these meta fields aren’t used since it is the free version, they are still applied in the database!
Forum: Plugins
In reply to: [WooCommerce] Help adding discount (tax issue)@rainfallnixfig this shouldn’t be too complicated as I already have everything working, js etcc. It is just the part with the fixed discount! Please help me as I have already gone through many, many other forums and threads regarding this.
Thanks!
Forum: Plugins
In reply to: [WooCommerce] Exporting only specific meta fields@rainfallnixfig Thank you, but I dont ant to use an extra plugin for this. I want to use the native Woocommerce exporter.
Forum: Plugins
In reply to: [WooCommerce] Product category widget@neonwebdesign if I use your code, no category is displayed at all in the widget.
Forum: Plugins
In reply to: [WooCommerce] Product category widget@gabrielfuentes Thanks, the “show hirarchy” option is not what I need though. I only need to dislay child categories, and for the “lowest” child categories that don’t have any child categories themselves, the sibling categories should be displayed.Does this make sense?
Forum: Plugins
In reply to: [DHL Shipping Germany for WooCommerce] Creating a return label@shadim Yes, please! Many shops need to create a retur label afterwards!
Forum: Plugins
In reply to: [DHL Shipping Germany for WooCommerce] Creating a return label@shadim Yes. It is not necessary for us to create return lbels for every shipemnt since only 1 % of the customers will return something, and even then, we only offer free return in special cases, so only then we want to create a return label and send it to the customer. It does not make sense to create return labels beforehand “in case if”, especially since we only do it in rare cases for special customers…
Forum: Plugins
In reply to: [DHL Shipping Germany for WooCommerce] Problem COD order amountSorry, my PHP is limited…could you help me with this? In the Woo admin backend the totals are already displayed with 2 decimals (due to my function which I posted in my first post).
Forum: Plugins
In reply to: [DHL Shipping Germany for WooCommerce] Problem COD order amountYes, I added the following:
add_filter('pr_shipping_dhl_label_args', 'modify_order_id_to_number', 10, 2); function modify_order_id_to_number($args, $order_id) { $order = wc_get_order( $order_id ); $args['order_details']['cod_value'] = 2; return $args; }and this works in that now I can at least manually enter two decimals and then create a label (but the automatically entered amount by the plugin is still 6 decimals). Before aka without your function I could not even manually enter two decimals and thus not create a lable at all.
Forum: Plugins
In reply to: [DHL Shipping Germany for WooCommerce] Problem COD order amountThank you, it worked. It still displays 6 digits by default though, so only if I now manually set a two digit amount I can create a label. There is no way to automatically have the correct amount inserted (that is generated by Woo and has two decimals)?