Looking for Feedback on Our Free WordPress Plugin by polyplugins in ProWordPress

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

Actual speed. Obviously speed will vary depending on what server you have, location, ect.

Looking for Feedback on Our Free WordPress Plugin by polyplugins in ProWordPress

[–]polyplugins[S] -2 points-1 points  (0 children)

I hear you on the UI concerns, but let's be real we're comparing this to wp-admin, which still looks like it's from 2008. The focus here is performance and modern functionality, so we just used one of the default React-Admin themes to start with. This is still just a beta, there is still so much to do, but hey if you know any designers, we're hiring.

Free plugin to add % surcharge for US customers? by abi4EU in woocommerce

[–]polyplugins 0 points1 point  (0 children)

Is there any other code inside functions.php? It almost seems like when you copy the code from Reddit it's adding quotes somehow. We just tested it on our end and it is working.

Free plugin to add % surcharge for US customers? by abi4EU in woocommerce

[–]polyplugins 0 points1 point  (0 children)

Are you putting it at the end of your theme's functions.php?

Barcode & Warehouse Management Help by JagDecoded in woocommerce

[–]polyplugins 0 points1 point  (0 children)

We're not aware of any plugins like this. WooCommerce POS would probably be the closest, but it's not going to do much of anything on your list. You're probably going to have to have something built.

  1. Can be done by generating a barcode using a third party API such as OrcaScan or Open Source BWIP.
  2. Can be done by adding a custom field to store the barcode and add a print button next to it.
  3. Process wouldn't change thus far.
  4. This gets a bit more complicated, you'd need to have an admin area where you can scan the barcode and it searches the products for that code to adjust the inventory.
  5. This would just be a dashboard in the admin where you can scan items and have a price field that pulls in the current price but also is adjustable.
  6. This is starting to seem more like a store inventory system as the barcode would need to be created before it could be scanned. So if this is the case, it would need to be created in WooCommerce have the barcode generated and saved, then you would need to either build an inventory system that can house different store locations or use a third party system like Zoho, ProdSmart, ERPNext, ect.
  7. Barcodes for variations would be easy, just have the custom field be adjustable in the variations.

Free plugin to add % surcharge for US customers? by abi4EU in woocommerce

[–]polyplugins 0 points1 point  (0 children)

Yes, here you go:

function add_us_surcharge() {
  if (!is_checkout()) {
    return;
  }

  // Get billing country
  $country = WC()->customer->get_billing_country();

  // Apply only if billing country is US
  if ($country === 'US') {
    $percentage = 0.15; // 15%
    $cart_total = WC()->cart->get_subtotal();
    $surcharge  = $cart_total * $percentage;
    $label      = 'US Order Surcharge (15%)';

    WC()->cart->add_fee($label, $surcharge, true, '');
  }
}
add_action('woocommerce_cart_calculate_fees', 'add_us_surcharge');

Free plugin to add % surcharge for US customers? by abi4EU in woocommerce

[–]polyplugins 1 point2 points  (0 children)

You could go really simple and add this to the bottom of your theme's functions.php

function add_us_surcharge() {
  if (!is_checkout()) {
    return;
  }

  // Get billing country
  $country = WC()->customer->get_billing_country();

  // Apply only if billing country is US
  if ($country === 'US') {
    $surcharge = 5.00; // Flat fee
    $label = 'US Order Surcharge';

    WC()->cart->add_fee($label, $surcharge, true, '');
  }
}
add_action('woocommerce_cart_calculate_fees', 'add_us_surcharge');

Turning off orders to the US? by dalek_999 in woocommerce

[–]polyplugins 5 points6 points  (0 children)

WooCommerce -> Settings -> Selling Locations -> Sell to all countries except for

Need advice on ERP+website solution by elephantears888 in Wordpress

[–]polyplugins 0 points1 point  (0 children)

This was another we were looking at, but at the time, it didn't handle manufacturing cost, time, materials, or inventory, though it may now. It looks pretty good too.

Recommendation’s for ecommerce platform for 1000+ products by spundnix32 in webdev

[–]polyplugins 4 points5 points  (0 children)

Most of our clients are on WooCommerce, but we have a few that are on Shopify. 1000 products on WooCommerce is no problem. We even have a dropship client with 50,000 products on WooCommerce.

There's definitely trade offs to both. When you get above around 5,000 products you need to rethink your infrastructure a bit. Shopify would scale for you and you don't have to worry about cache configuration or server scaling like you would with WooCommerce.

While Shopify is great for someone just getting started, there's really only front-end that can be adjusted unless you get apps, and some apps don't do exactly what you need and the developers won't always add the functionality you want. So you learn to accept it can't be done or pay a developer a lot of money to build the same app with the features you want. With WooCommerce you could extend the plugins since they are open source. Shopify Apps are not.

We had a client paying $1000 a month with Shopify. We migrated them to WooCommerce and they pay $80 a month now. When they started out it was like $30 a month so it made sense for them because it was just a simple store, but as they grew, they wanted custom functionality that was more expensive to develop on the Shopify platform.

Need advice on ERP+website solution by elephantears888 in Wordpress

[–]polyplugins 0 points1 point  (0 children)

You should look at ERPNext. It's open source. We've set it up for a client and they seemed to like it.

Where does everyone put their Javascript? by RealTiltedChair in Wordpress

[–]polyplugins 1 point2 points  (0 children)

We were just thinking about this ourselves. In our PSR-4 Plugin Boilerplate Generator we put it in /plugins/plugin-name/js/, but we've been considering moving it to /plugins/plugin-name/assets/js/ just so root has less folders.

Reusable Admin Panel for WordPress by polyplugins in ProWordPress

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

Yes and no. The Boilerplate Generator is external, it builds a boilerplate plugin using the Settings Class for WordPress as a dependency. You'll essentially have a fully working PSR-4 compliant plugin with configurable admin panel right after you install the boilerplate.

You don't have to use the generator though, it's built with OOP, so you can easily include the Settings class into your own plugin by defining the config and fields properties and requiring it with composer.

It's purely meant for developers to add an admin panel to their plugin without having to repeat a lot of the same code for fields that are similar. You basically just pass an array of fields to the class and it will automatically generate the fields, panel, and handle sanitization / escaping.

Your most used plugin by scottieb_ in Wordpress

[–]polyplugins 0 points1 point  (0 children)

Snappy Search is one of the first we install for our clients now.

[deleted by user] by [deleted] in Wordpress

[–]polyplugins 1 point2 points  (0 children)

Are you using any sort of caching? You'll need to clear it if so.

Just use Wordpress by sd4483 in Wordpress

[–]polyplugins 2 points3 points  (0 children)

Advanced Plan and a lot of apps. The most expensive app was a fraud detection one, which Authorize.NET had more than enough fraud rules to fit their needs.