Skip to main content

Home/ Wordpress/ Group items tagged settings

Rss Feed Group items tagged

LinkSture Technologies

Emailio Responsive Multipurpose Email Set+Builder - 1 views

  •  
    Emailio is a set of responsive multipurpose email templates with online email builder access to customize the templates as per your email campaign requirements. It includes creative and awesome email templates for various businesses like Ad/web/design agency, baker, fashion, restaurant, online store, travel, wedding and most important one is ALL IN ONE. Emailio inclusions are Photoshop PSD files, Offline HTML / MailChimp / Campaign Monitor template files and free access to our feature rich and easy to use online email builder where you can customize your chosen email template and export it as HTML, MailChimp or Campaign Monitor compatible templates. We have tested all email templates in Litmus test for most of the major email clients and the output was awesome.
Michael Sturgeon

Accesspress Pro - Wordpress Theme - 0 views

  •  
    Instructions for Accesspress Pro installation and settings.
Luciano Ferrer

PHP Code To Exclude a Category From a WordPress Page - 1 views

  •  
    "function exclude_category($query) { if ( $query->is_home() ) { $query->set('cat', '-xx'); } return $query; } add_filter('pre_get_posts', 'exclude_category');"
Luciano Ferrer

How to Change Defaut Product Sorting in WooCommerce - 1 views

  •  
    "The default WooCommerce sorting is by "menu order", which means manually and if a manual product order is not set, the product are going to be displayed alphabetically. Before we continue, let me show you how to sort WooCommerce products manually, maybe it is just what you need."
Vernon Fowler

Post Types « WordPress Codex - 1 views

  • it is better if you prefix your identifier with a short namespace that identifies your plugin, theme or website that implements the custom post type. For example: acme_product or aw_product for products post type used by a hypothetical ACMEWidgets.com website
  • Namespacing your custom post type identifier will not guarantee against conflicts but will certainly minimize their likelihood.
  • Do pay close attention to not having your custom post type identifier exceed 20 characters though, as the post_type column in the database is currently a VARCHAR field of that length.
  • ...6 more annotations...
  • register_post_type( 'acme_product', array( 'labels' => array( 'name' => __( 'Products' ), 'singular_name' => __( 'Product' ) ), 'public' => true, 'has_archive' => true, ) );
  • When you namespace a custom post type identifier and still want to use a clean URL structure, you need to set the rewrite argument of the register_post_type() function. For example, assuming the ACME Widgets example from above:
  • 'rewrite' => array('slug' => 'products'),
  • Note: In some cases, the permalink structure must be updated in order for the new template files to be accessed when viewing posts of a custom post type.
  • single posts of a custom post type will use single-{post_type}.php and their archives will use archive-{post_type}.php where {post_type} is the $post_type argument of the register_post_type() function.
  • In any template file of the WordPress theme system, you can also create new queries to display posts from a specific post type. This is done via the post_type argument of the WP_Query object.
Vernon Fowler

Redirection - Manage 301 redirections without modifying Apache | Urban Giraffe - 0 views

  • Full regular expression support
  • Advanced users can make use of regular expressions to reduce the number of redirections they need to create. A regular expression is basically a pattern that tells the plugin how to match.
  • Remember that if the source URL is a regular expression then you must enable the regular expression option, otherwise Redirection will just treat you source URL as plain text.
  • ...5 more annotations...
  • match the URL only when the user is logged in
  • Redirect to URL by login status This rule allows you to match a URL based upon the user’s WordPress login status. That is, if they are logged into your site.
  • Export all redirections to CSV, XML, or Apache .htaccess files Import Apache .htacces files
  • Site URL – an advanced option which allows you to set the site base URL
  • Ban IPs – prevents certain IPs from accessing your site
  •  
    "Redirection is a WordPress plugin to manage 301 redirections, keep track of 404 errors, and generally tidy up any loose ends your site may have. This is particularly useful if you are migrating pages from an old website, or are changing the directory of your WordPress installation. "
Vernon Fowler

WordPress › WP Super Cache « WordPress Plugins - 1 views

  • After you have enabled the plugin, look for the file "wp-content/cache/.htaccess". If it's not there you must create it. It should read: # BEGIN supercache <IfModule mod_mime.c> <FilesMatch "\.html\.gz$"> ForceType text/html FileETag None </FilesMatch> AddEncoding gzip .gz AddType text/html .gz </IfModule> <IfModule mod_deflate.c> SetEnvIfNoCase Request_URI \.gz$ no-gzip </IfModule> <IfModule mod_headers.c> Header set Cache-Control 'max-age=3, must-revalidate' </IfModule> <IfModule mod_expires.c> ExpiresActive On ExpiresByType text/html A3 </IfModule> `` # END supercache
Vernon Fowler

Jetpack and WordPress SEO * disable OpenGraph in Jetpack * Yoast - 0 views

  • In their last release, they enabled OpenGraph tags by default with no setting to disable it. Even when you already have WordPress SEO enabled and OpenGraph enabled in that. This is making people freak  out everywhere as double OpenGraph tags lead to problems with Google+ and with Facebook.
  • The best solution, honestly, is to install another plugin by Mark Jaquith, called Manual Control for Jetpack. This disables Jetpack automatic activation of new modules. Now you at least have to manually do something for stuff to break on your site when the Jetpack team decides to push new stuff.
  • This particular OpenGraph feature is in the Publicize module, so you’d think you could disable that, but that doesn’t seem to work. Instead, adding this line in your functions.php should fix this particular problem:

    1add_filter( 'jetpack_enable_opengraph', '__return_false', 99 );
Vernon Fowler

Function Reference/wp title « WordPress Codex - 0 views

  • The wp_title() function should not be used by a theme in conjunction with other strings or functions (like concocting with bloginfo('name') ) to set the title because it will render plugins unable to rewrite page titles correctly. The best practice is to use the wp_title filter with a callback function. This method is now a requirement for themes.
Rika Y

WordPress - Comment styling - 0 views

  • The Numbers
  • Setting Commment conditions
Peter Shanks

45+ Free WordPress Themes with Magazine or Grid Layouts - 0 views

  •  
    I've been trying to convince some artist friends of mine that wordpress would solve their website needs, and constantly hearing how 'bloggy' all the wordpress sites look. Hopefully this page will change their minds.
  •  
    some stylish looking wordpress layouts that don't scream "I'm a blog"
anonymous

Group maintenance - 39 views

Hi there group! I just promoted the two most active members to moderators, I obviously don't spend as much time here as they do. I also added a picture, opened up invites, so any member can invit...

maintenance

started by anonymous on 10 Dec 08 no follow-up yet
william x

10 Must Have Hacks For WordPress Development | Spyre Studios - 3 views

  •  
    Building your own wordpress themes will open your eyes to a lot of things, mainly the fact that you'll be retyping a lot of code over and over and over again. So in this post I am going to show you ten wordpress code hacks that you can add to your arsenal that will not only save you a lot of time, but they will also set your themes apart from others who don't come pre built with these types of features.
JR Oakes

How to remove menus in WordPress dashboard - 6 views

  • function remove_menus () { global $menu; $restricted = array(__('Dashboard'), __('Posts'), __('Media'), __('Links'), __('Pages'), __('Appearance'), __('Tools'), __('Users'), __('Settings'), __('Comments'), __('Plugins')); end ($menu); while (prev($menu)){ $value = explode(' ',$menu[key($menu)][0]); if(in_array($value[0] != NULL?$value[0]:"" , $restricted)){unset($menu[key($menu)]);} } } add_action('admin_menu', 'remove_menus');
  •  
    Remove Admin Menu Items
Sue Bride

The Ultimate List of Premium Wordpress Theme Providers | Netchunks - 10 views

  •  
    nothing like a big list of BS affilliate links with no GD content at all. =(
  •  
    Sorry I did not realize they were affilliate links. If you have no design flare or want certain inbuilt functionality premium themes do offer more than free themes.
  •  
    I love premium themes - don't get me wrong. But that list is nothing but a list of affiliate links. There's no examples, no comparisons, no feature set, and not even a disclosure that they are affiliate links (which is illegal in the US).
nguyenbinh91

HostGator Review - Why It Is The Best WordPress Hosting? - 1 views

  •  
    Have you chosen a suitable and good host for your WordPress website yet? I know that you will need a reliable and solid host to set up your new website. But today, there are a lot of hosting companies, and it is difficult for you to determine to choose the best one. That's why this site has been created.
siva kumar

Create a Listing Page in WordPres Site using WP-Property Plugin - 0 views

Creating Listing Page in Word Press website is now so easy by using Plugin called WP-Property (WordPress Powered Real Estate and Property Management). Here are some features using wp-property plugi...

wp-property wordpress plugin

started by siva kumar on 15 Oct 13 no follow-up yet
Kinjal Adesara

15 Good and Affordable Ecommerce WordPress Themes - 0 views

  •  
    Designing an ecommerce store can be tough: there are hundreds of small things that you need to get just right, if you want to get the most out of your website. Thankfully, there are thousands of free and paid themes that you can use to set up your store. The best WordPress ecommerce themes will already have all the important features, and they will also have cross-browser and cross-device functionality.
« First ‹ Previous 101 - 120 of 136 Next ›
Showing 20 items per page