• Resolved jtschulik

    (@jtschulik)


    Hi,

    when i use Image-Captions in my Posts, the plugin won’t render wordpress’ “[caption..”-shortcode, but instead will show the shortcode itself in the sent email.

    Is this intended behaviour?
    Is there a workaround?

    Thanks in advance,
    Jakob

Viewing 7 replies - 1 through 7 (of 7 total)
  • Thread Starter jtschulik

    (@jtschulik)

    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…

    andrewmperryman

    (@andrewmperryman)

    @jtschulik
    @icegram

    I have this problem too. As part of the hueman pro theme I use a shortcode called [dropcap]T[/dropcap] and it does not render either in the sent notifications.

    Can you add a fix for this as proposed by @jtschulik..

    Thanks..

    Prathamesh Palve

    (@prathameshp)

    @andrewmperryman @jtschulik

    I have taken a note of it and also notified the lead developer about it. We back get back to you soon on it

    Thread Starter jtschulik

    (@jtschulik)

    Hi,

    any updates on this?

    thanks, Jakob

    Thread Starter jtschulik

    (@jtschulik)

    Or maybe an idea how i could hook into this?

    Me waiting too. Prathamesh Palve please do something.

    Hello,

    We are working on it.

    Will be fixed in upcoming release of Email Subscribers

Viewing 7 replies - 1 through 7 (of 7 total)

The topic ‘[caption] Shortcode’s not “rendering”’ is closed to new replies.