prashanthag
Forum Replies Created
-
the issue is fixed(Fatal error: Uncaught exception ‘phpmailerException), open functions.php file – it should be in your template folder add the following code
add_filter(‘wp_mail_from’, ‘new_mail_from’);
add_filter(‘wp_mail_from_name’, ‘new_mail_from_name’);
function new_mail_from($old) {
return ‘[email protected]’; //You can specify the email address
}
function new_mail_from_name($old) {
return ‘Domain name’; //You can specify the name that emails should be sent from
}- This reply was modified 7 years, 5 months ago by prashanthag.
Sorry, All Actions button was there on Leads Table but if click over it shows “You are not allowed to access this page” if login as an admin
I created two custom files 1.upicrm_adds_lead.php 2.upicrm_Add_Lead.php ,
if i add a new lead results in fatal error “phpmailerException”if (current_user_can('subscriber')) { add_submenu_page( 'upicrm_index', __('Add Lead','upicrm'), __('Add Lead','upicrm'), 'read', 'upicrm_Add_Lead', array( $this, 'onDisplayAddLead' ) ); }
I added following code but it shows error not access this page suppose login as subscriber
if (is_admin())
{
add_action(‘admin_menu’, ‘my_menu’);
}
else
{
add_action(‘admin_menu’, ‘my_menu1’);
}function my_menu()
{
add_menu_page(‘import_export’, ‘import_export’, ‘subscriber’, ‘/admin.php?page=upicrm_import_export’, ”);
}function my_menu1()
{
add_menu_page(‘import_export’, ‘import_export’, ‘admin’, ‘import_export’, ”);
}Hi Mike E
I follow these URL to create custom admin menu and using Plugin Name: Menu Test as code
https://codex.www.ads-software.com/Administration_MenusForum: Networking WordPress
In reply to: Per-site registrationCan i add this line to .htaccess file
[ Moderator Note: Code fixed. Please post code or markup snippets between backticks or use the code button. ]
RewriteRule ^wp-signup.php(.*)$ wp-content/themes/[your theme name]/wp-signup.php$1
And can i change from
<form id="setupform" method="post" action="/signup">
To
<form id="setupform" method="post" action=" https://localhost/wordpress/wp-signup.php">
Forum: Networking WordPress
In reply to: Per-site registrationHi,
Ipstenu (Mika E.)
I am not getting this following sentence please explain briefly ( https://halfelf.org/2012/multisite-registration/ )Finally search your file for all instances of wp-signup.php and change them. To what? To whatever you’re going to name your page in the next section. I knew I wanted to name my page signup, so I replaced it with that.
Thanks in advance
Forum: Networking WordPress
In reply to: How to activate new user/visitors emailsI am testing and documenting new multisite creation. When I get to this point:
Congratulations! Your new site, Test One Now, is almost ready.
But, before you can start using your site, you must activate it.
Check your inbox at [myemail] and click the link given.
If you do not activate your site within two days, you will have to sign up again.
Still waiting for your email?
If you haven’t received your email yet, there are a number of things you can do:
Wait a little longer. Sometimes delivery of email can be delayed by processes outside of our control.
Check the junk or spam folder of your email client. Sometime emails wind up there by mistake.
Have you entered your email correctly? You have entered[myemail], if it’s incorrect, you will not receive your email.Forum: Networking WordPress
In reply to: Per-site registrationHi Ipstenu (Mika E.)Half-Elf Support Rogue & Mod,
I did without plugin with help of Without a plugin? https://halfelf.org/2012/multisite-registration/ file
but i am getting following errorsThe requested URL /signup was not found on this server.
Forum: Networking WordPress
In reply to: Per-site registrationHi all,
my question is creating new site in back end is possible how to do it in Front end without login as super admin mutlisite user registration page should be in front end (home page/blog)
https://localhost/wordpress_SC/wp-admin/network/site-new.phpSite Address []
Site Title []
Admin Email []
A new user will be created if the above email address is not in the database.
The username and password will be mailed to this email address.Hi all,
my question is creating new site in back end is possible how to do it in Front end without login as super admin mutlisite user registration page should be in front end (home page/blog)
https://localhost/wordpress_SC/wp-admin/network/site-new.phpSite Address []
Site Title []
Admin Email []
A new user will be created if the above email address is not in the database.
The username and password will be mailed to this email address.Forum: Networking WordPress
In reply to: Per-site registrationDear Ipstenu (Mika E.),
I setup multisite using market press plugin and it working fine in backend (dashboard) I saw your blog unable to following instructions
I create one template signup it comes in page attributes later i am not getting this copy the content of wpsignup.
php into it, and edit as you need how to achieve
and what are things can do it in wpsignup.
php page please clarify itthanks in advance
For more Details
New user enter his domain (custom) and email and password then clik add site (button)
It navigatesOnce receive mail he/she can able to login his own sites
Multisite options is working in backened (dashboard) admin area
But how to make in frontend without need of super admin areaForum: Everything else WordPress
In reply to: Customer's own domain name in frontendi copyed the wp-signup.php file into my theme directory and linking my signup page
how to achieve wp-signup.php linking to my signup page
Forum: Everything else WordPress
In reply to: Customer's own domain name in frontendAllows any frontend visitors to “add a new site” to the network
– Visitors will not be users and will not be logged in
– It DOES NOT add any new users to the network (it only adds the site)