Kejatz
Forum Replies Created
-
Thank you.
Thank you, I’ll try that.
Can you please guide me on how to do this via code snippet using a plugin like WPCode?
Also, if I write my own custom subject and body can I use shortcodes and what are they? For example for site URL, username, user email, site title, and similar.
I also noticed that the default WordPress “Email Change Requested” notification’s subject is “global_site_title Email Change Request” but your override’s subject is “global_site_title New Email Address”. Since the subject for this notification in your plugin is not editable how come it is different from the default WordPress’?
Hi,
thank you for the reply and you are right, it doesn’t block the default user registration notification email to user, I made a mistake.
I have another question. Once the registered user in approved in AIOS, AIOS sends a confirmation mail to user with the following content:
Subject: [site URL] Your account is now active
Body: Your account with username: [username] is now activeIs there a way to customize the content of this email? It would be nice to have a code snippet to customize this or maybe you can add a feature to set the subject and body of that notification inside the AIOS.
Hi,
that was my guess as well. Thank you.
Hi @voltronik,
“The only thing I can do is submit patches to WordPress core and hope they’re incorporated for these kinds of omissions but whether they’re accepted and accepted in a timely manner, is another matter.“
This sounds great and it would be nice to be consistent with all other notifications. I really like your plugin, I’m also interested in other add-ons.
Are there any other notifications with similar limitations to the “User Email Changed Confirmation – For User”?
Thank you very much for your reply. For two weeks I’ve been trying to find a solution and thanks to your suggestion I accidentally figured out that I never added the email address to the “Send mail as” section in Gmail settings, which was the reason for all this.
- This reply was modified 1 year, 7 months ago by Kejatz.
Forum: Fixing WordPress
In reply to: Plugin causes Internal Error HELP!!!!!!!!I had AdSense Now plugin installed and I’ve been trying out WP Simple Adsense Insertion plugin and I got a few Internal Server Errors after its installation. After a few page loads and removing the plugin I get only Internal Server Errors.
PLEASE HELP!
Forum: Fixing WordPress
In reply to: can’t edit post after upgrading to 2.8I have the strangest problem. After installing plugin “Different Posts Per Page” only one posts becomes uneditable, the rest of the posts are fine. This post has around 5000 words, maybe that’s the problem?
Why don’t you try to enter that code yourself into single.php file through the WordPress internal editor? Maybe the OpenHook is making some problem. Remove everything from the “After Post” field and then look if pages display the related posts. If page stops displaying related posts, then OpenHook plugin was the problem. Then as I said use WP editor to add <?php related_posts(); ?> manually.
I have another suggestion, but this is not a solution. In related posts plugin remove the text that will be displayed if no related posts wwere found: “No Related Posts”. That way plugin won’t display anything if related posts are not found. This will remove that line at least from the static home page and can buy you time until you figure out how to solve the actual problem.
Forum: Plugins
In reply to: [Plugin: Yet Another Related Posts Plugin] Match scoreHello,
I also can’t see the score on some of my WP installations and I’m not using any template or caching plugin which is serving the same versions as for my visitors.
Can you help troubleshoot?
Thank you!
- Uncheck the option “Automatically display related posts?” in the plugin admin panel.
- In file single.php insert the following code where you want related posts to appear.
<?php related_posts(); ?>
Hope this helps.
PS. Adding
<?php related_posts(); ?>
will display only related posts. Adding<?php related_pages(); ?>
will display related pages. Adding<?php related_entries(); ?>
will display both related posts and pages.Forum: Plugins
In reply to: How to Exclude Pages in Popularity Contest?Thanks for the answer but I have no idea how to do that.
I already have a plugin that executes php in widget and I’m already using the above code in a text widget. I just need info on how to ignore posts with a post_type of ‘page’, like you said.
Forum: Themes and Templates
In reply to: Using tags as meta keywords (PHP question)How to disable adding of tags in meta keywords in All in One SEO plugin? I want to write just my own keywords into meta keywords.
Can this be done?
Thanks.