whatadewitt
Forum Replies Created
-
Hello again Vasyl,
I have a similar issue happening…
I’ve created a custom user role, it’s much like an author, but with a couple of extra capabilities.
I want this author to be able to create custom post types, but I don’t want them to have access to the “Posts” menu. If I choose to “hide” the post menu item, but not hide the custom post type items, I still cannot “View All” of my custom post types, even though the capabilities are there.
It’s almost as if the plugin is ignoring capabilities and only checking on my preferences to what is hidden and not hidden… is there any way you can work that into a future release?
Thanks!
–d
Great news! Thanks a lot Vasyl!
Your help is very much appreciated on this matter!!
Hi Vasyl,
I think I found the problem.
I am trying to hide the “Access Manager” in the users menu by checking it in the “Main Menu” section of the plugin screen. Whenever it is set to be hidden, the user role I have to list users will not allow me to see the full user list. For the user role I am creating, I want my users to see “All Users” and “My Profile”, so that they may “promote” existing users.
Is there a workaround, or anything I can do to achieve this?
Thanks,
–d
Hi Vasyl,
I’m home for the weekend, but I may try this tomorrow… I’m wondering if it’s just not saving/updating properly in the database… very strange.
Thank you,
–d
Forum: Themes and Templates
In reply to: Custom User Roles has no permissions.Here is the code…
Forum: Plugins
In reply to: [Taxonomy Images] Adding Taxonomy image to a single postanyway to do this without creating the links?
Forum: Fixing WordPress
In reply to: Sharing ImagesI’ve made SOME progress… I’m able to get the ID out of 1 database table, but I am using wp_get_attachment_image_src, which is pointing to the current database, where the image doesn’t exist…
Can anyone help me out?
Thanks!
–d
To fix it, I simply added a function_exists check to config.php
if (!function_exists('get_gdsr_wpload_path')) { function get_gdsr_wpload_path() { if (STARRATING_WPLOAD == '') { $d = 0; while (!file_exists(str_repeat('../', $d).'wp-load.php')) if (++$d > 16) exit; return str_repeat('../', $d).'wp-load.php'; } else return STARRATING_WPLOAD; } }Hope it helps someone!
You ever manage to get this solved?
Forum: Plugins
In reply to: [WP-FB-comments] Not posting to FacebookOops! I’m using the wp-fb-comments… not sure why it’s not in the subject line… but it is there as a tag… strange…
Thanks again! You’ve been more than helpful 😀
Thanks a lot!!
It does!
Would it be worth changing the line
if (!$current_user) return true;to
if (0 == $current_user->ID) return true;Thanks,
–d
I got the error as well… I want to set it up in a container “My Staging Container” (as I am currently building this on my dev server to test at the time being).
Is there any way for me to just upload the files directly into my directory (via Cyberduck) and then have my WordPress install use that container instead of the “cdntools” directory that is automatically being created?