ickzorn
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] Email address not showing up in HTML content typeOhhh my … that’s so obvious. Thank you very much for your fast response.
Forum: Plugins
In reply to: [Contact Form 7] Email address not showing up in HTML content type@takayukister – thank you very much for the fast answer. If possible, could you please explain this behavior?
Thank you very much.
Forum: Plugins
In reply to: [Simplr Registration Form Plus+] Fatal ErrorSame problem here. The header information could not received by WordPress if debugging is active.
Forum: Plugins
In reply to: [Remove Dashboard Access] user can't delete postIf you break down the plugin you will see, it redirects a user, if he tries to access the dashboard to another URL.
The given URL for the delete action is something like https://www.your-url.com/wp-admin/post.php?post=123&action=trash&_wpnonce=1234567890. As you can see, the user has to access the dashboard for this action. But the plugin redirects the user before the action could be executed.
I’m having the same problem and couldn’t find a workaround with this plugin activated.
Forum: Plugins
In reply to: [Simplr Registration Form Plus+] Don't show form if you are already userBetter redirect, than above
Just looked around for the redirect. As always WordPress has it’s own solution, which should be used. As described in the codex, use the wp_redirect() function.
Forum: Plugins
In reply to: [Simplr Registration Form Plus+] Don't show form if you are already userOne option is to use the conditional tag is_user_logged_in() (as described here) in a page template.
If the user is already registered you could redirect to another page via the header() command.
Forum: Plugins
In reply to: [Gravity Forms + Custom Post Types] Save post as 'draft' OR 'publish'OK, sorry – found exactly this question answered on your site.
Link: https://gravitywiz.com/set-post-status-by-field-value-advanced/
Thank you for your attention.
Forum: Plugins
In reply to: [Contact Form 7] Hide error messages and their animationI’ve already tryed this and it didn’t work.
Thank you, didn’t come to my mind to scroll down *doh
Forum: Fixing WordPress
In reply to: Notice if there is no avatar (blank) chosenThank you very much.
Forum: Fixing WordPress
In reply to: Notice if there is no avatar (blank) chosenHi,
sure, I’m using WordPress …
OK – code snippets:
<div class="frontArticleAvatar"> <?php $randomNumber = mt_rand(0,7); $randomNumber = $randomNumber*70; echo '<div class="frontArticleAvatarMask" style="background-position: -'.$randomNumber.'px 0px"></div>'; echo get_avatar( get_the_author_email(), '70' ); ?> </div>
As you can see it wraps a div around the avatar. The background of the overlaying picture are different masks, randomly chosen. So the avatars are masked in different ways. This DIV isn’t necessary, if the blank avatar is chosen.