ciaranlyons
Forum Replies Created
-
Forum: Plugins
In reply to: [WCDPUE Lite] Plugin not sending email?Ah, I see. Thanks for letting me know.
Forum: Plugins
In reply to: [WCDPUE Lite] Plugin not sending email?Hi – really sorry. I didn’t see your response to my email.
I have installed a different plugin to see the log of all emails sent, called WP Mail Log.
But now I have a different problem where the number of “Buyers with download access” is showing as 0:
https://www.dropbox.com/s/95symklpa0u4tab/Screenshot%202017-01-30%2015.16.49.png?dl=0
The product has lots of sales, and many of the buyers have created accounts on the website.
Do you know why the count of buyers is showing 0 and how I get around this to sent my customers the updated product?
Thanks,
CiaranI can confirm that this escaping issue still exists in v1.4.6.
I had the identical scenario, trying to use Font Awesome to render a Home icon using the HTML
<i class="icon-home"></i>I fixed it by changing line 265 from
$link_output .= '<a href="' . esc_url( $link['url'] ) . '" rel="v:url" property="v:title">' . esc_html( $link['text'] ) . '</a>';to
$link_output .= '<a href="' . esc_url( $link['url'] ) . '" rel="v:url" property="v:title">' . $link['text'] . '</a>';