elvis75
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Renaming Site UrlThanks for the link!
Adding the following lines to wp-config.php did the trick.define('WP_HOME','http://example.com'); define('WP_SITEURL','http://example.com');Forum: Fixing WordPress
In reply to: Renaming Site UrlThanks for the reply. The site is hosted on an internal server and I do not have access to phpMyAdmin. Can I make this change within one of the WordPress files instead?
Forum: Plugins
In reply to: [Active Directory Integration] Error creating user!Yes. I deleted the user in WP. The next time they logged in everything worked normally.
Forum: Fixing WordPress
In reply to: Cannot Update ThemeI am able to update the theme manually. I was just trying to figure out why it will not let me update within WordPress.
Forum: Plugins
In reply to: [Active Directory Integration] Notice of Password ChangeI just updated to WP 4.3 and am getting the exact same thing.
This happens every time someone logs in. Can this alert being turned off?Hi “admin email address”,
This notice confirms that your password was changed on “website name”.
If you did not change your password, please contact the Site Administrator at “admin email address”
This email has been sent to “admin email address”
Regards,
All at “Website name”
https://”domain name.com”Forum: Fixing WordPress
In reply to: 2 posts with same name?Ok thanks. I thought it might be possible with permalinks setup this way.
I tried changed the role for several users to “Support Agent” but they still don’t show up in the drop down menu.
Forum: Plugins
In reply to: [Awesome Support - WordPress HelpDesk & Support Plugin] Custom Ticket FieldsOk thanks. No, I had not activated it before. I will see if that fixes it.
Forum: Plugins
In reply to: [Custom Login Page Customizer] Remove Lost your password Link?Thanks! That removed the Lost your password link.
Ok, Thanks. That would be great!
No, I have not created additional agents.
Can you tell me where that is done?Forum: Plugins
In reply to: [Awesome Support - WordPress HelpDesk & Support Plugin] Custom Ticket FieldsI update the file with your suggestion but I still don’t see the new field.
The file is in the /plugins directory. Ex. \wp-content\plugins\awesome-support-custom-fields.phpIs that correct? Thanks
<?php
/**
* @package Awesome Support/Custom Fields
* @author ThemeAvenue <[email protected]>
* @license GPL-2.0+
* @link http://themeavenue.net
* @copyright 2014 ThemeAvenue
*
* @wordpress-plugin
* Plugin Name: Awesome Support: My Custom Fields
* Plugin URI: http://getawesomesupport.com
* Description: Adds custom fields to the Awesome Support ticket submission form.
* Version: 0.1.0
* Author: ThemeAvenue
* Author URI: http://themeavenue.net
* Text Domain: wpas
* License: GPL-2.0+
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
* Domain Path: /languages
*/// If this file is called directly, abort.
if ( ! defined( ‘WPINC’ ) ) {
die;
}add_action( ‘plugins_loaded’, ‘wpas_user_custom_fields’ );
if ( function_exists( ‘wpas_user_custom_fields’ ) ) {
wpas_add_custom_field( ‘my_custom_field’, array( ‘title’ => __( ‘My Custom Field’, ‘wpas’ ) ) );
}/* Do NOT write anything after this line */
}Forum: Plugins
In reply to: [Awesome Support - WordPress HelpDesk & Support Plugin] Custom Ticket FieldsThanks. I created a new file called awesome-support-custom-fields.php and placed it in my /plugins directory. It contains the following code form the example but the field does not display.
<?php
/**
* @package Awesome Support/Custom Fields
* @author ThemeAvenue <[email protected]>
* @license GPL-2.0+
* @link http://themeavenue.net
* @copyright 2014 ThemeAvenue
*
* @wordpress-plugin
* Plugin Name: Awesome Support: My Custom Fields
* Plugin URI: http://getawesomesupport.com
* Description: Adds custom fields to the Awesome Support ticket submission form.
* Version: 0.1.0
* Author: ThemeAvenue
* Author URI: http://themeavenue.net
* Text Domain: wpas
* License: GPL-2.0+
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
* Domain Path: /languages
*/// If this file is called directly, abort.
if ( ! defined( ‘WPINC’ ) ) {
die;
}add_action( ‘plugins_loaded’, ‘wpas_user_custom_fields’ );
/**
* Register all custom fields after the plugin is safely loaded.
*/
function wpas_user_custom_fields() {
/* You can start adding your custom fields safely after this line */wpas_add_custom_field( ‘my_custom_field’, array( ‘title’ => __( ‘My Custom Field’, ‘wpas’ ) ) );
/* Do NOT write anything after this line */
}Forum: Plugins
In reply to: [Custom Login Page Customizer] Logo Not DisplayingTurns out another plugin was the problem!
I disabled it and it worked.Forum: Plugins
In reply to: [Erident Custom Login and Dashboard] Logo is not showing on Login ScreenThe site is not currently live. I am running several plugins and a custom theme however. I will check and see if any of those are causing the issue.
Thanks!Suggestion: Add an option to change the line color next to the message “Only registered and logged in users are allowed to view this site. Please login now” as well as the text itself. Another option could be to remove this message all together. Thanks!