zagriyen
Forum Replies Created
-
Forum: Plugins
In reply to: [LazyLoad Plugin – Lazy Load Images, Videos, and Iframes] Custom data-URIHi,
Thank youForum: Plugins
In reply to: [Mailgun for WordPress] Mailgun email sending as plain textThe problem was solved with the latest gravityforms version 2.2.1
Gravity Forms v2.2.1 Changelog
– Added filter to allow email TO formatting to be turned on or off. Defaults to off.
– Updated email format so that it defaults to html instead of multipart.
– Fixed a typo in the notification From header.Forum: Plugins
In reply to: [Mailgun for WordPress] Mailgun email sending as plain textthe bug appeared when i started to use a full html template, with partial code like ‘strong’ nothing happened
Forum: Plugins
In reply to: [Mailgun for WordPress] Mailgun email sending as plain text@mailgun sending with the wp_mail, in the plugin the setting is “Use HTTP API YES”
Forum: Plugins
In reply to: [Mailgun for WordPress] Mailgun email sending as plain text@mailgun, I use the mailgun plugin 1.5.8.2, with Gravityforms 2.2
I send a custom notification when a form completed
I passed an HTML template with thegform_notification
filter.
In my mu-plugins i have this to set htmlwp_mail_content_type
add_filter( 'wp_mail_content_type', 'set_html_content_type' ); function set_html_content_type() { return 'text/html'; }
Forum: Plugins
In reply to: [Event Organiser] Disable Venue and categoriefinally, I use this snippet,
function remove_option_venue($options){ unset($options["supports"][3]); return $options; } add_action( 'eventorganiser_options', 'remove_option_venue',10,1 ); function remove_tax_event() { unregister_taxonomy_for_object_type('event-category', 'event'); unregister_taxonomy_for_object_type('event-venue', 'event'); } add_action('init', 'remove_tax_event');
Forum: Plugins
In reply to: [Post Views Count (Support caching plugins!)] Not counting anymore?When you doesn’t display the counter, it doesn’t work
I solve it temporarily by adding this snippet in the template
<div class="bawpvc-ajax-counter" data-id="<?php echo get_the_id();?>" style="display:none;"></div>
Forum: Plugins
In reply to: [Favorites] List user who like a postThe answer here
Forum: Plugins
In reply to: [Favorites] Get user id who like a postawesome thank you!
finally it works
function post_hide_pvc() { remove_meta_box( 'bawpvc_meta_box' , 'post' , 'side' ); } add_action( 'add_meta_boxes', 'post_hide_pvc', 99 );
Forum: Fixing WordPress
In reply to: Use as featured image link not workingyes i tried disabling all plugins, re-upload the wordpress package, and back to the default theme ??
the ” use as featured image ” link don’t workForum: Fixing WordPress
In reply to: how to automatically add taxonomy keyword when a post publishedi tried this too, and it don’t working ??
Forum: Fixing WordPress
In reply to: how to automatically add taxonomy keyword when a post publishedi tried this
wp_set_object_terms($post_id,'test', 'test_taxonomy', false );
but the taxonomy not assigned to the post
Forum: Fixing WordPress
In reply to: wp_set_object_terms problemsame for me, i want add terms to a specific taxonomy and assign this terms to a post_id
Forum: Fixing WordPress
In reply to: how to automatically add taxonomy keyword when a post publishedi found this
// Create the post array $post = array( 'ID' => 5, 'tags_input' => 'foo,bar,baz'); // Update the post wp_update_post($post);
but now how use this with custom taxonomy