eberlyjm
Forum Replies Created
-
Forum: Plugins
In reply to: [Image and video gallery from Google Drive] Sorting by timestampI’m having the same problem – and it has been occurring for over a year now. My image metadata shows a range from 2020 to 2023 (both in the modified and created dates), yet whether I set the order to ascending or descending, my gallery shows the oldest ones first. Changing the time ordering doesn’t affect the gallery. If I switch to ‘sort by name’ I immediately see that change. So it’s just the time stamp issue.
Forum: Plugins
In reply to: [Awesome Flickr Gallery] Grant Access – Solved?I too am very interested in getting this solved. I just updated my api access info and found out that clicking the ‘grant access’ button no longer works. So I’m no longer able to display private images. Help!
I also would be interested in a work-around if the button doesn’t work (like, giving access manually in the Flickr api) but am not sure how I’d go about that.Forum: Plugins
In reply to: [RSSImport] Can’t display images in feed rssThanks for the plugin.
I’m having trouble displaying the image from the feed.
The %picture_url% is returning (unknown).
Here is the feed source (they installed the SB-RSS-FEED-PLUS plugin to display the thumbnail image as enclosure): http://www.coramdeo.it/feed/
I’m using the following shortcode:
[RSSImport feedurl=”http://www.coramdeo.it/feed/” html=”true” displaydescriptions=”true” before_desc=”<div>” after_desc=”show more </div>” use_simplepie=”true” display=”3″]
The feed text is displaying just fine but no image.
Thanks for any help.Forum: Plugins
In reply to: [User Access Manager] Notify only users in UAM group of a new postNot a waste of time at all. Sometimes by trial and error you stumble upon the solution.
No, even as administrator I received no notification on save/publish.
Very strange.
Thanks for the suggestions.Forum: Plugins
In reply to: [User Access Manager] Notify only users in UAM group of a new postYes, I had read about the ‘clunky fix’ and remember trying it a while back (maybe a year ago) but can’t recall the outcome from back then. I just remember it still was not working out.
I just tested it again. When I save as a draft and then publish, no notifications are sent. If I publish right away, everyone gets notified.Forum: Plugins
In reply to: [User Access Manager] Notify only users in UAM group of a new postSounds like you are ahead of me on php code. Thanks for pointing out the query mismatch. I replaced that line in my code. It hasn’t solved my problem, but it could be part of the issue (npn has not been updated to match the newer UAM tables). I’m guessing other lines of code need to be updated as well (like the function npn_get_allowed_groups, which references the same table). But unfortunately that kind of code is over my head at this point.
Strange that none of your users receive the notifications, while in my case all of them do even when they shouldn’t.
Sorry I can’t be of any more help.Forum: Plugins
In reply to: [User Access Manager] Notify only users in UAM group of a new postNo, my issue has never been solved. I’ve just had to ‘live with’ everyone getting notified (whether they are in the group or not).
I’m not sure why NPN is not triggering the email notifications for you. It could be a number of problems. I’m guessing you have already looked into whether mail.php has been disabled on your server? (this has become standard for shared servers, to avoid email abuse). If mail.php is not active, you’ll have to use an smtp plugin to handle mail.Forum: Plugins
In reply to: [User Access Manager] Access list showing all details (not only on hover)Awesome. That fixed it!
Forum: Plugins
In reply to: [New Post Notification] Emails going to all usersThis still persists for me. I was hoping for a solution because I like the simplicity of this plug-in and I can (theoretically) control both access and notification in a single setting. But since it is no longer working, I may need to switch to something else. 🙁
Forum: Plugins
In reply to: [New Post Notification] Emails going to all usersThe problem persists. All users get emailed instead of just those users with access to the post. Any ideas/help?
Unfortunately, I too have not yet found a solution. All users receive an email when a new post is created, regardless of what user access group is assigned.
I’m not a php expert, but have tried to resolve it with the limited knowledge I have and with lots of research. But so far no luck.
So I too am very interested in finding a solution for this.
Thanks!Hello, I just started having a similar problem. Emails go out to all users, regardless of what their access is. Strange, since it was working properly just several days ago. The only difference is that the WP update came out so now I’m running 4.4.1. Maybe that caused some compatibility problems? When I replaced the plugin script with the code you have above, the users started receiving emails before the post was even published! (a continuous flow of emails notifying the users of an ‘automatic draft’).
Any help is appreciated.
MikeForum: Plugins
In reply to: [User Access Manager] Add/Remove multiple users to groups+1
I take it that this has not been implemented yet?
I noticed that on the Changelog it says “Add bulk edit” (see below), so I thought maybe it had already been added but I was just not seeing it or something. But it sounds like others are looking for it as well. Maybe it was just a “to do” note (?)… It would be a great feature to have.1.2.5.0 2013/12/13 Improve performance. Thanks to all testers. Add bulk edit feature.
Forum: Fixing WordPress
In reply to: Admin Left Menu OverlapI put this in my functions file, and it fixed it (thanks Maderesponsively):
add_action('admin_head', 'admin_menu_fix'); function admin_menu_fix() { echo '<style> #adminmenu { transform: translateZ(0); } </style>'; }Forum: Fixing WordPress
In reply to: HTTP Error when uploading images in 4.1I was having this problem just this morning and spent a few hours trying the various solutions found on forums.
I finally solved the problem in my case (I think!). I have WP Super Cache installed and, although I’ve never had to do this it in the past, I tired deleting all cache files via the plugin and ever since I’ve had no problems with uploading files. I’m no longer get the http error.
Hope this is helpful to someone else.