Julian
Forum Replies Created
-
Hello @atvrequis,
If there is a problem with the header image, you can use this hook to apply your own CSS.
As for the Wordfence E-Mails, we are aware of the issue, we will take another look at it and possibly deactivate styling for Wordfence emails in a future update.
If you have any further issues with the e-mails, please let me know.Best regards
JulianForum: Fixing WordPress
In reply to: Block Theme Patterns not loadingThank you very much for the input. I was not aware of the changes made to caching!
Best regards
JulianHello Anca,
I have changed my review, but as I consider a quick support response, or acknowledgement of a problem as quite important, I can not give a five-star review. Even though I appreciate your effort very much, at least responding in a timely manner to a support ticket, even if it’s just a “we will look into it” response, is something I consider as essential for any WordPress plugin, no matter if free or not, as the free versions usually lead to paid version conversion and a good support in a free plugin also means good support for paid versions.
Thank you and best regards
JulianThe solution for this Borlabs specific problem has been posted in the linked thread.
Hello Anca,
thank you very much for getting back to me.
It actually works now, I had no idea that the solution was this simple. I didn’t know I could switch languages without either polylang or WPML being installed.
Thank you!
Best regards
JulianForum: Plugins
In reply to: [Email Template Designer - WP HTML Mail] No Header for any system emailsAs you have not responded further, I assume your issue is resolved. If you have any further problems, please let us know.
Best regards
JulianForum: Plugins
In reply to: [Email Template Designer - WP HTML Mail] Hero image issueThis issue can be resolved using custom css rules, using this filter.
Hello,
this issue is not resolved. Please, I need a fix for this problem!
Hello,
can I kindly ask to get a response? I have to fix this issue, a customer is waiting for the translation to go online. I can not publish it until this problem is fixed.
Best regards
JulianForum: Plugins
In reply to: [Email Template Designer - WP HTML Mail] No Header for any system emailsHello Chris,
I think I don’t understand your issue clearly. Which plugin are you referring to? WP HTML Mail does not require a license.
Either way, the problem could be related to several issues. Make sure the path to your image is publically available, you can check the read, write privileges of the upload folder. You can also paste the image URL here, so I can check if it is publically readable.
Best regards
JulianHi Alex,
I think you misunderstood my issue. It doesn’t matter what condition check I use. The function do_shortcode is not working on the translated page. The shortcode is rendered as text, not as a shortcode!
This code:
if( is_plugin_active('borlabs-cookie/borlabs-cookie.php') && $locale == 'en_gb' ){
echo do_shortcode( '[borlabs-cookie id="open-street-map-leaflet-map" type="content-blocker"] <div id="map-' . $id . '" style="height:' . $height . 'px;"></div>[/borlabs-cookie]');
}Renders this:
[borlabs-cookie id=“open-street-map-leaflet-map“ type=“content-blocker“][/borlabs-cookie] as text on the frontend! But only on the translated page. It works in the original language.Forum: Plugins
In reply to: [Email Template Designer - WP HTML Mail] Hero image issueHello Demi,
can you please email us to support(at)codemiq.com, referencing this thread?
Best regards
JulianHello Ken,
I am happy it worked. Please let us know if you have any further questions.
Best regards
JulianHello Ken,
one option would be to create a custom template, which you can find in the “advanced” options tab of our plugin. Then remove the line from the template:
<span style="display:none; visibility:hidden; font-size: 1px !important;">###pre-header###</span>
Also, the text becomes visible when the mail is forwarded or the e-mail is being replied to. So in your support system, it will be visible.
Best regards
Julian- This reply was modified 3 months, 4 weeks ago by Julian.
Wrapping the shortcode in a language shortcode does also not work:
Neither:
echo do_shortcode( '[trp_language language="en_GB"]' . do_shortcode( '[borlabs-cookie id="open-street-map-leaflet-map" type="content-blocker"] <div id="map-' . $id . '" style="height:' . $height . 'px;"></div>[/borlabs-cookie]') . '[/trp_language]');
nor:
echo do_shortcode( '[trp_language language="en_GB"][borlabs-cookie id="open-street-map-leaflet-map" type="content-blocker"] <div id="map-' . $id . '" style="height:' . $height . 'px;"></div>[/borlabs-cookie][/trp_language]');
is working.
- This reply was modified 3 months, 4 weeks ago by Julian.