Ответы в темах

Просмотр 15 ответов — с 91 по 105 (всего 130)
  • В тестовом режиме показывает нормально, но при активации дочерней темы выдаёт фатальную ошибку файла functions.php

    В отличие от style.css, файл functions.php дочерней темы не заменяет собой соответствующий файл родительской темы. Вместо этого, он загружается в дополнение к родительскому файлу functions.php. (А именно, прямо перед родительским файлом.)
    Как это понимать? Куда конкретно загружается файл functions.php для дочерней темы? Как понимать — прямо перед родительским файлом?
    Загрузил файл functions.php в папку Twenty Ten Child и выдало критическую ошибку. Может в нём надо что-то изменить?

    Всё получилось, кроме файла functions.php выдаёт критическую ошибку.

    Как я понял, нужно создать дубль папки twentyten (со всеми её файлами как есть), назвать её Twenty Ten Child и изменить в ней только файл style.css на тот, который мы обсуждаем, с шапкой:

    /*
    Theme Name: Twenty Ten Child
    Description: Дочерняя тема для темы Twenty Ten
    Template: twentyten

    */

    @import url(«URLсайта/twentyten/style.css»);

    далее…… Всё как есть сейчас

    html, body, div, span, applet, object, iframe,
    h1, h2, h3, h4, h5, h6, p, blockquote, pre,
    a, abbr, acronym, address, big, cite, code,
    del, dfn, em, font, img, ins, kbd, q, s, samp,
    small, strike, strong, sub, sup, tt, var,
    b, u, i, center,
    dl, dt, dd, ol, ul, li,
    fieldset, form, label, legend,
    table, caption, tbody, tfoot, thead, tr, th, td {
    background: transparent;
    border: 0;
    margin: 0;
    padding: 0;
    vertical-align: baseline;
    }
    body {
    line-height: 1;
    }
    h1, h2, h3, h4, h5, h6 {
    clear: both;
    font-weight: normal;
    }
    ol, ul {
    list-style: none;
    }……………………….. и т.д.

    и всё, дело сделано?

    Опять же, директива @import url(«../twentyten/style.css»); подключает файл стилей родительской темы, а она после обновления будет уже другой?
    Много сказано с одного источника и общими словами, а кто может ответить на мои вопросы?

    Или так? Вместо:
    ——————————————-
    /*
    Theme Name: Twenty Ten
    Theme URI: http://wordpress.org/
    Description: The 2010 theme for WordPress is stylish, customizable, simple, and readable — make it yours with a custom menu, header image, and background. Twenty Ten supports six widgetized areas (two in the sidebar, four in the footer) and featured images (thumbnails for gallery posts and custom header images for posts and pages). It includes stylesheets for print and the admin Visual Editor, special styles for posts in the «Asides» and «Gallery» categories, and has an optional one-column page template that removes the sidebar.
    Author: the WordPress team
    Version: 1.3
    License: GNU General Public License
    License URI: license.txt
    Tags: black, blue, white, two-columns, fixed-width, custom-header, custom-background, threaded-comments, sticky-post, translation-ready, microformats, rtl-language-support, editor-style, custom-menu
    */

    ——————————————————

    Ставим:
    ———————————————————
    /*
    Theme Name: Twenty Ten Child
    Description: Дочерняя тема для темы Twenty Ten
    Author: Ваше имя (любое)
    Template: twentyten
    */

    @import url(«URLсайта/twentyten/style.css»);

    /* =Reset default browser CSS. Based on work by Eric Meyer: http://meyerweb.com/eric/tools/css/reset/index.html
    ————————————————————— */

    html, body, div, span, applet, object, iframe,
    h1, h2, h3, h4, h5, h6, p, blockquote, pre,
    a, abbr, acronym, address, big, cite, code,
    del, dfn, em, font, img, ins, kbd, q, s, samp,
    small, strike, strong, sub, sup, tt, var,
    b, u, i, center,
    dl, dt, dd, ol, ul, li,
    fieldset, form, label, legend,
    table, caption, tbody, tfoot, thead, tr, th, td {
    background: transparent;
    border: 0;
    margin: 0;
    padding: 0;
    vertical-align: baseline;
    }
    body {
    line-height: 1;
    }
    h1, h2, h3, h4, h5, h6 {
    clear: both;
    font-weight: normal;
    }
    ol, ul {
    list-style: none;
    }……………………….. и т.д.
    ————————————————

    Или так?
    ———————————————

    /*
    Theme Name: Twenty Ten Child
    Description: Дочерняя тема для темы Twenty Ten
    Author: Ваше имя (любое)
    Template: twentyten
    */

    @import url(«URLсайта/twentyten/style.css»);

    /*
    Theme Name: Twenty Ten
    Theme URI: http://wordpress.org/
    Description: The 2010 theme for WordPress is stylish, customizable, simple, and readable — make it yours with a custom menu, header image, and background. Twenty Ten supports six widgetized areas (two in the sidebar, four in the footer) and featured images (thumbnails for gallery posts and custom header images for posts and pages). It includes stylesheets for print and the admin Visual Editor, special styles for posts in the «Asides» and «Gallery» categories, and has an optional one-column page template that removes the sidebar.
    Author: the WordPress team
    Version: 1.3
    License: GNU General Public License
    License URI: license.txt
    Tags: black, blue, white, two-columns, fixed-width, custom-header, custom-background, threaded-comments, sticky-post, translation-ready, microformats, rtl-language-support, editor-style, custom-menu
    */

    /* =Reset default browser CSS. Based on work by Eric Meyer: http://meyerweb.com/eric/tools/css/reset/index.html
    ————————————————————— */

    html, body, div, span, applet, object, iframe,
    h1, h2, h3, h4, h5, h6, p, blockquote, pre,
    a, abbr, acronym, address, big, cite, code,
    del, dfn, em, font, img, ins, kbd, q, s, samp,
    small, strike, strong, sub, sup, tt, var,
    b, u, i, center,
    dl, dt, dd, ol, ul, li,
    fieldset, form, label, legend,
    table, caption, tbody, tfoot, thead, tr, th, td {
    background: transparent;
    border: 0;
    margin: 0;
    padding: 0;
    vertical-align: baseline;
    }
    body {
    line-height: 1;
    }
    h1, h2, h3, h4, h5, h6 {
    clear: both;
    font-weight: normal;
    }
    ol, ul {
    list-style: none;
    }……………………….. и т.д.
    ———————————————————

    Или так? Код:
    ———————————————-
    /*
    Theme Name: Twenty Ten Child
    Description: Дочерняя тема для темы Twenty Ten
    Author: Ваше имя (любое)
    Template: twentyten
    */

    @import url(«URLсайта/twentyten/style.css»);

    ————————————————————

    Вставляем в файл style.css и всё? Остальное не надо?

    Так ?
    ————-
    /*
    Theme Name: Twenty Ten Child
    Theme URI: http://wordpress.org/
    Description: The 2010 theme for WordPress is stylish, customizable, simple, and readable — make it yours with a custom menu, header image, and background. Twenty Ten supports six widgetized areas (two in the sidebar, four in the footer) and featured images (thumbnails for gallery posts and custom header images for posts and pages). It includes stylesheets for print and the admin Visual Editor, special styles for posts in the «Asides» and «Gallery» categories, and has an optional one-column page template that removes the sidebar.
    Author: the WordPress team
    Version: 1.3
    Template: twentyten

    Version: 0.1.0
    License: GNU General Public License
    License URI: license.txt
    Tags: black, blue, white, two-columns, fixed-width, custom-header, custom-background, threaded-comments, sticky-post, translation-ready, microformats, rtl-language-support, editor-style, custom-menu
    */

    @import url(«../twentyten/style.css»);
    ————————————

    Если я правильно понял, то нужно создать папку twentyten-child потом Сохраняем код

    /*
    Theme Name: Twenty Ten Child
    Description: Дочерняя тема для темы Twenty Ten
    Author: Ваше имя
    Template: twentyten
    */
    
    @import url("../twentyten/style.css");
    
    #site-title a {
        color: #009900;
    }

    в файл с именем style.css, и кладем его в созданную папку.
    Вопрос: файл style.css я просто копирую и загружаю в папку twentyten-child, а потом в этой же папке его же и редактирую, то есть вставляю выше указанный код со своими параметрами, но куда?
    Вот заголовок моего style.css:

    /*
    Theme Name: Twenty Ten
    Theme URI: http://wordpress.org/
    Description: The 2010 theme for WordPress is stylish, customizable, simple, and readable -- make it yours with a custom menu, header image, and background. Twenty Ten supports six widgetized areas (two in the sidebar, four in the footer) and featured images (thumbnails for gallery posts and custom header images for posts and pages). It includes stylesheets for print and the admin Visual Editor, special styles for posts in the "Asides" and "Gallery" categories, and has an optional one-column page template that removes the sidebar.
    Author: the WordPress team
    Version: 1.3
    License: GNU General Public License
    License URI: license.txt
    Tags: black, blue, white, two-columns, fixed-width, custom-header, custom-background, threaded-comments, sticky-post, translation-ready, microformats, rtl-language-support, editor-style, custom-menu
    */

    И не совсем понятно с

    #site-title a {
        color: #009900;
    }

    Это обязательно?

    Спасибо! Это то, что мне надо.

    Официальное предупреждение. Спасибо! Во вторник буду делать по новой. Отпишусь. На 80% уверен, что виной всему плагин WP File Cache. Это старый плагин, я знаю, но равных ему ещё не придумали и этот некому обновить. Все подобные плагины — детский лепет.
    А на счёт пропадут после обновления темы — я об этом как раз и говорил: нужно ли обновлять тему или достаточно обновить движок, а тема пусть остаётся старая? Может в этой версии вообще другой расклад, например две сайтбара и т.д.? Короче; буду пробовать.

    Я изменял в версии 4.0.1 Шаблон страницы «One column, no sidebar» (onecolumn-page.php), а точнее просто были установлены скрипты партнерок и был установлен плагин про который я писал выше. Когда надумаю попробую отключить все плагины, удалить с шаблона скрипты и обновиться. Полный Кикоз! Мечтаю найти умельца, который сделал бы так, что и любая версия будет пахать пожизненно без всяких обновлений. Меня вполне устраивало то, что было, но дыры… Вот надо над чем работать а не над кнопками. ИМХО.

    Login Lock плагин — что можете сказать? Я согласен обновления нужны, но зачем кардинально менять тему? В 4.1 совсем другая тема и если корректировались шаблоны 4.0.1, то в этой такие страницы пропадают. У меня лично так с one column. Все страницы пропали и главная.

    Судя по всему я такой не один. https://wpmag.ru/2014/wordpress-4-1/

Просмотр 15 ответов — с 91 по 105 (всего 130)