Search found 46 matches

by jossnaz
31 Aug 2016, 23:48
Forum: Laravel package
Topic: Multi-vendor Ecommerce with Aimeos?
Replies: 16
Views: 10657

Re: Multi-vendor Ecommerce with Aimeos?

i think he wants a shop where you as a vendor can create an account and post your own items for sale. A bit like ebay I think but without bidding and only with directly buying.
by jossnaz
30 Aug 2016, 08:51
Forum: Laravel package
Topic: Change of prices creating warning messages
Replies: 2
Views: 2068

Re: Change of prices creating warning messages

probably just disable the plugin? that is, there is a plugin called "ProductPrice" Checks for changed product prices

probably just disable that one?
by jossnaz
30 Aug 2016, 00:46
Forum: Laravel package
Topic: Change of prices creating warning messages
Replies: 2
Views: 2068

Change of prices creating warning messages

i am on 2016.07.2 when running my tax by state plugin i get when accessing the basket: "Please have a look at the prices of the products in your basket" "The price of at least one product has changed in the meantime and it was updated automatically" what is the correct way to avo...
by jossnaz
28 Aug 2016, 04:12
Forum: Laravel package
Topic: Not allowed to access configuration
Replies: 3
Views: 2499

Re: Not allowed to access configuration

seems too restrictive to me.

I hope i can access the config from my plugin... say, to check that the user has set the configuration correctly before proceeding to do stuff.
by jossnaz
27 Aug 2016, 23:05
Forum: Laravel package
Topic: Not allowed to access configuration
Replies: 3
Views: 2499

Not allowed to access configuration

i am trying to write my own config setting and read it from my custom body template. Side question: i have defined my template body like this (shop.php): 'client' => array( 'html' => array( 'checkout' => array( 'standard' => array( 'address' => array( 'standard' => array( 'template-body' => array( _...
by jossnaz
27 Aug 2016, 22:05
Forum: Laravel package
Topic: Tax calculation in the US per state?
Replies: 6
Views: 4803

Re: Tax calculation in the US per state?

look in

ff-laravel/ext/ai-client-html/client/html/templates/common/partials/address-default.php

line:

Code: Select all

if( count( $states ) > 1 )
states is currently

Code: Select all

$states array(1)
→'US' => array(62)
so it fails...

should be >= 1

should i create pull requests for that kind of stuff?
by jossnaz
27 Aug 2016, 21:53
Forum: Laravel package
Topic: Tax calculation in the US per state?
Replies: 6
Views: 4803

Re: Tax calculation in the US per state?

i actually have tried that already and removed the code again when it didn't work. Here is the example shop.php with required fields state and countryid still no state select <?php return array( // // 'routes' => array( // # 'login' => array('middleware' => ['web']), // # 'admin' => array('middlewar...
by jossnaz
26 Aug 2016, 22:13
Forum: Laravel package
Topic: When writing a plugin Base class is not found
Replies: 3
Views: 2586

Re: When writing a plugin Base class is not found

on php 7 this throws errors: if( $this->singleton === null ) { $config = $this->getItem()->getConfig(); <tr><th align='left' bgcolor='#f57900' colspan="5"><span style='background-color: #cc0000; color: #fce94f; font-size: x-large;'>( ! )</span> ErrorException: Undefined property: Aimeos\MS...
by jossnaz
26 Aug 2016, 21:39
Forum: Laravel package
Topic: When writing a plugin Base class is not found
Replies: 3
Views: 2586

Re: When writing a plugin Base class is not found

i guess should be

Code: Select all

  extends \Aimeos\MShop\Plugin\Provider\Factory\Base
  implements \Aimeos\MShop\Plugin\Provider\Factory\Iface
it would be good if someone would have a look at the snippet u guys provide and fix all the things that are outdated.
by jossnaz
26 Aug 2016, 21:37
Forum: Laravel package
Topic: When writing a plugin Base class is not found
Replies: 3
Views: 2586

When writing a plugin Base class is not found

Code: Select all

FatalErrorException in UsaTaxByState.php line 5:
Class 'Aimeos\MShop\Plugin\Provider\Order\Base' not found
from:

https://aimeos.org/docs/Developers/Libr ... et_plugins