Skip to main content

Home/ Wordpress/ Contents contributed and discussions participated by Luciano Ferrer

Contents contributed and discussions participated by Luciano Ferrer

Luciano Ferrer

WordPress › P3 (Plugin Performance Profiler) « WordPress Plugins - 2 views

  •  
    "See which plugins are slowing down your site. This plugin creates a performance report for your site. This plugin creates a profile of your WordPress site's plugins' performance by measuring their impact on your site's load time. Often times, WordPress sites load slowly because of poorly configured plugins or because there are so many of them. By using the P3 plugin, you can narrow down anything causing slowness on your site."
Luciano Ferrer

Is Not Spam - Online Spam checker for newsletters and email marketing - 2 views

  •  
    "IsNotSpam online spam checker was created to help you test email and newsletter content, and alert if it is likely to trigger spam filters."
Luciano Ferrer

WordPress › Scroll Triggered Boxes « WordPress Plugins - 2 views

  •  
    "Scroll Triggered Boxes The best non-obtrusive call-to-action: Scroll Triggered Boxes. Show social media sharing options or sign-up forms in conversion boosting boxes. Scroll Triggered Boxes are boxes that become visible after visitors have scrolled down far enough."
Luciano Ferrer

WordPress › Newsletter Sign-Up « WordPress Plugins - 2 views

  •  
    "Ultimate newsletter plugin. Works with 3rd-party newsletter services like Aweber and YMLP. includes sign-up checkboxes, widget forms and form shortcod This plugin adds various sign-up methods to your WordPress website, like sign-up checkboxes in your comment form and a sign-up form to show in posts, pages or widget areas."
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

Z63 | Vertical align anything with just 3 lines of CSS - 1 views

  •  
    ".element { position: relative; top: 50%; transform: translateY(-50%); }"
Luciano Ferrer

WordPress › WP-Polls « WordPress Plugins - 0 views

  •  
    "Adds an AJAX poll system to your WordPress blog. You can also easily add a poll into your WordPress's blog post/page. WP-Polls is extremely customizable via templates and css styles and there are tons of options for you to choose to ensure that WP-Polls runs the way you wanted. It now supports multiple selection of answers."
Luciano Ferrer

Módulo Prestashop Gratis: WordPress 2 Prestashop | GenWeb - 0 views

  •  
    "Os compartimos un módulo del que hemos programado una primera version para Prestashop: WordPress2Prestashop. Podéis descargarlo y utilizarlo de manera gratuita todos aquellos que queráis implementar una sección de últimas noticias o post recientes en vuestra tienda Prestashop. Este módulo fue implementado para mostrar en la home page de Presta las últimas noticias (y sus thumbnails) de un blog WordPress instalado en una subcarpeta, por ejemplo www.urldeprestashop.com/blog aunque siguiendo los pasos descritos en este post, funcionará con cualquier ruta de WordPress, ya sea dentro o fuera de nuestro dominio. WordPress2Prestashop lee un feed RSS y lo muestra en la parte central de la portada de nuestra tienda."
Luciano Ferrer

Social Networks Auto Poster {SNAP} - Free plugin for WordpressNextScripts - 1 views

  •  
    "Social Networks Auto Poster {SNAP} - Free plugin for WordPress SNAP can publish nicely formatted messages to your Facebook, Twitter, Google+(Google Plus), Blogger, LiveJournal, Delicious, Diigo, Stumbleupon, LinkedIn, Pinterest, Plurk, VKontakte(VK.com), WordPress, and Tumblr accounts. You can reach the most audience and let all your friends, readers and followers about your new post automatically. Plugin works with profiles, business pages, community pages, groups, etc. Plugin makes 100% White Labeled Posts. The main idea behind the plugin is to give you the ability to promote only yourself. Plugin uses your own apps and all posts to all networks come only from you. No "Shared via NextScripts.com" or "Posted by SNAP for WordPress" messages."
Luciano Ferrer

WordPress › Google+ Comments for WordPress « WordPress Plugins - 3 views

  •  
    "Comments Evolved ( formerly Google+ Comments for WordPress ) makes the comment section tabbed seamlessly adding tabs for Comments & More Comments Evolved ( formerly Google+ Comments for WordPress ) makes the comment section tabbed seamlessly adding tabs for G+ Comments, Facebook, Disqus, WordPress Comments, and Trackbacks"
Luciano Ferrer

WordPress › Shortcodes Ultimate « WordPress Plugins - 1 views

  •  
    "Supercharge your WordPress theme with mega pack of shortcodes Shortcodes Ultimate is WordPress plugin that provides mega pack of shortcodes. This is really premium plugin that you can get absolutely for free! With this plugin you can easily create tabs, buttons, boxes, different sliders, responsive videos and much, much more. Turn your free theme to premium in just a few clicks. Using Shortcodes Ultimate you can quickly and easily retrieve premium themes features and display it on your site. See screenshots for more information."
Luciano Ferrer

WordPress › Meta Slider « WordPress Plugins - 5 views

  •  
    "4 sliders in 1! Choose from Nivo Slider, Flex Slider, Coin Slider or Responsive Slides. "
Luciano Ferrer

WordPress › ThirstyAffiliates « WordPress Plugins - 3 views

  •  
    "Earn more with affiliate marketing using ThirstyAffiliates - the professional affiliate link management & link cloaking tool for affiliates. "
Luciano Ferrer

WordPress › Subscribe To Comments Reloaded « WordPress Plugins - 0 views

  •  
    "Subscribe to Comments Reloaded allows commenters to sign up for e-mail notifications of subsequent replies. Subscribe to Comments Reloaded is a robust plugin that enables commenters to sign up for e-mail notification of subsequent entries. The plugin includes a full-featured subscription manager that your commenters can use to unsubscribe to certain posts or suspend all notifications. It solves most of the issues that affect Mark Jaquith's version, using the latest WordPress features and functionality. Plus, allows administrators to enable a double opt-in mechanism, requiring users to confirm their subscription clicking on a link they will receive via email."
Luciano Ferrer

Migración de contenidos de un CMS antiguo a Wordpress | moodstudio - 0 views

  •  
    "A partir de este artículo de Yoast que básicamente nos resolvió el problema, armamos un script en PHP para levantar el contenido de nuestra base de datos, corregir y formatear los datos, y volcarlo en WordPress."
Luciano Ferrer

How to Create Additional Image Sizes in WordPress - 0 views

  •  
    "WordPress has a built-in feature Post Thumbnails aka Featured Images. There is also a built-in function add_image_size() which lets you specify image sizes and give you the option to crop. Using these core functions in your theme can essentially eliminate the need of a third party script like TimThumb in most cases."
Luciano Ferrer

WordPress › WP Smush.it « WordPress Plugins - 0 views

  •  
    "Reduce image file sizes and improve performance using the Smush.it API within WordPress. Yahoo's excellent Exceptional Performance series recommends optimizing images in several lossless ways: stripping meta data from JPEGs optimizing JPEG compression converting certain GIFs to indexed PNGs stripping the un-used colours from indexed images"
Luciano Ferrer

WordPress › WordPress SEO by Yoast « WordPress Plugins - 1 views

  •  
    "Improve your WordPress SEO: Write better content and have a fully optimized WordPress site using the WordPress SEO plugin by Yoast. WordPress out of the box is already technically quite a good platform for SEO, this was true when I wrote my original WordPress SEO article in 2008 and it's still true today, but that doesn't mean you can't improve it further! This plugin is written from the ground up by WordPress SEO consultant and WordPress developer Joost de Valk to improve your site's SEO on all needed aspects. While this WordPress SEO plugin goes the extra mile to take care of all the technical optimization, more on that below, it first and foremost helps you write better content. WordPress SEO forces you to choose a focus keyword when you're writing your articles, and then makes sure you use that focus keyword everywhere."
Luciano Ferrer

WordPress › Widget Logic « WordPress Plugins - 2 views

  •  
    "Widget Logic lets you control on which pages widgets appear using WP's conditional tags. It also adds a 'widget_content' filter. Download Version 0.56 ❤ Favorite Description Installation FAQ Screenshots Other Notes Changelog Stats Support Reviews Developers This plugin gives every widget an extra control field called "Widget logic" that lets you control the pages that the widget will appear on. The text field lets you use WP's Conditional Tags, or any general PHP code."
Luciano Ferrer

WordPress › Advanced Custom Fields « WordPress Plugins - 4 views

  •  
    "Fully customise WordPress edit screens with powerful fields. Boasting a professional interface and a powerfull API, it's a must have for any web dev Advanced Custom Fields is the perfect solution for any wordpress website which needs more flexible data like other Content Management Systems."
« First ‹ Previous 161 - 180 of 314 Next › Last »
Showing 20 items per page