-
HotelBooking theme is Responsive
-
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ù…
-
This wordpress theme is Responsive
The all purpose HotelBooking wordpress theme Works pretty well with mobile devices too ! This tutorial will show how to install Templatic’s Wordpress premium themes. Just follow the below steps. Step 1: Login to Member Area Head over to templatic.com and click on ‘Member Login‘. Enter your User ID and password and click on ‘Login’. Now you will be redirected to your Member’s Area. Click on the theme name and then the download process would start. All the themes which you purchased would be listed here Save the file to your Computer Step 2: Uploading theme After downloading the file, unzip it and a folder would be created with that theme’s name Now we have to upload the theme to wp-content/themes For this we’ll be using a FTP client like ‘FileZilla’ FileZilla is a free software and it can be downloaded from here Now open FileZilla and your hosting provider must have provided you the FTP details. Insert those details like Host, username, password and port and click on ‘Quickconnect’ or simply press ‘Enter’ Navigate to public_html > wp-content > themes (On the server, which is in the right hand side) And in the left hand side, which is your computer, navigate to the path where you have downloaded the theme. Simply right click on the theme’s folder and click on ‘Upload’. That’s it, your theme has been uploaded. Step 3: Activating the theme Now login to your Wordpress Admin area and navigate to Appearance > Themes Here you would be able to see the theme name and screenshot, just click on ‘Activate’. So now your theme is activated and its also populated with some added dummy content to help you get started. If you don’t want that dummy content then click on ‘Yes Delete Please!’. So this is how you can install Templatic’s theme. Now go ahead and customize it according to your needs.2 Still having issues installing the theme? Watch our theme installation video tutorial: http://www.youtube. Per saperne di più…
-
Comes with a MegaMenu widget
Want to display so many pages and categories in your menu ? We have a MegaMenu for you. Hover over Theme Features or Shop menu item to see the mega menu in action. If you’re new to WordPress and website management in general you might be confused when someone says something like ‘Overwrite xxxx.php in your /library/functions folder and xxxx.css in your /skins folder‘. What we mean by that is that you need to connect to your site using an FTP client, navigate to the mentioned folder and overwrite (more on how to do this later). Sometimes we say things like ‘You need to make changes inside xxxx.php located in your theme root around line 100’. What we mean by that is that you need to connect to your site, navigate to that file, download it to your hard drive, edit it and upload it back. Sounds tricky – but it’s far from it. To successfully connect to your server you’ll need 2 things: 1. FTP client FTP client is a program you will use to connect to your server. We’ll be using FileZilla during this tutorial. You can download it here 2. FTP account Most people get an FTP account from their hosting provider. In case you didn’t receive one or you forgot the information contact your hosting provider or create one yourself. In case you’re using cPanel follow this tutorial. If you’re using Plesk as a server management software following this tutorial Connecting to your server 1. Open FileZilla 2. Enter your FTP account details in the boxes at the top left corner. In most cases you can leave ‘Port’ empty 3. If you entered everything correctly the panel on the right should populate with some folders and files. The left panel is showing your hard-disk files How to find my theme files? In the right panel find a public_html folder (or htdocs on Windows servers). Open that folder. If you installed WordPress in the root folder of your site you should see three folders called wp-admin, wp-content and wp-includes. All theme files are located in the wp-content folder; more specifically, the themes folder inside wp-content. A lot of times you’ll hear us say the term theme root. Theme root means you need to navigate to the first/parent folder of your theme. 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ù…
-
Compatibile con bbPress
With Supreme theme you can start a community for your site visitors where all of you can communicate Every once in a while you"ll stumble upon a string that can"t be translated using the .po or language.php file. When that happens you"ll have to find some other way to translate the string – that"s where Agent Ransack jumps in. Agent Ransack è fondamentalmente un programma di ricerca che consente di cercare all'interno di file di testo. What this means is that you can literally input the string you want to translate into Agent Ransack and he"ll give you the exact file and line number where that string is located. Agent Ransack funziona solo su macchine Windows, se possiedi un Mac prova EasyFind, I believe you should get the same results So let"s get started! 1. Scarica l'ultima versione del tuo tema dall'area membri. Salva il tema da qualche parte sul tuo computer, you don"t have to upload it to the server. 2. Scaricare, installare ed eseguire Agent Ransack 3. Quando avvii il programma per la prima volta dovresti vedere qualcosa che assomiglia a questo Per renderlo meno ingombrante fai clic su Utente esperto per disabilitare la visualizzazione utente esperto. Dopodiché fai clic sulla scheda delle opzioni e sotto Contenuto fai clic su Espressione regolare. Questo è necessario affinché i nostri risultati di ricerca siano accurati. 4. Se hai eseguito correttamente i passaggi precedenti, il tuo Agent Ransack dovrebbe ora assomigliare a questo Assicurati che “Sottocartelle di ricerca” è selezionato 5. Per iniziare la ricerca tutto ciò che dobbiamo fare è popolare i campi Testo contenente e Cerca in. In “Contenuto di testo” dobbiamo inserire la stringa che stiamo cercando. In “Guarda dentro” Inseriamo il percorso del nostro tema sul disco rigido. Puoi trovarlo anche cliccando sul pulsante “Sfoglia” pulsante 6. As an example for this tutorial I"ll be using the “Le tariffe di appuntamento per questo servizio sono” stringa dal nostro tema Appuntamento. All'interno del tema la stringa ha questo aspetto: 7. Per individuare quella stringa dobbiamo inserire “Le tariffe di appuntamento per questo servizio sono” all'interno del “Contenuto di testo” campo e percorso al nostro tema Appuntamento all'interno del “Guarda dentro” campo. Una volta inserito tutto, dovrebbe assomigliare a questo Per iniziare la ricerca basta fare clic sul pulsante Start 8. Se tutto è stato inserito correttamente, dovresti vedere qualcosa di simile a questo Ricerca ha trovato tre file in cui è menzionata quella stringa. en_US. Per saperne di più…
-
Optimized design for WooCommerce plugin !
-
Widgetized Home page
The whole home page of Supreme wordpress theme is widget ready ! WordPress Widgets add content and features to your sidebars. Examples are the default widgets that come with WordPress; for post categories, tag clouds, navigation, search, etc. Plugins will often add their own widgets. Widgets were originally designed to provide a simple and easy-to-use way of giving design and structure control of the WordPress Theme to the user, which is now available on properly “widgetized” WordPress Themes to include the header, footer, and elsewhere in the WordPress design and structure. Example of the WordPress Widget Panel Widgets require no code experience or expertise. They can be added, removed, and rearranged on the WordPress Administration Appearance > Widgets panel. The order and placement is set by the WordPress Theme in the functions.php file. Some WordPress Widgets offer customization and options such as forms to fill out, includes or excludes of data and information, optional images, and other customization features. The Widgets SubPanel explains how to use the various Widgets that come delivered with WordPress. Plugins that come bundled with widgets can be found in the WordPress Plugin Directory . The Widget menu will only appear of your Theme has active widgetized sidebars. If it does, you can add widgets by: Go to Appearance > Widgets. Choose a Widget and drag it to the sidebar where you wish it to appear. There might be more than one sidebar option, so begin with the first one. Once in place, WordPress automatically updates the Theme. Preview the site. You should find that the “default” sidebar elements are now gone and only the new addition is visible. Return to the Widgets Panel to continue adding Widgets. To arrange the Widgets within the sidebar or Widget area, click and drag it into place. To customize the Widget features, click the down arrow in the upper right corner to expand the Widget"s interface. To save the Widget"s customization, click Save. To remove the Widget, click Remove or Delete. If you change WordPress Themes, the Widgets will return to the left side of the page in the Widget Archives or Available Widgets list. You may need to add them again and rearrangement depending upon the Theme"s ability to preserve other Theme"s Widgets. Per saperne di più…
-
Usare codici brevi con suprema per rendere i tuoi contenuti sembrano impressionanti
See all the shortcodes you can use on this page Gathering blessed likeness after firmament after. Noi riempire il posto vivente sotto ecco portare. Give tree void gathering stars brought subdue midst also winged air creeping beginning darkness void Itself his heaven without. Terra di mari stessa erano. She"d cattle shall itself fly fruitful upon and his own, il proprietario. Questo tema è compatibile con Templatic Shortcodes plugin che offre una vasta gamma di opzioni di shortcode che può essere utilizzato per rendere il vostro contenuto parlare con il visitatore del sito. Per saperne di più…
-
Aggiornamenti automatici
The Templatic Wordpress Themes Club membership is ideal for any WordPress developer and freelancer that needs access to a wide variety of Wordpress themes. This themes collection saves you hundreds of dollars and also gives you the fantastic deal of allowing you to install any of our themes on unlimited domains. You can see below just a few of our WordPress themes that are included in the club membership GeoPlaces – Business Directory Theme The popular business directory theme that lets you have your very own local business listings directory or an international companies pages directory. This elegant and responsive design theme gives you powerful admin features to run a free or paid local business directory or both. GeoPlaces even has its own integrated events section so you not only get a business directory but an events directory too. Automotive – Car Classifieds Theme A responsive auto classifieds theme that gives you the ability of allowing vehicles submission on free or paid listing packages which you decide on the price and duration. This sleek auto classifieds and car directory theme is also WooCommerce compatible so you can even use part of your site to run as a car spares online store. Details Daily Deal – Deals Theme A powerful Deals theme for WordPress which lets your visitors buy or sell deals on your deals website. Daily Deal is by far the easiest and cheapest way to create a deals site where you can earn money by creating different deals submission price packages but you can also allow free deal submissions. Details Events V2 – Events Directory Theme Launch a successful Events directory portal with this elegant responsive events theme. The theme has many powerful admin features including allowing event organizers to submit events on free or paid payment packages. This theme is simple to setup and you can get your events site up in no time. NightLife – Events Directory Theme A beautifully designed events management theme which is responsive and allows you to run an events website. Allow event organizers free or paid event listing submissions and offer online event registrations. Nightlife is feature-packed with all the features you can expect from an events directory theme. 5 Star – Online Hotel Booking and Reservations Theme A well designed hotel booking theme which is ideal for showcasing and promoting a hotel online in style. Per saperne di più…