Skip to main content

Home/ Wordpress/ Group items tagged wp-plugin

Rss Feed Group items tagged

Luciano Ferrer

WordPress › WP Migrate DB « WordPress Plugins - 2 views

  •  
    "WP Migrate DB exports your database as a MySQL data dump (much like phpMyAdmin), does a find and replace on URLs and file paths, then allows you to save it to your computer. It is perfect for developers who develop locally and need to move their WordPress site to a staging or production server."
Luciano Ferrer

Redirección de usuarios a páginas personalizadas al registrarse en WordPress - 0 views

  •  
    "// --------------------------------- // Redirección de registro (login) // según el tipo (rol) de usuario. // --------------------------------- function mytheme_custom_login_redirect($redirect_to, $request, $user) { global $user; if ( isset( $user->roles ) && is_array( $user->roles ) ) { // Si es un usuario administrador // le redirigimos a la página de gestión de plugins if ( in_array( 'administrator', $user->roles ) ) return home_url( '/wp-admin/plugins.php' ); // Si es un usuario con permisos de editor // le enviamos a la página de gestión de entradas. elseif ( in_array( 'editor', $user->roles ) ) return home_url( '/wp-admin/edit.php' ); // Y a todos los demás usuarios // les redirigimos a la página de inicio de la web. else return home_url(); } else { return $redirect_to; } } add_filter( 'login_redirect', 'mytheme_custom_login_redirect', 10, 3 );"
Luciano Ferrer

How to Create a School Website with WordPress | Elegant Themes Blog - 3 views

  •  
    Teachpress CoursePress LFE online courses Good LMS - Learning Management System WP Plugin WP Courseware Sensei LearnDash LMS
Espreson Media

WP-Invoice a WordPress Plugin Helps Invoicing Made Easy - Espreson - 0 views

  •  
    WP-Invoice a professional type of WordPress Plug-in helps Invoicing made easy. Who can use this WordPress plug-in? If you are a seller, using WordPress
David McCart

Yoast GA Plugin for WP - Cross Site Scripting Vulnerability - 14 views

Yoast GA Plugin for WP - Cross Site Scripting Vulnerability Version Affected: 3.2.4 (newest) Info: The Google Analytics for WordPress plugin automatically tracks and segments all outbound links f...

XSS wordpress plugin

started by David McCart on 04 Dec 09 no follow-up yet
Tsudo liked it
Vernon Fowler

WP Document Revisions -- Document Management for WordPress - 0 views

  •  
    WP Document Revisions is a document management and version control plugin for the popular content management system, WordPress. Built for time-sensitive and mission-critical projects, teams can collaboratively edit files of any format - text documents, spreadsheets, images, sheet music… anything - all the while, seamlessly tracking the document's progress as it moves through your organization's existing workflow.
Luciano Ferrer

The 6 Best RSS Feed Aggregator Plugins You Need - WPsite.net - 2 views

  •  
    WP RSS Aggregator NewsBoard RSS Feed Parser Pearlbells WP RSS Multi Importer Super RSS Reader FeedWordPress
Luciano Ferrer

Top 5 Advertising Plugins - WPsite.net - 1 views

  •  
    OIO Publisher BuySellAds Google Double Click for Publishers AdSanity WP125 WP Background Takeover (BONUS)
Vernon Fowler

WordPress › WP Maintenance Mode « WordPress Plugins - 0 views

  •  
    "Adds a maintenance-page to your blog that lets visitors know your blog is down for maintenancetime. User with rights for theme-options get full access to the blog including the frontend. Activate the plugin and your blog is in maintenance-mode, works and see the frontend, only registered users with enough rights. You can use a date with a countdown for informations the visitors or set a value and unit for infomrations. Also you can add urls for exlude of maintenance mode."
Andy Brudtkuhl

the Idea Shower » » Wordpress Plugin: Extra Comment Fields - 0 views

  •  
    This Wordpress plugin allows you to add additional fields for users to complete when submitting a comment. The extra data will be saved in the wp database and can be retrieved when showing a post's list of comments. The extra comment variables will show up in the list of comments in your Wordpress admin and are editable through the standard admin comment edit page.
Andy Brudtkuhl

WordPress › WP-SpamFree « WordPress Plugins - 0 views

  •  
    An extremely powerful anti-spam plugin for WordPress that virtually eliminates comment spam, including trackback and pingback spam. Finally, you can enjoy a spam-free WordPress blog! Includes spam-free contact form feature as well.
Vernon Fowler

WordPress FAQ « Weblog Tools Collection - 0 views

  • 10 Optimization Tips
  • Create Your Own Frontpage Slideshow
  • How to Highlight Search Terms with jQuery
  • ...10 more annotations...
  • How To improve basic security on a fresh WordPress install
  • Reduce the Size of Your WordPress Plugin Footprint
  • Using a Native WordPress Gallery
  • Using WordPress For A Private Collaboration Site
  • WordPress FAQ: Audio and Video
  • WordPress FAQ: Blocking Spam Registrations
  • WordPress FAQ: Changing Links and Images After a Move
  • WordPress FAQ: Finding Free WordPress Plugins
  • WordPress FAQ: Moving WordPress
  • WordPress Post-Install Checklist (2) WP SEO Tips: One, More, Time!
  •  
    Here are the FAQs that have been requested by you our readers, or were researched and produced because we faced a problem or liked a suggested solution. We hope that you will benefit from these and will be able to pass on the tips to others that might need them. Please feel free to republish with proper attribution to us. We would love to know what other questions we can help answer for you about WordPress.
Clay Leben

13 Free Plugins to Transform Your WordPress-Based Site - 27 views

  •  
    Good review of 13 plugins for WP including membership management.
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
Clay Leben

digress.it WP plugin - 0 views

  •  
    Use this WP plugin to allow easier commenting on documents. Be sure to screen out spam comments.
Vernon Fowler

WP Install Profiles - 4 views

  •  
    Save your plugins here.  Install them all with one click. "...a simply brilliant idea that will save you tons of time when setting up new WordPress sites" -WPMU.org
Vernon Fowler

How to Include JavaScript and CSS in Your WordPress Themes and Plugins | Wptuts+ - 0 views

  • a selection of common JavaScript libraries are already included that you can use for your JavaScript development
  • be selective about which pages you load your scripts on. If your plugin or theme has a script that only does something on one front-end or admin page, such as the theme’s options page, or maybe a page with a specific widget, you only need to load your script on that page. No point clogging things up and loading scripts on pages where they’re not being used!
  • it’s perfectly possible to prioritise scripts and styles and nominate whether they load in the header or footer from the comfort and safety of your functions.php. The benefit being that your theme / framework will work with a wider range of other plugins / child themes.
  • ...2 more annotations...
  • get_template_directory_uri()
  • get_stylesheet_directory_uri()
« First ‹ Previous 61 - 80 of 250 Next › Last »
Showing 20 items per page