benutzerfreund
Forum Replies Created
-
Hi, thanks for your swift reply.
1) Yes, the mail address is valid.
2) Until now, no. But I did it now, and it does not make any difference. The mail to the sender address is sent. But the mail to the original address and neither the BCC address is not sent.
3) When I use the same address as sender in the form, I get an error message from my provider saying “Diagnostic Code: smtp; 554 5.7.1 Relay acccess denied.”
The URL for a test integration is https://www.benutzerfreun.de/TST/Thanks, Jens
Ok, sorry: it was a conflict with a PlugIn.
I am using EasyCron.com now, so I wouldn’t say it is resolved… but it is a workaround.
My hoster said the scripts try to use curl to connect via HTTPs using SSLv2 / SSLv3. This they won’t permit since they consider this a security risk.
Yes, it is not possible. And I can’t change because the server belongs to a customer of mine.
No, I did not try this since I can’t do this on this shared server…
Yes, I can load it (and get a blank page, since the php script does abort execution when opened directly—just like it should).
Forum: Plugins
In reply to: [MailPoet Newsletters (Previous)] Custom CSS not workingOf course I use a Chile Theme, and my other styling in its style.css works just fine. So I know it is named & placed correctly. I also see it loaded as a resource when I use the inspector of my browser.
Nevertheless, when I insert your code at the end of the style.css, nothing happens visually/or in the inspector on the formatting pane.
Forum: Plugins
In reply to: [MailPoet Newsletters (Previous)] Custom CSS not workingThank you for your answer. This is exactly what I have in my css. I copied it from your answer just to make sure, but to no avail.
So I must have made another (maybe stupid?) mistake. Where exactly did you put the code in?
Thanks in advance!
Forum: Plugins
In reply to: [Subscribe To Comments Reloaded] How to reset to default message texts?Thanks for your answer, sounds great. And how do I reset to the default messages?
Forum: Plugins
In reply to: Prevent creating multiple sizes on image uploadIn case anyone looks for the solution: I found it here:
https://wordpress.stackexchange.com/a/131835/63639
I just modified the condition to:
if( ! isset($_REQUEST['post_id']) )
which is true if I am not editing any post.
Forum: Themes and Templates
In reply to: [Twenty Twelve] Navigation on archive pagesOK, found the problem: In functions.php I have
function my_get_posts( $query ) { $var = false; if (isset($query->query_vars['suppress_filters'])){ $var = $query->query_vars['suppress_filters']; } if (( is_home() && false ==$var ) || is_feed() ) { $query->set( 'post_type', array( 'post', 'my_books') ); } return $query; } add_filter( 'pre_get_posts', 'my_get_posts' );
This is to show book reviews (custom post type) on the front page.
But when I add “|| is_category() || is_tag()”, the menu disappears on these pages.
Any idea why this happens? And what to do about it?
Forum: Themes and Templates
In reply to: [Twenty Thirteen] Smartphone menu brokenHi mo,
Thanks for the update. My conclusion for anyone with this problem: Check your source code and look for JS which is included twice.
I did not change anything on my site, probably it was an issue with my caching PlugIn…
Cheers & thanks again for pointing me to this problem on my site,
JensForum: Themes and Templates
In reply to: [Twenty Thirteen] Smartphone menu brokenHi mo,
thanks for pointing this out. It used to work, but since it is a hack, it apparently broke with some of the changes or updates that happened meanwhile.
What fixed it for me now was removing the said code again from footer.php. I know this is odd, and I have no idea what exactly is happening here.
To make things even more mysterious: there is a single page where it still is broken:
https://www.benutzerfreun.de/buch-info/Maybe one of the experienced developers around here got any idea? Probably you should start your own thread to get noticed by them.
Please let me know you you can bring any light to this issue!
Thanks,
JensForum: Hacks
In reply to: Loading template twice – how to do it?Oh my, this is embarrassing, of course it is like this. Now I got it.
Thanks a ton for your patience with me!
Forum: Hacks
In reply to: Loading template twice – how to do it?Sorry, I used the wrong words. Of course I declare the function only once. This is my ads.php:
<?php /** * The default template for ads * eingebunden von index.php und single.php * @package WordPress * @subpackage Twenty_Twelve * @since Twenty Twelve 1.0 */ function showAds() { return ('Ads!'); } echo showAds(); ?>
And this is the loop:
while ( have_posts() ) : the_post(); ?> <?php get_template_part( 'content', get_post_format() ); get_template_part( 'ads', '' ); ?> <?php endwhile; ?>
This results in a page where I see “Ads!” after the first post, then the next post and then nothing. The HTML just stops after </article> without including more posts or the footer.