Giter Site home page Giter Site logo

Comments (6)

tobiasfabian avatar tobiasfabian commented on May 30, 2024 1

Hey @afbora,

I removed the price check for product pages. This should solve your problem. You can try it with 1.6.0-beta.2.

from merx.

tobiasfabian avatar tobiasfabian commented on May 30, 2024

$page->price() has to be a Field. I assume your $page->price() returns a float?

The price method of your product model should look something like this.

// site/models/product.php
class ProductPage extends Page {
// …
    public function price(): \Kirby\Cms\Field
    {
        $price = 999.99;
        return new \Kirby\Cms\Field($this, 'price', $price);
    }
// …
}

Incidentally, I'm working on an improvement to this right now. In a future update floats will be allowed for $page->price(), but for now you have to return a field.

from merx.

afbora avatar afbora commented on May 30, 2024

No, I'm using Field but I've no price field in product.yml. In my application: price = number of items in the package * unit price. So I've to use custom price method.

public function price()
{
  return new Field($this, 'number', (float)($this->unitPrice()->float() * $this->inPackage()->int()));
}

from merx.

tobiasfabian avatar tobiasfabian commented on May 30, 2024

You can try to change the second parameter of field from number to price.

public function price()
{
  return new Field($this, 'price', (float)($this->unitPrice()->float() * $this->inPackage()->int()));
}

from merx.

afbora avatar afbora commented on May 30, 2024

No luck.. ->exists() method checks the parent ->content() method and results:

$page->price(); // 1490
$page->content(); // No exists price field in content

from merx.

tobiasfabian avatar tobiasfabian commented on May 30, 2024

Okay, this is a bug and needs further testing.

A quick solution could be to use two arguments with the $cart->add() method to avoid the ->exists() method.

$cart->add('nice-shoes', []);

from merx.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.