]> iEval git - app-web-oof.git/blobdiff - lib/App/Web/Oof.pm
Use subtitle instead of summary as schema.org description
[app-web-oof.git] / lib / App / Web / Oof.pm
index 637f3935180bd294206ca02aec1c83a676c70ed4..ba80d0e4fc6e049110f09f504a9b19ba8161b902 100644 (file)
@@ -77,7 +77,7 @@ sub product_to_schemaorg {
                '@type'    => 'Product',
                name => $data{title},
                image => "/static/fullpics/$data{product}-1.jpg",
-               description => $data{summary},
+               description => $data{subtitle},
                offers => {
                        '@type' => 'Offer',
                        price => ($data{price} =~ s/(..)$/\.$1/r),
@@ -108,7 +108,7 @@ sub form_app {
        my $req = Plack::Request->new($env);
 
        local %highlight = map { $_ => 1 } $req->param('highlight');
-       my $data = $db{$$}->select(products => '*', {}, 'product')->hashes;
+       my $data = $db{$$}->select(products => '*', {stock => {'>', 0}}, 'product')->hashes;
        my $tree = $form->clone;
        $tree->find('tbody')->find('tr')->iter3($data, \&form_table_row);
 
This page took 0.023434 seconds and 4 git commands to generate.