Skip to main content

Home/ Wordpress/ Group items tagged testing development theme

Rss Feed Group items tagged

Clara James

What is A/B Testing in WordPress Themes? - 0 views

  •  
    A/B testing, split testing or bucket testing is a method of marketing testing by which a baseline control sample is compared to a variety of single-variable test samples in order to improve response rates. A classic direct mail tactic, this method has been recently adopted within the interactive space to test tactics such as landing pages, banner ads and emails. The questions of this can happen in WordPress is asked often and rarely answered.
Luciano Ferrer

widgets - Give Editor Access To Sidebar - WordPress Development Stack Exchange - 3 views

  •  
    "The edit_theme_options capability should allow the user to edit the sidebar as described on this page : http://codex.wordpress.org/Appearance_Widgets_SubPanel Code to add to functions.php $role = get_role('editor'); $role->add_cap('edit_theme_options'); Edit: This should work to prevent editor accessing themes or menus function custom_admin_menu() { $user = new WP_User(get_current_user_id()); if (!empty( $user->roles) && is_array($user->roles)) { foreach ($user->roles as $role) $role = $role; } if($role == "editor") { remove_submenu_page( 'themes.php', 'themes.php' ); remove_submenu_page( 'themes.php', 'nav-menus.php' ); } } add_action('admin_menu', 'custom_admin_menu'); I haven't had chance to test this, but it only removes them from the menu they may still be able to access them by typing in the URL directly."
Luciano Ferrer

WordPress › Theme Switch and Preview « WordPress Plugins - 4 views

  •  
    "Allows admins or all visitors to switch the blog theme. Has a restricted preview mode for your clients and includes a widget. Description Installation FAQ Screenshots Changelog Stats The plugin is great for theme development as you can tweak the template online without breaking stuff for visitors. You can also use it for presentations, to show off various templates. There is a widget and a theme cloud shortcode to make this easier."
Vernon Fowler

How to Setup a WordPress Development Environment for Windows | Wptuts+ - 2 views

  •  
    Having a local WordPress test environment is essential for developing themes, plugins, and updating sites. The last thing you want to do is update a live site or install a plugin that completely breaks the site. In this tutorial I'm going to take you through the steps that will give you a local WordPress environment that will allow you to safely and efficiently develop for WordPress.
Luciano Ferrer

WordPress › FakerPress « WordPress Plugins - 1 views

  •  
    "FakerPress is a clean way to generate fake data to your WordPress, great for developers who need testing Whenever you create a new Theme or Plugin you will always need to create custom data to test whether your plugin is working or not, and as Developers ourselves we had this problem quite alot."
Vernon Fowler

How To: Setting Up Wordpress Locally Using XAMPP - 0 views

  •  
    "Developing locally on your own computer or on-site server can save time and provide an easier route for testing and development, and with XAMPP you can do so easily. In this tutorial I will guide you through the complete setup of XAMPP and then installation of WordPress so you can build themes and plugins locally."
Peter Nilsson

How to Install WordPress on a USB Stick Using Instant WordPress - 0 views

  •  
    If you if you regularly test or develop WordPress themes and plugins, it is a big advantage to set up and use a local sever environment. Learn how to use Instant WordPress. 
1 - 8 of 8
Showing 20 items per page