kpdesign
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Profile won't show for subcribers when using WP Hide DashboardI’m in the process of rebuilding my site at the moment. Do you have a site where I could email you via your contact form?
Forum: Fixing WordPress
In reply to: Profile won't show for subcribers when using WP Hide DashboardI’ve looked at the SM Text Message plugin code, and there appears to be a conflict with code in the sorttable.js file and the javascript my plugin uses.
I haven’t had time to test this out, but try editing my plugin to see if this allows the profile to be seen with both plugins activated.
Change line 70 to read:
echo "\n" . '<style type="text/css" media="screen">.update-nag, #screen-meta { display: none !important; }</style>';Make sure you do a hard reload of the profile page while logged into the dummy login once you make this change.
Let me know if this fixes the issue for you. If it doesn’t, I’ll have to do some testing tomorrow to come up with a solution.
Forum: Fixing WordPress
In reply to: Profile won't show for subcribers when using WP Hide Dashboard@te1280: I’m the author of WP Hide Dashboard. I’ve used the dummy login you posted to see exactly what problem you’re experiencing.
Judging by what I saw + past experience, I would have to say that one of your other plugins is causing a conflict with mine.
In order to pinpoint exactly which plugin is causing the problem, you need to disable all of your plugins except for Akismet and my plugin, then log into your site in another browser using the dummy login posted above.
Then, one by one, reactivate your other plugins, and reload the profile page for the dummy login. When the profile disappears again, make note of which plugin it was that you just reactivated and post the name of it here please.
Forum: Plugins
In reply to: [Analytics360] [Plugin: Analytics360] Mailchimp API KeyWhen you are logged into your WordPress install, go to the settings page for Analytics360, click the “I Have An Account” tab under the MailChimp header and log into your MailChimp account. It will automatically generate an API key which will allow you to use the plugin and add your Google Analytics account by authenticating it with Google.
To my knowledge, you don’t have to enter the API key anywhere else.
Forum: Plugins
In reply to: [WP Hide Dashboard] [Plugin: WP Hide Dashboard] Profile form display:none@esolano: Yes, I am using display: none on line 70 – that is to hide the profile temporarily until the javascript loads to avoid the hidden section appearing then disappearing once the javascript has loaded.
If the javascript does not load for some reason (user has it turned off, etc.), the profile form will stay hidden.
Also, if you have installed the plugin somewhere other than /wp-content/plugins/ folder (such as the /wp-content/mu-plugins/ folder on a multisite install), the path to the javascript on line 71 will be incorrect, causing it not to load.
@estebansp: What was the other plugin that you changed?
Also, are you two working on the same project together, or are both usernames for the same person?
Forum: Plugins
In reply to: [WP Hide Dashboard] [Plugin: WP Hide Dashboard] Profile form display:none@estebansp: What browser were you using when you had the issue?
Also, what other plugins are you running?
The plugin does not hide the Profile form by default; however, someone else posted that they had a similar issue when using IE8 but it works properly in Firefox, Chrome, etc. I don’t have access to IE8 so have been unable to test/track down the problem.
Forum: Plugins
In reply to: [Plugin: WP Hide Dashboard] directly from the browser?@grafcom: No, there needs to be 2 ending parentheses, just as I posted it. The last ending parentheses closes the condition statement that started right after if. Without it you’ll get a fatal error.
Glad it’s working for you!
Forum: Plugins
In reply to: [Plugin: WP Hide Dashboard] directly from the browser?@grafcom: Sorry for the delay in responding. I’ve been out of town on vacation.
Yes, there is a way to fix that. Open wp-hide-dashboard.php in a plain text editor and change line 94 to read:
if (!current_user_can(”.$wphd_user_capability.”) && ($parent_file == ‘index.php’ || $parent_file == ‘tools.php’)) {
Let me know if this resolves the issue for you.
tkott: I’m not sure why that would be happening. I’ll need to do some testing of my own.
Can you tell me what other plugins you are running alongside WP Hide Dashboard?
Also, is this on a single WordPress install or a multisite install?
Those answers will help me when I’m trying to reproduce your issue.
Forum: Networking WordPress
In reply to: Multi-user set up – users can’t customize themesYou don’t want users editing themes. See andrea_r’s response in this thread for the reason why: http://wordpress.org/support/topic/414226?replies=5#post-1566844
Forum: Networking WordPress
In reply to: Menus and Import Tools not displaying WP 3.0 (MS)I agree, admins should be able to import content. First fallout from removing the importers from core….
Forum: Networking WordPress
In reply to: Menus and Import Tools not displaying WP 3.0 (MS)@kpdesign – can you confirm that a regualr administrator can see the importers when running a network?
I just checked my multisite dev install. Super-admin sees the list of importers available to be downloaded. However, a regular administrator sees this:
If you have posts or comments in another system, WordPress can import those into this site. To get started, choose a system to import from below:
No importers are available.
In looking at import.php, it sets this conditional before the list of importers is displayed:
if ( current_user_can('install_plugins') )Single WordPress allows the admin to install plugins, but multisite isn’t allowing admins to install plugins, only activate/deactivate the plugins that a super-admin has already installed and made available.
Since the importers are now plugins, that explains why an admin can’t see any importers – SA has to install them first.
Forum: Networking WordPress
In reply to: Menus and Import Tools not displaying WP 3.0 (MS)What role do your “regular users” have assigned to them?
1. Menus: Check your theme to make sure it supports the new menus. See the register_nav_menu() page in the Codex for more info.
2. Import: Super-admins and admins are the only ones with sufficient privileges to import content. Editors, Authors, Contributors, Subscribers do not have those privileges so they shouldn’t even be seeing the Import link.
Forum: Plugins
In reply to: [Plugin: WordPress Wiki] Table of Contents@quadcomm: Documentation for the WP Wiki plugin is located at http://wp-wiki.org/?page_id=10. There is a page that explains how to enable/create the Table of Contents (TOC).
The Table of Contents is created for individual pages, not for the overall ‘wiki’. It is populated with the h2 and h3 headings on each page.
The page that I linked to has a gray box called Contents which links to different sections on that page. That is the Table of Contents that the plugin creates.
Forum: Alpha/Beta/RC
In reply to: Installing WP 3.0 blogsIf you are running one site and want to use multiple sites to manage larger sections of the same site using subdirectories, then there’s nothing you need to change.
If you want to use subdomains or map other domains to the additional sites, then you need to read the following:
http://wpmututorials.com/how-to/enabling-wildcard-subdomains/
Domain mapping requires a plugin to achieve:
http://wordpress.org/extend/plugins/wordpress-mu-domain-mapping/