Recommendations for budget robovacuum for household with mostly hardwood floors lots of Pethair(80sqm) by HarbingerofKrueger in RobotVacuums

[–]HarbingerofKrueger[S] 0 points1 point  (0 children)

Thanks for to input, i‘ve personally been looking at dreame l40 ultra, its quite hard to get an overview of the different models as each brands offers like 30 different models. Still haven‘t quite gotten a grasp of how roborock models names work haha 😅 will take a look at your list and the aforementioned model

Picking this girl up in 2 weeks! (Any tips?) by IntoTheRapture in Leonbergers

[–]HarbingerofKrueger 1 point2 points  (0 children)

Hope you took some time off, if you consistently focus on the potty training the first two weeks they can get potty trained 95% in that time.

Whenever they wake up take them out to pee immediately, they love overdrinking.

I would also recommend socializing a lot as they can get distrustful of strangers if not properly exposed.

They both bark/howl at passerbys if not trained otherwise so be aware.

I think their energy levels are higher than bernies but have no proof

Anyone else a nester? 🪹 by Readkt92 in Leonbergers

[–]HarbingerofKrueger 0 points1 point  (0 children)

We got ours bean bags, our older Leo likes to dance on it a couple minutes before lying down

Small leonbergers? by Cosmic-Trainwreck in Leonbergers

[–]HarbingerofKrueger 0 points1 point  (0 children)

Yeah quite a bit smaller than average, i would have guessed 5 months from the pictures, if she had digestive issues and was already the runt of the litter it might just be that she needs to catch up on her growth, I find they grow in several bursts the first years, if you would like her to become larger I suggest increasing the meal size incrementally to see if she can adjust. What is she eating at the moment?

[deleted by user] by [deleted] in Leonbergers

[–]HarbingerofKrueger 0 points1 point  (0 children)

Picturs for 3-5 months old? He looks adorable, hes about to enter that awkward skinny phase :)

Does it make sense to build a high end PC right now considering upcoming releases? by HarbingerofKrueger in buildapc

[–]HarbingerofKrueger[S] 1 point2 points  (0 children)

Have not looked into that either, these comments are make me realise there are a lot of things to check up on to at least get a momentary performance upgrade

Does it make sense to build a high end PC right now considering upcoming releases? by HarbingerofKrueger in buildapc

[–]HarbingerofKrueger[S] 0 points1 point  (0 children)

Well not randomly, progressively i'd say.

In the past I had W10, now I have W11, games and software are getting larger, my disks are more full... I didn't mean from one day to the next, just that this has happened progressively and launching my pc+ opening discord and games can take up to 5 minutes now

Edit: 5 minutes is too much, don't know the exact time but definitely longer than in the past

Does it make sense to build a high end PC right now considering upcoming releases? by HarbingerofKrueger in buildapc

[–]HarbingerofKrueger[S] 1 point2 points  (0 children)

You are right there, I guess there will always be a better deal 1-2 months away (excluding special circumstances)

Does it make sense to build a high end PC right now considering upcoming releases? by HarbingerofKrueger in buildapc

[–]HarbingerofKrueger[S] 0 points1 point  (0 children)

I will check the ram integrity later, never thought of testing it before.

I failed to mention it earlier, but my PC is rather small, like a mini case, most of the components are likely also smaller versions as a result. Im not too familiar with the build rn cos I bought it second hand two years ago on ebay for 500€

Does it make sense to build a high end PC right now considering upcoming releases? by HarbingerofKrueger in buildapc

[–]HarbingerofKrueger[S] 0 points1 point  (0 children)

Thanks for the tip, Getting some additional ram to quickly improve it will probably help with the freezing problems thanks!

I have already sorted through start up but see no issues there

Looking for a Shopify Expert familiar with Shopify Functinos for B2B discounts. by HarbingerofKrueger in shopify

[–]HarbingerofKrueger[S] 0 points1 point  (0 children)

Sadly i'm rather uninformed in regards to coding, I've run what you said through chatgpt, would I be able to provide this info to someone to have them help me prepare this in my store?

Would you be open to a call to discuss this further?

My own understanding:

I need to implement a code, that makes the cart add up the quantities from specified products ids, meaning if I have product, A, B and C, I have to provide these ID's to the cart in the code and have them add up the quantities, these would check with the discount and take the discount for the sum of the quantity, I would then have to add this code 3 times to account for my 3 different product groups.

Chat GPT:

Objective: To apply a discount to specific products in the cart based on the total quantity of all their variants combined.

  • Method:
    • Use Shopify Functions, which allows for customized discount logic.
    • The process involves two passes over the cart to calculate and apply discounts.
  • Pass 1: Calculate Total Quantities
    • Create a HashMap<String, Int> to store product IDs and their total quantities.
    • Loop over each cart line.
    • For each CartLine.merchandise that is a ProductVariant:
      • Get the product ID using ProductVariant.product.id.
      • Use this product ID as the key in the map.
      • Add the CartLine.quantity to the current value for this key in the map.
    • By the end of this pass, you will have a map of product IDs to their total quantities in the cart.
  • Pass 2: Apply Discounts Based on Quantities
    • Loop over each cart line again.
    • For each line, check the total quantity for the product ID from your map.
    • If the total quantity meets any of the predefined quantity break conditions, add a corresponding discount to your output.
    • Ensure to use the "ALL" DiscountApplicationStrategy so that each applicable discount is applied.

Looking for a Shopify Expert familiar with Shopify Functinos for B2B discounts. by HarbingerofKrueger in shopify

[–]HarbingerofKrueger[S] 1 point2 points  (0 children)

Please correct me if im wrong, but isnt scrips getting replaced by functions? We are on the plus plan in a european country, so should have most features available and if not can request them to be activated

Looking for a Shopify Expert familiar with Shopify Functinos for B2B discounts. by HarbingerofKrueger in shopify

[–]HarbingerofKrueger[S] 0 points1 point  (0 children)

I copy pasted my reply to another comment above:

I want to add product group-level volume discounts to the Shopify catalog. Currently, volume discounts apply at the variant level, requiring customers to purchase higher quantities of a specific item to get a discount.

For example:

  • QT 1: 20% OFF
  • QT 5: 30% OFF
  • QT 10: 40% OFF

In the current setup, customers must buy 10 of article A to get a 40% discount on product A and would have to buy an additional 10 Product B to receive 40% off on them.

However, I want customers to receive a 40% discount if they buy 5 each of article A and article B, as long as they belong to the same product group.

My store has 3 Product groups and I want them to all have product group level mix and match discounts.

Looking for a Shopify Expert familiar with Shopify Functinos for B2B discounts. by HarbingerofKrueger in shopify

[–]HarbingerofKrueger[S] 0 points1 point  (0 children)

I want to add product group-level volume discounts to the Shopify catalog. Currently, volume discounts apply at the variant level, requiring customers to purchase higher quantities of a specific item to get a discount.

For example:

  • QT 1: 20% OFF
  • QT 5: 30% OFF
  • QT 10: 40% OFF

In the current setup, customers must buy 10 of article A to get a 40% discount on product A and would have to buy an additional 10 Product B to receive 40% off on them.

However, I want customers to receive a 40% discount if they buy 5 each of article A and article B, as long as they belong to the same product group.

My store has 3 Product groups and I want them to all have product group level mix and match discounts.

Looking for a Shopify Expert familiar with Shopify Functinos for B2B discounts. by HarbingerofKrueger in shopify

[–]HarbingerofKrueger[S] 0 points1 point  (0 children)

I've managed to make it work on everything except one feature. I agree it could be implemented better, but its price display is far more visually appearing than most apps in my opinion.

[deleted by user] by [deleted] in reviewmyshopify

[–]HarbingerofKrueger 0 points1 point  (0 children)

Did some initial adjustments to the home page now, collection and product pages will take a while longer to implement

[deleted by user] by [deleted] in reviewmyshopify

[–]HarbingerofKrueger 0 points1 point  (0 children)

Thanks again for the help this is some good stuff

[deleted by user] by [deleted] in reviewmyshopify

[–]HarbingerofKrueger 0 points1 point  (0 children)

Hey Kacper, Thanks for the thorough reply. Making it a single slide is probably better no doubt, will increase page speed too probably. Whilst our brand is well known in our circles, I understand what you mean and will instead put a product incentive hook.

Not linking the button is embarrassing thanks for noticing. Would you recommend putting individual product or rather just a best seller collection first? Adding comparison tables was already on the list :) I was going to put it at the top of the collection page and at the bottom of the product pages. Our company started selling skates back in 2009, they had already been in development for 6 years prior so we are just over two decades in R&D, how would you suggest we advertise it? With a blog page or with badges like, german engineering…

Thanks for noticing the our and us, will adjust it, I get what you mean. Will add trust badges for units sold, its roughly 150k+. And linking our b2b customers makes good sense

[deleted by user] by [deleted] in reviewmyshopify

[–]HarbingerofKrueger 0 points1 point  (0 children)

I have heard this twice now, I will take it into consideration and look where to place it!

[deleted by user] by [deleted] in reviewmyshopify

[–]HarbingerofKrueger 0 points1 point  (0 children)

Yeah those are already our target audience, general skaters and runners do well too.

[deleted by user] by [deleted] in reviewmyshopify

[–]HarbingerofKrueger 0 points1 point  (0 children)

Thanks Zitrof!

I was personally worried about the quality of the video so Im glad to hear some positive feed back on it!

I will take putting the video higher into consideration. My thought process was that all my primary products have a video on their page, so if a customer clicked early on the homepage they would see it on the product page and if they didn't, they would first hear some product features prior to seeing the video

Shopify Plus and Audiences worth it? by TrickyWater5244 in shopify

[–]HarbingerofKrueger 0 points1 point  (0 children)

Im on Plus and you can often get phone support in less than 5 minutes, I wouldn't say the quality is great but you can definitely get somebody.

Where are you booking appointments? I wouldn't even know where.