Skip to main content

Home/ Wordpress/ Group items tagged wp-themes

Rss Feed Group items tagged

hicham hicham

Free Wordpress Themes Restaurant Blog Template - 0 views

  •  
    Wordpress Restaurant Menu Web2.0 Theme Template, Come with 2 Columns, web2.0 Theme Template, This theme is compatible with WordPress 2.7, ready for threaded comments come with WP 2.7, and tested on various major web browsers. Besides the integration of widely used function PageNavi, we add a brand new function to this theme - Quotable Commentary! With this function you can select any part of the article, quote it and reply, by just one click, Suitable For Restaurants Blogs Or City/Country Restaurants Directory Blogs, This work is under Creative Commons Attribution-Share Alike 3.0 License, This means you may use it and make any changes you like, However, credit links must remain on footer for legal use, This Theme Was Tested and Work Fine On IE 6.0 & 7.0, Mozilla Firefox, Opera 9.02, Google Chrome and Safari Web Browsers, this Theme Was Tested on The Latest Wordpress Version Also.
kie guy

Hybrid WordPress Theme Framework - 1 views

  •  
    "Hybrid is more than just a WordPress theme. It's about pushing the limits with what WordPress can do. It's a framework. Something you can use to build anything from the smallest family blog to a powerful site that handles thousands of visitors a day." BENEFITS - THE SHORT LIST: * Developed with child themes in mind, so you'll never lose your customizations. * SEO optimized. No need for plugins to handle this anymore. * Theme options that are about content/information. * Templates for everything. * 13 page templates. * Actively developed for WP 2.7 but backward compatible down to 2.5. * 15+ plugins supported within the theme. * Attachment handling like you've never experienced. * Advanced breadcrumbs beyond any other theme. * Ability to run just about any type of site. * And over 20 tutorials to start.
Vernon Fowler

Child Themes « WordPress Codex - 0 views

  • A child theme resides in its own directory in wp-content/themes. The scheme below shows the location of a child theme along with its parent theme (Twenty Twelve) in a typical WordPress directory structure:
  • This directory can contain as little as a style.css file, and as much as any full-fledged WordPress theme contains: style.css (required) functions.php (optional) Template files (optional) Other files (optional)
  • @import url("../twentytwelve/style.css");
  • ...4 more annotations...
  • Note on the @import rule There must be no other CSS rules above the @import rule. If you put other rules above it, it will be invalidated and the stylesheet of the parent will not be imported.
  • Unlike style.css, the functions.php of a child theme does not override its counterpart from the parent. Instead, it is loaded in addition to the parent’s functions.php. (Specifically, it is loaded right before the parent’s file.)
  • But, when creating child themes, be aware that using add_theme_support('post-formats') will override the formats as defined by the parent theme, not add to it.
  • A child theme can override any parental template by simply using a file with the same name.
Luciano Ferrer

WordPress › WP-Members « WordPress Plugins - 2 views

  •  
    "WP-Members™ is a plugin to make your WordPress® blog a membership driven site. Perfect for newsletters, premium content sites, and more! The plugin restricts selected WordPress® content to be viewable by registered site members. Unlike other registration plugins and WordPress® itself, WP-Members™ puts the registration process inline with your content (and thus your branded theme) instead of the native WP login page. WP-Members™ works "out-of-the-box" with no modifications to your theme, but it is scalable for users that want to customize the look and feel, or want to restrict only some content. It is a great tool for sites offering premium content to subscribers, and is adaptable to a variety of applications."
Vernon Fowler

OptionTree | WP.Envato - 12 views

  •  
    Hooray! No need to code theme options for #WordPress themes, thanks to the @OptionTree plugin from @Envato! http://bit.ly/m6Iuqp
  •  
    "What is OptionTree? Theme Options are what make a WordPress Theme truly custom. OptionTree attempts to bridge the gap between developers, designers and end-users by solving the admin User Interface issues that arise when creating a custom theme. Designers shouldn't have to be limited to what they can create visually because their programming skills aren't as developed as they would like. Also, programmers shouldn't have to recreate the wheel for every new project, so in walks OptionTree."
Aline Ohannessian

Free Wordpress Theme Generator No Coding Required! | Design Marketing Advertising Free ... - 7 views

  •  
    Create your very own wordpress theme without touching code! with the awesome free wordpress theme generator :o)
Saurabh Mehta

Just Released WordPress Wedding Theme - TwoGether - 0 views

  •  
    We are so pleased to announce the release of our outstanding WordPress Wedding theme "TwoGether" with modern designs and amazing wedding theme features. Check this out...!!
John Pratt

How to Create Your Own Wordpress Theme in Minutes | JTPRATT's Blogging Mistakes - 0 views

  •  
    This wordpress theme generator can crank out CSS and XHTML WP themes in mere minutes!
Peter Nilsson

VaultPress Customer Stories: WP Daily Themes | VaultPress Blog - 0 views

  •  
    Peter Nilsson started WP Daily Themes to initially write about themes and plugins but, in recent years, it has grown beyond his expectations. 
Luciano Ferrer

16 Beautifully Designed Free Wordpress Themes | Design Marketing Advertising Free Tips - 11 views

  •  
    "16 Beautifully Designed Free WordPress Themes As 2011 comes to an end we'd like to feature some of the coolest and beautifully designed WordPress themes released throughout the year!"
asheikha

18 of the Best WooCommerce Themes For WordPress In 2016 - 0 views

  •  
    Over 18 of the best selling WordPress WooCommerce themes 2016 for WP eCommerce sites. Only premium & top responsive theme 2015, with modern layout designs to build online store awesome.
John Pratt

WordPress Business Theme - 8 views

  •  
    free WordPress Business theme with admin options. Nice sliders and widgets for a WP free theme
Vernon Fowler

WordPress 3.5 And WPDB Prepare - 0 views

  • “Warning: Missing argument 2 for wpdb::prepare()” How do I fix it? If you are seeing an error after upgrading to WordPress 3.5 that says something like this, you need to upgrade your theme. We have fixed this with all of our themes and they are ready to download and re-install from your account page. What if I have customized my theme’s code and don’t want to upgrade? For those of you who have customized your theme’s code and don’t want to do a full upgrade, you’ll need to take a look at the warning message. Here’s a sample error we have fixed from the Biznify Theme: Warning: Missing argument 2 for wpdb::prepare(), called in /home/mintthem/public_html/demo/wp-content/themes/Biznify/products-pagetemplate.php on line 39 and defined in /home/mintthem/public_html/demo/wp-includes/wp-db.php on line 990 Step 1: Open the file it tells you to open. In this case, it is products-pagetemplate.php and Go to the line it refers to. In this case it is line 39 Step 2: Find the code that looks like this: $wpdb->prepare(“SELECT price FROM $table_name WHERE item_number = ‘$item_number’;”) Step 3: Replace $item_number with %d Step 4: Add $item_number after the last quotation mark. Also, make sure to put a comma before it. (notice the comma before $item_number below) Example: $wpdb->prepare(“SELECT price FROM $table_name WHERE item_number = ‘%d‘;”, $item_number)
  • $price = $wpdb->get_var($wpdb->prepare(“SELECT price FROM $table_name WHERE item_number = ‘%d‘;”, $item_number));
  • WordPress 3.5 And WPDB Prepare
John Pratt

» Wordpress Themes - 0 views

  •  
    one of the nicer sets of free premium themes I've seen....
  •  
    very nice set of free premium WP themes
wpthemesfeed

[Download] Maruthi Fitness v1.3 - Fitness Center WP Theme - 0 views

  •  
    Free download Maruthi Fitness v1.3 - Fitness Center WP Theme, This is the latest version which was updated on 12/12/2018 at ThemesRadar
wpthemesfeed

[Download] Dante v3.4.0 - Responsive Multi-Purpose WP Theme - 0 views

  •  
    Free download Dante v3.4.0 - Responsive Multi-Purpose WP Theme, This is the latest version which was updated on 2018-12-13 at ThemesFeed
wpthemesfeed

[Download] Marketify v2.16.0 - Digital Marketplace WP Theme - 0 views

  •  
    Free download Marketify v2.16.0 - Digital Marketplace WP Theme, This is the latest version which was updated on 12/12/2018 at ThemesRadar
wpthemesfeed

Download Route v6.3 - Responsive Multi-Purpose WP Theme Nulled - 0 views

  •  
    Download Route v6.3 - Responsive Multi-Purpose WP Theme , This is the latest version which was updated on December 13, 2018
wpthemesfeed

Download Automotive v9.6 - Car Dealership Business WP Theme Nulled - 0 views

  •  
    Download Automotive v9.6 - Car Dealership Business WP Theme , This is the latest version which was updated on December 12, 2018
kie guy

Four WordPress Theme Frameworks | Zack Live - 0 views

  •  
    Four WP Theme Frameworks: Hybrid, Thematic, WP Framework, Sandbox.
1 - 20 of 206 Next › Last »
Showing 20 items per page