Prodej digitálního obsahu

**Sell Digital Downloads**
„https://wordpress.org/plugins/sell-digital-downloads/“:https://wordpress.org/plugins/sell-digital-downloads/
„http://wp-ecommerce.net/wordpress-isell-easily-sell-digital-downloads-from-your-wordpress-site-1916“:http://wp-ecommerce.net/wordpress-isell-easily-sell-digital-downloads-from-your-wordpress-site-1916

A simple WordPress plugin to sell digital downloads. It integrates flawlessly with PayPal. User interface (UI) of the plugin is very simple to use, I call this plugin for users, not for developers but developers should not feel left behind. I know how painful it is to modify client’s plugins and then find out after a few weeks or months that they had updated the plugin and boom! all changes are lost. There are filters and hooks for almost every important functionality in WP iSell.

*Alternativa*

**Easy Digital Downloads**
„https://wordpress.org/plugins/easy-digital-downloads/“:https://wordpress.org/plugins/easy-digital-downloads/

Easy Digital Downloads is a complete e-commerce solution for selling digital products in a light, performant, and easy to use plugin. Rather that attempting to provide every feature under the sun, Easy Digital Downloads makes selling digital simple and complete by providing just the features you need.

Scroll box

**Dreamgrow Scroll Triggered Box**
„https://wordpress.org/plugins/dreamgrow-scroll-triggered-box/“:https://wordpress.org/plugins/dreamgrow-scroll-triggered-box/

The box is designed to get the attention of the visitors who have engaged with your site. The box triggers on certain event you specify, such as percentage of scroll, reaching an end of the post or comments. This verifies that visitors are engaged with the content and presenting them with a call-to-action.

What do you get with this plugin?

– Getting more subscribers to your newsletter
– Making people share your posts
– Driving visitors deeper with related posts
– Filling out a contact form
– Displaying best offers

– Set the amount of days for the box to stay hidden if visitor closes it
– Design templates to save you time with the appearance of the box
– Fully customization if you want to use your own design (HTML and CSS)
– Control the position of the box (pages, posts, frontpage, left, right)
– When to trigger the box (% of scroll, specific element)

*Alternativa*

**Scroll Triggered Boxes**
„https://wordpress.org/plugins/scroll-triggered-boxes/“:https://wordpress.org/plugins/scroll-triggered-boxes/

– subscribing to your newsletter
– sharing a post
– submitting a contact form
– or something entirely different, you decide!

Really anything is possible, from social media sharing options to sign-up or contact forms. The plugin is designed to work with any other plugin that uses shortcodes.

Ochrana e-mailu před roboty

**CryptX**
„http://wordpress.org/plugins/cryptx/“:http://wordpress.org/plugins/cryptx/

No more SPAM by spiders scanning you site for email adresses. With CryptX you can hide all your email adresses, with and without a mailto-link, by converting them using javascript or UNICODE. You can choose to add a mailto-link to all unlinked email adresses with only one klick at the settings.

*

There is also a core WordPress function for it: antispambot().
The usage of the function is pretty simple:

/—code php

\—

But you can’t use PHP in your content (unless you’re using a plugin for that purpose). To use this function in your content, you can utilize a cool little shortcode like the one below. By using the shortcode above, you can cloak email addresses anywhere in your posts.

/—code php

), $atts ) );
return antispambot( $email );
}
add_shortcode( ‚antispambot‘, ‚antispambot_sc‘ );
// Usage: [antispambot email=“my.cloaked.email.address@gmail.com“]
?>
\—

*

případně

/—code php
function cwc_mail_shortcode( $atts , $content=null ) {
for ($i = 0; $i < strlen($content); $i++) $encodedmail .= "&#" . ord($content[$i]) . ';'; return '‚.$encodedmail.‘‚;
}
add_shortcode(‚mailto‘, ‚cwc_mail_shortcode‘);
\—

Použití shortcode:

[mailto]email@yourdomain.com[/mailto]

Widget pro zobrazení obsahu v záložkách

**WP Tab Widget**
„http://wordpress.org/plugins/wp-tab-widget/screenshots/“:http://wordpress.org/plugins/wp-tab-widget/screenshots/

AJAXified plugin which loads content (recent, popular, comments…) by demand, and thus it makes the plugin incredibly lightweight.

„Demo »“:http://demo.mythemeshop.com/truepixel/

[* http://ps.w.org/wp-tab-widget/assets/screenshot-2.png?rev=881259 *]

[* http://ps.w.org/wp-tab-widget/assets/screenshot-1.png?rev=881259 *]

WordPress návody přímo v administraci

**LifeGuard+**
„http://wplifeguard.com/lifeguard-plugin/“:http://wplifeguard.com/lifeguard-plugin/

The LifeGuard+ Assistant plugin puts WordPress video tutorials right into a WordPress Dashboard. Gone are the days where WordPress developers have to teach each new client how to use WordPress. Now all that needs to be done is install LifeGuard+ Assistant on all new client WordPress projects, and they can learn how to use WordPress by watching our thorough WordPress tutorials!

Galerie – obrázky v mřížce

**Space Boxes**
„Your text to link…“:http://wordpress.org/plugins/space-boxes/

Space Boxes was designed to make building content & media grids quick and painless. Each Space Box set is created solely with a WordPress gallery inserted into a custom post type. When you insert the shortcode [spaceboxes id=XX”] , it will display the title, and caption for each image, if they are provided.

Have 7 images in your gallery? Then you’ll have 7 boxes. Want a lightbox? No problem. Control over the grid? Check! There’s even a portfolio mode to show off images or product screenshots. You can also use the gallery to drag and drop your boxes in the order that you want them displayed.

„Demo »“:http://space-boxes.nickhaskins.co/

Import XML a CSV souborů

**WP All Import**

Import any XML or CSV File to WordPress

Makes it easy to import any XML or CSV file to WordPress. Has a four step import process and an intuitive drag & drop interface that makes complicated import tasks simple and fast.

Can be used for everything from migrating content from a legacy CMS to WordPress to building a store with an affiliate datafeed to displaying live stock quotes or sports scores to building a real estate portal.

Our YouTube channel has many „videos“:http://www.youtube.com/soflyyplugins showing WP All Import in action. „Documentation of advanced features »“:http://www.wpallimport.com/documentation/

Automatický náhledový obrázek

**Auto Post Thumbnail**
„http://wordpress.org/plugins/auto-post-thumbnail/“:http://wordpress.org/plugins/auto-post-thumbnail/

Automatically generate the Post Thumbnail (Featured Thumbnail) from the first image in post or any custom post type only if Post Thumbnail is not set.

If the post thumbnail is already present, the plugin will do nothing. If you don’t want a post thumbnail for some post with images, just add a custom field skip_post_thumb to the post and the plugin will restrain itself from generating post thumbnail. The plugin also provides a Batch Processing capability to generate post thumbnails for already published posts.

**Další pluginy**
„http://beginnersbook.com/2013/09/set-default-thumbnail-featured-fallback-image-wordpress-automatically/“:http://beginnersbook.com/2013/09/set-default-thumbnail-featured-fallback-image-wordpress-automatically/
„http://wpfreesetup.com/fix-featured-image-issues-wordpress-plugins/“:http://wpfreesetup.com/fix-featured-image-issues-wordpress-plugins/

*nebo pomocí funkcí:*

/—code php
ID);
if (!$already_has_thumb) {
$attached_image = get_children( „post_parent=$post->ID&post_type=attachment&post_mime_type=image&numberposts=1“ );
if ($attached_image) {
foreach ($attached_image as $attachment_id => $attachment) {
set_post_thumbnail($post->ID, $attachment_id);
}
}
}
}
add_action(‚the_post‘, ‚autoset_featured‘);
add_action(‚save_post‘, ‚autoset_featured‘);
add_action(‚draft_to_publish‘, ‚autoset_featured‘);
add_action(‚new_to_publish‘, ‚autoset_featured‘);
add_action(‚pending_to_publish‘, ‚autoset_featured‘);
add_action(‚future_to_publish‘, ‚autoset_featured‘);
?>
\—

*alternativně*

/—code php
function set_first_as_featured($attachment_ID){
$post_ID = get_post($attachment_ID)->post_parent;
if(!has_post_thumbnail($post_ID)){
set_post_thumbnail($post_ID, $attachment_ID);
}
}
add_action(‚add_attachment‘, ‚set_first_as_featured‘);
add_action(‚edit_attachment‘, ‚set_first_as_featured‘);
\—

On every upload / edit attachment, function checks if the post already has featured image. If it has not, image in question is set as featured. Every next picture will be ignored (since post already has featured image).

*případně*

/—code php
wp_get_attachment_image_src(get_post_thumbnail_id($post->ID), ‚thumbnail‘ )[0];
\—

„Get The First Image From a Post »“:http://css-tricks.com/snippets/wordpress/get-the-first-image-from-a-post/

Podmíněné zobrazování položek menu

**If Menu**
„http://wordpress.org/plugins/if-menu/“:http://wordpress.org/plugins/if-menu/

Simple plugin that adds extra functionality to Menu Items. The plugin will allow to show or hide menu items based on condition statements (Is single page, User is Logged In, etc).

The management is very easy, each menu item will have a „Enable Conditional Logic“ check, that will allow to select a conditional statement