rfros
Forum Replies Created
-
There’s currently no way to hook in and modify the output (nudge to the authors, this option would be much appreciated!) — but if you’re not opposed to modifying the plugin directly, it’s a simple code change:
See https://github.com/wp-plugins/postman-smtp/blob/1.6.23/Postman/Postman-Email-Log/PostmanEmailLogController.php (so
wp-content/plugins/postman-smtp/Postman/Postman-Email-Log/PostmanEmailLogController.php
when you’re FTP’d into your system)Remove lines 141-143 and replace with
print $post->post_content;
So speedy. Thanks, Evan!
Wanted to be sure the code wasn’t intentional in the off chance the revision would introduce other issues ??
Hello, plugin authors!
In version 6.0.4.3, it looks like the update_existing functionality was commented out (see below). Was this by design or an oversight?
- yikes-inc-easy-mailchimp-extender/public/partials/shortcodes/process/process_form_submission_ajax.php
lines 142-143 - yikes-inc-easy-mailchimp-extender/public/partials/shortcodes/process/process_form_submission.php
lines 140-141
// 'update_existing' => $form_settings['optin_settings']['update_existing_user'], 'update_existing' => 0,
(edited for readability)
Forum: Plugins
In reply to: [JSON API] Thumbnail is null.Fix noted here: thumbnails not included for attachment + fix
Forum: Plugins
In reply to: [JSON API] thumbnails not included for attachment fixusing
site_url()
(not
up_upload_dir()
, unfortunately) worked for me — thanks!
Forum: Plugins
In reply to: [JSON API] Thumbnail is null.I am having the same issue: the thumbnail and thumbnail_images properties are always returned blank, no matter which thumbnail_size is part of the request
Forum: Plugins
In reply to: WP Less & Buddypress – less file enqueued, but isn't processedWP Less will not compile the css when called within the wp_enqueue_scripts hook, unfortunately
Forum: Plugins
In reply to: [WP-LESS] my wp_enqueue_style is not recognized by wp-lessThe processing of LESS files happens during the ‘wp’ action hook. In your functions.php file, include the following:
function theme_enqueue_less() { wp_enqueue_style('myCss', get_bloginfo('template_directory').'/assets/css/style.less', array(), '0.7', 'screen, projection'); } add_action('wp','theme_enqueue_less');
(apologies for the slew of edits, I had trouble formatting my code)
Forum: Plugins
In reply to: Help overriding gallery_shortcode default markupfunction fix_gallery_output( $output )
{
$output = preg_replace(“%<br style=.*clear: both.* />%”, “”, $output);
return $output;
}
add_filter(‘the_content’, ‘fix_gallery_output’,11, 1);Note: in wp-includes/media.php, wordpress is inconsistent in it’s use of single and double quotes
- yikes-inc-easy-mailchimp-extender/public/partials/shortcodes/process/process_form_submission_ajax.php