-
One click auto install !
Supreme theme provides one click sample data installation Every Templatic theme comes with a file called custom.css. That file enables you to fairly easy customize the look of your site. Instead of finding specific css files you can just input the class name and new properties in the custom.css file. [templ_msg_box type=”info”] custom.css cannot work if it"s not activated. Activation path differs from theme to theme, here are some pointers on how to activate it [/templ_msg_box] Older Templatic themes (Specialist, Hospitality, etc): wp-admin -> Appearance -> Theme options area -> General Settings -> Customize Your Design Templatic eCommerce themes (eMarket, Emporium, E-commerce, etc) wp-admin -> Shopping Cart -> Design Settings -> General Settings -> Customize Your Design Newer Templatic themes; themes using Templatic framework (DailyDeal, Appointment, GeoPlaces, etc) wp-admin -> Theme Settings -> Basic Settings -> Style and Color Settings -> Use Custom Stylesheet or wp-admin -> Theme Settings -> Basic Settings -> General Settings -> Use Custom Stylesheet Themes powered by Supreme (Nightlife, CoolCart, Catalog, etc) wp-admin -> Appearance -> Themes -> Customize button -> Templatic Theme Settings -> Use custom css After you activate custom.css you can add your new css classes under Appearance -> Editor -> custom.css (it will be listed under stylesheet files in the bottom right corner). If you prefer editing your files using FTP, you should be able to find custom.css in your theme root folder. If you already have the correct code you can paste it in the file and hit “Update File”. If you don"t know the name of the class you have to edit you must use Firebug. If you"re new to Firebug be sure to read our Firebug tutorial -> http://templatic.com/docs/how-to-use-firebug/. Make sure that the code you"re adding/pasting is added below the existing content. In other words, after the */ closing comment tag. If you add your code before that tag it will be commented out and will not work. For more information about custom.css you can watch the following video tutorial. Per saperne di più…
-
Opere con il tema genitore potente supremo
Supreme is a child theme which works on top of our Supreme parent theme which also powers our other recent themes With 3.0 rilascio, WordPress ha introdotto una nuova interfaccia utente per gestire i menu di navigazione, che semplicemente significa che otterrai una nuova pagina con alcuni strumenti su di esso per aggiungere, Elimina, e organizzare i collegamenti. Per utilizzare questa funzione, in primo luogo è necessario attivarlo. Senza attivazione, la pagina di gestione di menu non verrà visualizzate, ma un errore. Se è attualmente inattivo, nel tuo pannello di amministrazione di WordPress, andare in aspetto > menu per vedere l'errore. Come attivare WordPress 3.0 Menu Management Add the following code to the functions.php file of your theme. [php]Se (function_exists('add_theme_support')) { add_theme_support('menu'); } [/php] Mentre add_theme_support('menu'); è sufficiente per attivare la pagina di gestione del Menu, il codice aggiuntivo intorno a questa linea necessario consente di verificare se successive o precedenti versioni di WordPress non ha questa caratteristica quindi sarà semplicemente non fare nulla e non causare nessun errore. Che cosa significa il codice sopra riportato: The code above simply means if the Add Theme Support function exists, use that function to add Menus feature. Se non esiste, non fare nulla. Step by Step Open theme folder and find functions.php. Aprire Functions. php utilizzando blocco note o editor di testo di vostra scelta. Copiare e incollare il codice sopra riportato. File > Save functions.php Where to place the code If the functions.php file of your theme is messy or you don’t really know where to place the code, Vai alla fine del Functions. php e incollare il codice prima: [php]?>[/php] Un punto interrogativo immediatamente accanto una freccia destra segna la fine di un set di codici. L'ultima combinazione di punto interrogativo e freccia destra nel file segna la fine del file. Normalmente, Se si aggiunge qualsiasi codice proprio prima della fine del file, non avreste alcun problema. Nel raro caso che il tema è un file functions. php, ma è vuoto, copiare e incollare il codice seguente: [php]<?php if (function_exists('add_theme_support')) { add_theme_support('menu'); } ?>[/php] Questo set di codici è solo leggermente diverso da quello che erano prima dato. L'ulteriore [php]<?php[/php] e [php]?>[/php] all'inizio e alla fine di questa serie di codici significa PHP di inizio e di fine PHP. È possibile chiudere Functions. php. Per il resto di questo tutorial, non ne hai bisogno. Per saperne di più…