Google Photos embed
Google Photos embed https://wordpress.org/plugins/google-photos-embed/ Using shared short URL of Google Photos, you can embed the image easy to blog. Source
Google Photos embed https://wordpress.org/plugins/google-photos-embed/ Using shared short URL of Google Photos, you can embed the image easy to blog. Source
Here is an example of a Contact Form 7 WordPress plugin configuration integrated with the correct Bootstrap form and button classes. This code may be used as a Contact Form 7 Template, to help you get set up faster. The … Continued
Is your success confirmation message not visible? Seeing this error: Unexpected token S? If you are using the Easy WP SMTP wordpress plugin, you may have an issue with your contact form 7 plugin. If the form is not loading … Continued
WordPress plugin posts 2 posts allows you to use shortcodes like p2p_connected and p2p_related to display connected custom post information. If you want to display the_content() or echo get_the_content() from the connected post(s) in the loop, you need to use … Continued
While using the recurring event feature with the WordPress Plugin Events Calendar Pro, a problem may occur when trying to pull the start date for upcoming RECURRING events. By using $post->ID, the WP plugin will pull the first start date … Continued
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
/** * Fix compatibility issues with The Event Calendar and Posts 2 Posts WordPress Plugins * Issue arrises with how nested select queries function when P2P expects a single column. */ function tribe_to_p2p_pre_get_posts_20121001( $query ){ if(isset($query->_p2p_capture) && $query->_p2p_capture && ($query->query_vars['eventDisplay'] = 'custom') ) { add_filter( 'posts_fields', 'tribe_to_p2p_setupFields_20121001', 20); } else { remove_filter( 'posts_fields', 'tribe_to_p2p_setupFields_20121001', 20); } return $query; } function tribe_to_p2p_setupFields_20121001( $fields ){ global $wpdb; $fields = "{$wpdb->posts}.ID"; return $fields; } add_action( 'pre_get_posts', 'tribe_to_p2p_pre_get_posts_20121001'); |
References: http://tri.be/support/forums/topic/posts-2-posts-connections/
By adding the following filter to the functions.php or custom.php of the child theme, we have enabled custom post types to use Polylang. Adding this filter to the functions.php of my child theme worked for me.
1 2 3 4 |
add_filter('pll_get_post_types', 'my_pll_get_post_types'); function my_pll_get_post_types($types) { return array_merge($types, array('services' => 'services')); } |
My post type was … Continued
WP Favorite Posts plugin causes an error as is and must be updated to work with the current version of Jquery. In your plugin file wp-favorite-posts/wpfp.js you must update .live() function to a .on() function. Jquery .live() is a deprecated … Continued