View | Details | Raw Unified | Return to bug 33317
Collapse All | Expand All

(-)a/installer/data/mysql/mandatory/sysprefs.sql (+1 lines)
Lines 477-482 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
477
('OpacMaintenanceNotice','','','A user-defined block of HTML to appear on screen when OpacMaintenace is enabled','Textarea'),
477
('OpacMaintenanceNotice','','','A user-defined block of HTML to appear on screen when OpacMaintenace is enabled','Textarea'),
478
('OpacMaxItemsToDisplay','50','','Max items to display at the OPAC on a biblio detail','Integer'),
478
('OpacMaxItemsToDisplay','50','','Max items to display at the OPAC on a biblio detail','Integer'),
479
('OpacMetaDescription','','','This description will show in search engine results (160 characters).','Textarea'),
479
('OpacMetaDescription','','','This description will show in search engine results (160 characters).','Textarea'),
480
('OpacMetaRobots','','','Improve search engine crawling.','Textarea'),
480
('OPACMySummaryHTML','','70|10','Enter the HTML that will appear in a column on the \'my summary\' and \'my checkout history\' tabs when a user is logged in to the OPAC. Enter {BIBLIONUMBER}, {TITLE}, {AUTHOR}, or {ISBN} in place of their respective variables in the HTML. Leave blank to disable.','Textarea'),
481
('OPACMySummaryHTML','','70|10','Enter the HTML that will appear in a column on the \'my summary\' and \'my checkout history\' tabs when a user is logged in to the OPAC. Enter {BIBLIONUMBER}, {TITLE}, {AUTHOR}, or {ISBN} in place of their respective variables in the HTML. Leave blank to disable.','Textarea'),
481
('OpacNewsLibrarySelect','0','','Show selector for branches on OPAC news page','YesNo'),
482
('OpacNewsLibrarySelect','0','','Show selector for branches on OPAC news page','YesNo'),
482
('OpacNoItemTypeImages','0',NULL,'If ON, disables itemtype images in the OPAC','YesNo'),
483
('OpacNoItemTypeImages','0',NULL,'If ON, disables itemtype images in the OPAC','YesNo'),
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/opac.pref (+4 lines)
Lines 66-71 OPAC: Link Here
66
            - "This description will show in search engine results (160 characters)."
66
            - "This description will show in search engine results (160 characters)."
67
            - pref: OpacMetaDescription
67
            - pref: OpacMetaDescription
68
              type: textarea
68
              type: textarea
69
        -
70
            - "Improve search engine crawling."
71
            - pref: OpacMetaRobots
72
              type: textarea
69
        -
73
        -
70
            - By default, show bibliographic records
74
            - By default, show bibliographic records
71
            - pref: BiblioDefaultView
75
            - pref: BiblioDefaultView
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/includes/doc-head-close.inc (-1 / +3 lines)
Lines 8-13 Link Here
8
[% IF ( Koha.Preference('OpacMetaDescription') ) %]
8
[% IF ( Koha.Preference('OpacMetaDescription') ) %]
9
    <meta name="description" content="[% Koha.Preference('OpacMetaDescription') | html %]" />
9
    <meta name="description" content="[% Koha.Preference('OpacMetaDescription') | html %]" />
10
[% END %]
10
[% END %]
11
[% IF ( Koha.Preference('OpacMetaRobots') ) %]
12
    <meta name="robots" content="[% Koha.Preference('OpacMetaRobots') | html %]" />
13
[% END %]
11
<link rel="shortcut icon" href="[% IF ( Koha.Preference('OpacFavicon') ) %][% Koha.Preference('OpacFavicon') | url %][% ELSE %][% interface | url %]/[% theme | url %]/images/favicon.ico[% END %]" type="image/x-icon" />
14
<link rel="shortcut icon" href="[% IF ( Koha.Preference('OpacFavicon') ) %][% Koha.Preference('OpacFavicon') | url %][% ELSE %][% interface | url %]/[% theme | url %]/images/favicon.ico[% END %]" type="image/x-icon" />
12
<link rel="apple-touch-icon" href="[% IF ( Koha.Preference('OpacFavicon') ) %][% Koha.Preference('OpacFavicon') | url %][% ELSE %][% interface | url %]/[% theme | url %]/images/favicon.ico[% END %]" type="image/x-icon" />
15
<link rel="apple-touch-icon" href="[% IF ( Koha.Preference('OpacFavicon') ) %][% Koha.Preference('OpacFavicon') | url %][% ELSE %][% interface | url %]/[% theme | url %]/images/favicon.ico[% END %]" type="image/x-icon" />
13
[% IF ( bidi ) %]
16
[% IF ( bidi ) %]
14
- 

Return to bug 33317