Odvozená šablona

Zvolené téma obsahuje celkem 38 odpovědí. Do diskuze (15 účastníků) se naposledy zapojil uživatel  jasonarnold a poslední změna je stará 2 roky, 7 měsíců.

Aktuálně je na stránce zobrazeno 19 příspěvků - 21. až 39. (z celkem 39)
  • Autor
    Příspěvky
  • #23776

    Vendulka
    Participant
    Web

    Ono v tom zápisu footer je těch chyb zjevně víc na více místech, po úpravě se ukazuje další chyba na 4. řádku… prostě se do toho evidentně nemám motat.

    Ale přihlašovací údaje jsem Vám zaslala e-mailem

    #23780

    admin
    Keymaster
    Web

    ad 1) Aha, tato navigační lišta je součástí WordPressu a neměla by se nikde natvrdo vypínat prostřednictvím zdrojového kódu. Můžete si ji sama jednoduše vypnout pro svůj uživatelský účet v menu Uživatelé – Profil – Navigační lišta – odškrtnout políčko “Zobrazovat navigační lištu při prohlížení webu”.

    ad 2) Nyní tam zase dáváte všude zbytečné PHP značky:

    echo '<?php _e('Copyright &copy;', TEMPLATE_DOMAIN); ?>'; echo '<?php gmdate(__('Y', TEMPLATE_DOMAIN)); ?>. <?php bloginfo('name');?>';

    Uvedený příklad je špatně, správně to má být takto (pokud už jste v rámci PHP):

    _e('Copyright &copy;', TEMPLATE_DOMAIN); echo gmdate(__('Y', TEMPLATE_DOMAIN)); echo '. '; bloginfo('name');

    Nezkoušel jsem to, tak tam snad není žádná chyba :-) Celá problematika zápisu je ale o dost složitější. Celé mi to ale přijde nakonec trochu zbytečné, protože by mohlo stačit jednoduše využít možnosti nastavení šablony, kde je v Theme Options přímo políčko pro Footer (zápatí) a nemusíte se vůbec hrabat ve zdrojovém kódu šablony?

    ad 4) V menu s názvem “rubrikové menu” (umístěno v oblasti Primary Menu) máte dvě položky (Nezařazené a ochrana Zvířat), které se na webu správně zobrazují. V menu s názvem “hlavní menu” (umístěno v oblasti Top Menu) máte tři položky (O čem se šušká, Testovací pro šablonu a Testovací pro písmo), které se tam také správně zobrazují. Sice to nevypadá kvůli nějaké úpravě hezky a trochu to přeskakuje, ale jinak je to v pořádku. Když aktivujete původní šablonu MesoColumn, tak se to zobrazuje správně, takže je tam asi jen nějaká drobnost…

    ad 5) Je to stejný problém s vlastností text-transform: capitalize;. Tentokrát byla patrně natvrdo změněna v souboru wp-content/themes/mesocolumn/lib/scripts/superfish-menu/css/superfish.css, ale v odvozené šabloně už tato úprava bohužel není…

    #23785

    Vendulka
    Participant
    Web

    Tak u bodu 5) superfishmenu jsem změny prováděla, respektive kopírovala a vypadají následovně:

    }
    .sf-menu {}
    .sf-menu li:before {display:none; }
    #top-navigation .sf-menu a {
    	text-decoration:none;
    	display: block;
    	font-size: 1.35em;
    	padding: 0.75em 1.25em; 
    	text-transform: none;
    		color: #FFF;
    	font-weight: bold !important;
    	margin: 0px;
    	z-index: 9999;  
    }
    
    #main-navigation .sf-menu a {
    	text-decoration:none;
    	display: block;
    	font-size: 1.25em;
    	padding: 0.75em 1em;
    	text-transform: none;
    	color: #333;
    	font-weight: bold !important;
    	margin: 0px;
    	border-bottom: 5px solid #52C0D4;
    }
    
    }
    .sf-menu ul li a {
    	color: #FFF !important;
    	border: 0 none !important;
    	text-decoration: none;
    	font-size: 0.875em !important;
    	font-weight: normal;
    	letter-spacing: normal;
    	text-transform: none;
    	padding: 0.75em 2em !important; 

    Ovšem i u ostatních bodů jsem pořád v pasti. Opravdu je to založeno na faktu, že tomuto dost dobře nerozumím. Ta úprava Footer Menu byla v originále vytvořena kvůli načítání rubrik zleva (šablona je načítá zprava). To ostatní kolem menu je až na divoké zobrazování a špatná velká písmena u rubrik správně. Ostatní, co se týkalo velikosti náhledových obrázků apod. se mi zdařilo.

    #23993

    Vendulka
    Participant
    Web

    Protože jsme toto téma zde nedořešili, díky nečekanému daru v podobě uhrazení práce “ajťáka”, přidám na ukázku upravenou část functions.php, o kterou mne místní admin během konverzace požádal.
    Je to tedy již upravený soubor z child theme šablony MesoColumn

    <?php
    
    if( !function_exists('custom_user_login_redirect') ) {
    function custom_user_login_redirect() {
    $redirect_to = 'http://zivot-s-rs.cz';
    return $redirect_to;
    }
    add_filter('login_redirect','custom_user_login_redirect',10,3);
    }
    
    ?>

    Odvozenou šablonu mám kompletně postavenou (ne mýma rukama) a skvěle funguje ;) Děkuji za čas

    #37576

    JenniferJane
    Participant

    Porovnávat musíte aktuálně použitou verzi šablony. Na webu máte verzi 1.6.3, takže si musíte stáhnout i tuto verzi šablony a s ní soubory na FTP porovnávat (datum změny, velikost souborů, atd). Až vytvoříte odvozenou šablonu (aneb anglicky Child theme), tak budete moci snadno aktualizovat na nejnovější verzi 1.6.4.1. Ale samotný převod asi nebude příliš jednoduchý, došlo patrně ke změnám překladů, načítaných fontů, atd. Ale určitě to zkuste, případně se průběžně ptejte, pokud narazíte na problémy…

    ———————————————————
    Author of Death March kara Hajimaru Isekai Kyousoukyoku Manga

    #37605

    JenniferJane
    Participant

    Na webu máte verzi 1.6.3, takže si musíte stáhnout i tuto verzi šablony a s ní soubory na FTP porovnávat (datum změny, velikost souborů, atd). Až vytvoříte odvozenou šablonu (aneb anglicky Child theme), tak budete moci snadno aktualizovat na nejnovější verzi 1.6.4.1.

    —————————————————————
    Author of Best Offset Smokers on Time4buying

    #38733

    dejanlovren
    Participant

    You have version 1.6.3 on the website, so you must also download this version of the template and compare the files on it with FTP (change date, file size, etc.). Once you have created a derived template (or Child theme in English), you will be able to easily update to the latest version 1.6.4.1.

    —————————————————————
    Owner of Juice Wrld Merchandise

    #38800

    helen45
    Participant

    You have adaptation 1.6.3 on the site, so you should likewise download this variant of the format and contrast the documents on it and FTP (change date, record size, and so on.). When you have made a determined layout (or Child topic in English), you will have the option to effortlessly refresh to the most recent form 1.6.4.1.

    Owner of Bee Necklace

    #38801

    eddyjones
    Participant

    You have transformation 1.6.3 on the website, so you ought to in like manner download this variation of the organization and difference the reports on it and FTP (change date, record size, etc.). At the point when you have made a decided format (or Child theme in English), you will have the alternative to easily revive to the latest structure 1.6.4.1.
    Owner of Machines Ratings

    #38803

    tobyriley
    Participant

    You have version 1.6.3 on the website, so you must also download this version of the template and compare the files on it with FTP (change date, file size, etc.). Once you have created a derived template (or Child theme in English), you will be able to easily update to the latest version 1.6.4.1.

    Owner of Pets Health

    #38804

    ethanhob
    Participant

    You must compare the currently used version of the template. You have version 1.6.3 on the website, so you must also download this version of the template and compare the files on it with FTP (change date, file size, etc.).
    Owner Of Viking Clothing

    #38805

    kimhales
    Participant

    You must compare the currently used version of the template. You have version 1.6.3 on the website, so you must also download this version of the template and compare the files on it with FTP (change date, file size, etc.). Once you have created a derived template (or Child theme in English), you will be able to easily update to the latest version 1.6.4.1. But the conversion itself will probably not be too easy, there have probably been changes in translations, loaded fonts, etc. But be sure to try it, or ask continuously if you run into problems…

    ———————————————————
    Editor at The Coach Training Academy

    #38841

    stephen76
    Participant

    You have change 1.6.3 on the site, so you should in like way download this variety of the association and contrast the reports on it and FTP (change date, record size, and so on) Right when you have made a chosen configuration (or Child subject in English), you will have the option to effortlessly resuscitate to the most recent structure 1.6.4.1.
    Editor at Mud Review

    #38843

    kabakunder
    Participant

    You have adaptation 1.6.3 on the site, so you should likewise download this variant of the format and contrast the documents on it and FTP (change date, record size, and so on.). When you have made a determined layout (or Child topic in English), you will have the option to effortlessly refresh to the most recent form 1.6.4.1.

    Owner of Mac Miller Merchandise

    #38871

    hugoluke
    Participant

    You must compare the currently used version of the template. You have version 1.6.3 on the website, so you must also download this version of the template and compare the files on it with FTP (change date, file size, etc.).
    Owner Of Rankingmom

    #39098

    Neznalek1974
    Participant

    Ahoj můžete mi doporučit šablonu která by se podobala například této stránce ? https://www.tonfly.com/helmet.php?id=9

    #39252

    edgarpaul99
    Participant

    You have change 1.6.3 on the site, so you should in like way download this variety of the association and contrast the reports on it and FTP (change date, record size, and so forth) Right when you have made a chosen arrangement (or Child topic in English), you will have the option to effortlessly restore to the most recent design 1.6.4.1.
    Owner at NF Merch

    #39365

    kabakunder
    Participant

    You must compare the currently used version of the template. You have version 1.6.3 on the website, so you must also download this version of the template and compare the files on it with FTP (change date, file size, etc.).
    Owner Of Parker Clay

    #39378

    jasonarnold
    Participant

    You have change 1.6.3 on the site, so you should in like way download this variety of the association and contrast the reports on it and FTP (change date, record size, and so on) Right when you have made a chosen configuration (or Child subject in English), you will have the option to effortlessly resuscitate to the most recent structure 1.6.4.1.
    Editor at NuVision Health Center

Aktuálně je na stránce zobrazeno 19 příspěvků - 21. až 39. (z celkem 39)

Pokud chcete odpovědět na toto téma, musíte se nejdříve přihlásit.

WordPress – novinky, návody a zajímavosti