woocommerce icon indicating copy to clipboard operation
woocommerce copied to clipboard

Corcel WooCommerce Plugin

Results 11 woocommerce issues
Sort by recently updated
recently updated
newest added

Hello, [corcel/corcel](https://github.com/corcel/corcel) now support Laravel 11 in version 8.0. Can you fix dependency to support laravel 11 too?

Fixed #38 - Removed explicit return types from newFactory() methods. The existing signatures required classes that are not normally loaded by the codebase to be returned preventing these models from...

Test code referenced in Production code explicitly preventing models from being extended or having factories. Order Product Customer Models all define/override newFactory changing the default method signature from hasFactory, explicitly...

This is an automated pull request from [Shift](https://laravelshift.com) to update your package code and dependencies to be compatible with Laravel 11.x. **Before merging**, you need to: - Checkout the `l11-compatibility`...

Vendors own the products, a person may be the author of the product but it belongs to someone else (vendor). use: ```php $vendorId = 1; Product::published() ->whereHas('vendor', fn($query) => $query->where('term_relationships.term_taxonomy_id',...

Hello, I am trying to create a product with a product category and thumbnail (not worked on this yet). I am hoping you can help. How would you recommend doing...

question

I wasn't able to create a `Product` with type `variable` (like you do with [REST API](https://woocommerce.github.io/woocommerce-rest-api-docs/#create-a-product-variation)) and its corresponding product variations based on one or more Attributes/Taxonomies. Is there an...

```php // \App\Models\User class User extends \Corcel\Model\User { use \Corcel\WooCommerce\Traits\HasRelationsThroughMeta; public function products() { return $this ->hasManyThroughMeta(\Corcel\WooCommerce\Model\Product::class, 'prod_users', 'post_ID', 'ID') ->doesntHave('items'); } } ``` Calling `$user->products`, the NOT EXISTS sql...

Is it possible to create new contents (Post, Products, Upload Images) with this extension of corcel?

enhancement
question

Is there any chance to have integration with product_lookup table? (https://developer.woocommerce.com/2019/04/01/performance-improvements-in-3-6/) the use case is, if I updating/adding new product, the product_lookup need to populate/update. if we didn't have synced...

enhancement
help wanted