ttrusty
Forum Replies Created
-
I noticed that you just released an upgrade so I installed it to see if it resolved the issue I am having with your plugin. No luck.
I am still not able to add menu items. Additionally, I am also unable to edit existing menu items. When clicking on either ‘add new menu item’ or ‘edit’ I get the dialog box mentioned earlier. It reads “The editor has encountered an unexpected error.” with three buttons to its right reading “Attempt Recovery”, “Copy Post Text” and “Copy Error”. Clicking those buttons doesn’t seem to do anything. The dialog box continues to display. Please help. Thanks, Tom
Forum: Plugins
In reply to: [Simple Staff List] Is there a way to add a field to single-staff-member.phpThanks for the amazingly quick response Brett. I’ll be sure to give you a high rating.
And thanks also for the detailed explanation. I’ll need to do a little research before moving forward on this. Not sure, but it might be a little over my head. I’ll let know what happens.
Take care, Tom
Forum: Plugins
In reply to: [The Events Calendar] event's pop-up window link fails or is non-existentResolved. The problem was not what I thought it was. The tool tip was actually covering the title of the event that is was assocaited with. After adjusting the bottom margin to raise the position of the tool tip, the event title/link was accessible allowing access to the listing details.
Forum: Installing WordPress
In reply to: blog no longer displaysSee resolution at:
https://www.ads-software.com/support/topic/167033?replies=3Forum: Fixing WordPress
In reply to: Second request. Please help.See resolution at:
https://www.ads-software.com/support/topic/167033?replies=3Forum: Fixing WordPress
In reply to: Please help, blog will not display (3rd request)Thank you Jeremy! You’re a Pro! It works perfectly!
I think I even understand why it works. Thanks again.Forum: Installing WordPress
In reply to: blog no longer displays<?php
/* Short and sweet */
define(‘WP_USE_THEMES’, true);
require(‘./news/wp-blog-header.php’);
?>Forum: Installing WordPress
In reply to: blog no longer displaysThanks for your help whoomai.
I have confirmed that the WordPress address and the blog address settings on the options page are set to
‘https://www.trustyandcompany.com/news’. I have also confirmed the siteurl setting of my database is set to the same.I added the code that you gave me to wp-config.php where you said to place them. Still no luck. It looks like this:
[Don’t post usernames and passwords]
<?php
// ** MySQL settings ** //
define(‘DB_NAME’, ‘trustyandcompany_com_-_wordpress’); // The name of the database
define(‘DB_USER’, ‘DBUSER’); // Your MySQL username
define(‘DB_PASSWORD’, ‘DBPASS’); // …and password
define(‘DB_HOST’, ‘localhost’); // 99% chance you won’t need to change this value// You can have multiple installations in one database if you give each a unique prefix
$table_prefix = ‘wp_’; // Only numbers, letters, and underscores please!// Change this to localize WordPress. A corresponding MO file for the
// chosen language must be installed to wp-includes/languages.
// For example, install de.mo to wp-includes/languages and set WPLANG to ‘de’
// to enable German language support.
define (‘WPLANG’, ”);/* That’s all, stop editing! Happy blogging. */
define(‘ABSPATH’, dirname(__FILE__).’/’);
require_once(ABSPATH.’wp-settings.php’);define(‘WP_SITEURL’, ‘https://www.trustyandcompany.com/news’);
define(‘WP_HOME’, ‘https://www.trustyandcompany.com/news’);
?>The.htaccess in folder with config reads:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /news/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /news/index.php [L]
</IfModule># END WordPress
I cannot find any other htaccess file.
Thanks again for taking the time to look at this for me.