Changeset 12779
- Timestamp:
- 08/01/2023 10:27:54 PM (19 months ago)
- Location:
- sites/trunk/wordpress.org/public_html/wp-content/plugins/photo-directory/assets
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/photo-directory/assets/css/admin.css
r12778 r12779 67 67 68 68 body.post-type-photo label[for="authordiv-hide"], 69 body.post-type-photo #authordiv { 69 body.post-type-photo #authordiv, 70 #photo_category-adder, 71 #photo_color-adder, 72 #photo_orientation-adder { 70 73 display: none; 71 74 } -
sites/trunk/wordpress.org/public_html/wp-content/plugins/photo-directory/assets/js/admin.js
r12775 r12779 23 23 document.getElementById('photo_orientationdiv').hidden = true; 24 24 } 25 26 // Remove a number of interface elements. 27 const interfaceElementsToRemove = [ 28 '#photo_category-adder', 29 '#photo_color-adder', 30 '#photo_orientation-adder', 31 ]; 32 interfaceElementsToRemove.forEach(n => { document.querySelector(n)?.remove(); }); 25 33 26 34 // Highlight custom taxonomies lacking terms.
Note: See TracChangeset
for help on using the changeset viewer.