jtschulik
Forum Replies Created
-
Or maybe an idea how i could hook into this?
Hi,
any updates on this?
thanks, Jakob
Found a “hotfix”:
\classes\es-sendmail.php: line 294:
changed this:$post_full = $post->post_content; $post_full = wpautop($post_full);
to this:
$post_full = $post->post_content; $post_full = do_shortcode($post_full); $post_full = wpautop($post_full);
this should probably be filtered to only standard-wordpress-shortcodes ([caption], [gallery],…) though…
I have the same problem on my wordpress:
publish immediately: Mail sent.
publish on draft: no Mail sent.
CRON is not an option ??What am i supposed to “investigate deeply”?
Problem persists with no plugins (except mailbank ofc) activated & Standard TwentySeventeen Theme ??
Same thing happens with the standard wordpress-password-reset/change!
yesyesyes – works like a charm. Thank you!
- Removed inline-css from <table> tags: didn’t change anything.
- Removed all inline-css: no change ??
Forum: Plugins
In reply to: [Download Manager] wordpress tag listing doesnt workyay! works – thank you!
Once more: any Update on this issue? After the last Update i still have several line-breaks, but this time before tables ??
Forum: Plugins
In reply to: [Download Manager] wordpress tag listing doesnt workAny reaction on this? ??
Forum: Plugins
In reply to: [Download Manager] wordpress tag listing doesnt workI have the same problem on my site.
After some googling i found a possible hint:
“this often happens when a theme or plugin has an incorrectly targeted pre_get_posts action. the query modifications intended for the main query are also applied to the query for menu items, causing no items to be returned”
(https://wordpress.stackexchange.com/questions/124574/menu-disappears-on-category-pages)So i searched the Plugin for “pre_get_posts”, found it in “class.Apply.php” line 34, commented out, menu works.
I don’t know yet, if this will call new/other issues plus the next Plugin-Update will overwrite this change – so quiet a bad solution.Maybe you can fix the issue with this hint?
Any Update on this issue?
Forum: Plugins
In reply to: [User Access Manager] default access group for new postsI had the same Problem and there’s a workaround for this. You can do this with jQuery and the “admin_footer-post-new.php” action:
function default_useraccess() { ?> <script> jQuery(document).ready(function() { jQuery('[name="uam_user_groups[]"]').prop('checked', true ); }); </script> <?php } add_action( 'admin_footer-post-new.php', 'default_useraccess', 10, 0 );
This checks ALL user group checkboxes on page load when you add a new post
Thank you!