Title: trebor33's Replies | WordPress.org

---

# trebor33

  [  ](https://wordpress.org/support/users/trebor33/)

 *   [Profile](https://wordpress.org/support/users/trebor33/)
 *   [Topics Started](https://wordpress.org/support/users/trebor33/topics/)
 *   [Replies Created](https://wordpress.org/support/users/trebor33/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/trebor33/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/trebor33/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/trebor33/engagements/)
 *   [Favorites](https://wordpress.org/support/users/trebor33/favorites/)

 Search replies:

## Forum Replies Created

Viewing 10 replies - 1 through 10 (of 10 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[PublishPress Capabilities - User Role Editor, Access Permissions, User Capabilities, Admin Menus] Removing Capabilities](https://wordpress.org/support/topic/removing-capabilities/)
 *  Thread Starter [trebor33](https://wordpress.org/support/users/trebor33/)
 * (@trebor33)
 * [4 years, 4 months ago](https://wordpress.org/support/topic/removing-capabilities/#post-15425761)
 * Can anyone provide advice on this issue? I have looked through documentation 
   and searched and cannot find an answer for this question. If someone from PublishPress
   has a chance to reply that would be great!
 * Thanks again for your help!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[PublishPress Capabilities - User Role Editor, Access Permissions, User Capabilities, Admin Menus] Undefined Variable](https://wordpress.org/support/topic/undefined-variable-85/)
 *  [trebor33](https://wordpress.org/support/users/trebor33/)
 * (@trebor33)
 * [4 years, 8 months ago](https://wordpress.org/support/topic/undefined-variable-85/#post-15080103)
 * Hi Steve:
 * I am also seeing the same error notice as the other two users above. I see that
   you have already responded to the Github thread and are likely already working
   on this issue. Just wanted to follow up to confirm the issue just in case.
 * Thanks for your help in looking into this!
 * -Robert
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Notification - Custom Notifications and Alerts for WordPress] Large Number of Queries Created by Notification Plugin](https://wordpress.org/support/topic/large-number-of-queries-created-by-notification-plugin/)
 *  Thread Starter [trebor33](https://wordpress.org/support/users/trebor33/)
 * (@trebor33)
 * [4 years, 10 months ago](https://wordpress.org/support/topic/large-number-of-queries-created-by-notification-plugin/#post-14827342)
 * Hi Kuba:
 * Thanks so much for your quick reply and for explaining why the caching was introduced.
   I will look out for the new release. Thanks again for you help, again I appreciate
   all of the great functionality provided by the plugin.
 * -Robert
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[PublishPress Capabilities - User Role Editor, Access Permissions, User Capabilities, Admin Menus] Custom Taxonomy Capabilities Not Showing Up Under Additional Capabilities](https://wordpress.org/support/topic/custom-taxonomy-capabilities-not-showing-up-under-additional-capabilities/)
 *  Thread Starter [trebor33](https://wordpress.org/support/users/trebor33/)
 * (@trebor33)
 * [7 years ago](https://wordpress.org/support/topic/custom-taxonomy-capabilities-not-showing-up-under-additional-capabilities/#post-11675908)
 * Hi Kevin:
 * Thanks for getting back to me again. The issue with construction of the capability
   names you noted in your last reply turned out to be the culprit. I switched the
   capability names to use the slug of the taxonomy name (edit_artist-types etc)
   and all of my taxonomies (with all checkboxes) are now showing up under the Edit
   and Delete sections.
 * Thanks again for all of your help in troubleshooting this issue! This was definitely
   something I would not have thought of as the solution.
 * -Robert
    -  This reply was modified 7 years ago by [trebor33](https://wordpress.org/support/users/trebor33/).
      Reason: typo
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[PublishPress Capabilities - User Role Editor, Access Permissions, User Capabilities, Admin Menus] Custom Taxonomy Capabilities Not Showing Up Under Additional Capabilities](https://wordpress.org/support/topic/custom-taxonomy-capabilities-not-showing-up-under-additional-capabilities/)
 *  Thread Starter [trebor33](https://wordpress.org/support/users/trebor33/)
 * (@trebor33)
 * [7 years ago](https://wordpress.org/support/topic/custom-taxonomy-capabilities-not-showing-up-under-additional-capabilities/#post-11671479)
 * Hi Kevin:
 * Thank you for getting back to me again. Under the Editing Capabilities section
   categories and tags each have three checkboxes for manage, edit, and assign. 
   These are followed by my seven custom taxonomies. Only the first taxonomy alphabetically(
   artist types) has the three checkboxes, the other six only have the edit checkbox.
 * A similar situation appears under the Deletion Capabilities section. Categories
   and Tags are listed with a checkbox. Again with my custom taxonomies only the
   first taxonomy alphabetically (artist types) is listed with a checkbox, the other
   six are not listed.
 * All of the custom taxonomies are created in the same manner using the register
   taxonomy function. Here is an example:
 *     ```
           register_taxonomy(
               'artist-type',
               'artists',
               array(
                   'labels' => array(
                       'name' => 'Artist Types',
                       'add_new_item' => 'Add New Artist Type',
                       'new_item_name' => 'New Artist Type',
                       'all_items' => 'All Artist Types',
                       'edit_item' => 'Edit Artist Type',
                       'view_item' => 'View Artist Type',
                       'update_item' => 'Update Artist Type',
                       'parent_item' => 'Parent Artist Type',
                       'parent_item_colon' => 'Parent Artist Type:',
                       'not_found' => 'No Artist Types Found',
                   ),
                   'show_ui' => true,
                   'show_in_nav_menus' => true,
                   'has_archive' => true,
                   'show_tagcloud' => false,
                   'hierarchical' => true,
                   'capabilities' => array (
       	  			'manage_terms' => 'manage_artist_types',
       	  			'edit_terms' => 'edit_artist_types',
       	  			'delete_terms' => 'delete_artist_types',
       	  			'assign_terms' => 'assign_artist_types',
       			),
               )
           );
       ```
   
 * One last note: When attempting to correct this issue I did use the Reset to Word
   Press defaults link under the Tools menu. Just wanted to make sure this wasn’t
   related to this issue.
 * Please get back to me when you have a chance. Thanks again for your help!
 * -Robert
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[PublishPress Capabilities - User Role Editor, Access Permissions, User Capabilities, Admin Menus] Custom Taxonomy Capabilities Not Showing Up Under Additional Capabilities](https://wordpress.org/support/topic/custom-taxonomy-capabilities-not-showing-up-under-additional-capabilities/)
 *  Thread Starter [trebor33](https://wordpress.org/support/users/trebor33/)
 * (@trebor33)
 * [7 years, 1 month ago](https://wordpress.org/support/topic/custom-taxonomy-capabilities-not-showing-up-under-additional-capabilities/#post-11667692)
 * Hi Kevin:
 * Thanks for getting back to me. I checked all of the checkboxes for my custom 
   taxonomies checked under both the Taxonomy Specific Capabilities metabox and 
   the the Detailed Taxonomy Capabilities metabox and clicked the update button 
   to save the settings. After doing this I am still only seeing the single checkbox
   for manage capabilities under the Additional Capabilities section.
 * When I installed the plugin on my staging server I set up the two taxonomy metaboxes
   as I outlined above before I started adjusting role permissions. As mentioned
   in my first post this was before I realized I hadn’t moved my updated functions
   file from my development to staging servers. From my testing it seems like these
   taxonomy settings aren’t updating when I change the checkbox selections in the
   two metaboxes.
 * Is the plugin saving something in the database that is preventing these settings
   from updating? Let me know if you have any additional ideas on how to correct
   this. Thanks again for your help!
 * P.S. Other than this issue the plugin is excellent. Well designed and easy to
   implement.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Instant Articles for WP] Twitter Logo Displayed Instead of Site Logo](https://wordpress.org/support/topic/twitter-logo-displayed-instead-of-site-logo/)
 *  Thread Starter [trebor33](https://wordpress.org/support/users/trebor33/)
 * (@trebor33)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/twitter-logo-displayed-instead-of-site-logo/#post-7272168)
 * Hello again:
 * I checked with my client and was able to get some additional information on this
   issue. The issue is occurring with the related articles listings. For the image
   for related articles sometimes and image containing the Twitter logo is being
   displayed in place of the featured image for the article. The site also uses 
   the Twitter Cards (JM Twitter Cards plugin), wondering if there may be a conflict
   with this plugin?
 * Thanks again for your help!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Instant Articles for WP] Twitter Logo Displayed Instead of Site Logo](https://wordpress.org/support/topic/twitter-logo-displayed-instead-of-site-logo/)
 *  Thread Starter [trebor33](https://wordpress.org/support/users/trebor33/)
 * (@trebor33)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/twitter-logo-displayed-instead-of-site-logo/#post-7272112)
 * Thanks again for your reply! I will check with my client who reported this issue
   and see if I can get more info (probably should have done this before posting).
   Sorry for the extra hassle, will post again with additional info if this hasn’t
   been resolved.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Instant Articles for WP] Publishing and Testing Articles](https://wordpress.org/support/topic/publishing-and-testing-articles/)
 *  Thread Starter [trebor33](https://wordpress.org/support/users/trebor33/)
 * (@trebor33)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/publishing-and-testing-articles/#post-7268343)
 * Thanks for getting back to me with the additional information on publishing testing
   articles. I will have to spend some time reviewing the documentation links you
   provided within the plugin for the custom transformer rules, thanks for including
   these links in the plugin. Is there a brief example you could provide outlining
   how to use the transformer rules to address warning error messages? Not sure 
   I completely understand the concept outlined in the documentation.
 * Thanks again for your help! I appreciate all of the time you have taken to respond
   to everyone’s questions.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Instant Articles for WP] Author Name Not Showing](https://wordpress.org/support/topic/author-name-not-showing-1/)
 *  Thread Starter [trebor33](https://wordpress.org/support/users/trebor33/)
 * (@trebor33)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/author-name-not-showing-1/#post-7272110)
 * Thanks very much for the fix! I updated to the new plugin version this evening.

Viewing 10 replies - 1 through 10 (of 10 total)