When tapping the more (...) button you are shown the list of additional options
When tapping the more (...) button on some posts nothing happens
iPhone 11 Pro, 13.3.3, 14.9
There was a report by a user asking where the 'visit' button which shows in the overflow menu accessed using the more (...) button was in 3073074-zen
On testing this, I was unable to open the overflow menu for quite some time while trying to click on it. It seems very specific to where you tap on the screen. I'm asking the user to report if they are having difficulty doing so also.

Tested on iPhone X, iOS 13.5.1, WPiOS 15.0
I looked into this briefly and found that:
(internal reference: pbArwn-gP-p2 for related design discussion, scroll to "Context" section 2nd bullet)
I tested with WPiOS 15.0 App Store version and WPiOS 15.1.0.1 Testflight beta and, as @rezzap mentioned, it seems very specific to where you tap on the screen.
I found that it's super easy to accidentally tap to the right of the three dots to open an individual post view (as if you tapped the image or title just below it). I wasn't able to trigger the problem where tapping on the three dots in the Reader cards is nil or unresponsive.

Tested with WPiOS 15.1.0.0 TestFlight beta on iPhone 6S iOS 13.3.1.
I spoke too soon. After reinstalling 15.1.0.0 Testflight beta, I couldn't get the more menu on Reader cards to open until after I used the filters at least once after the reinstall.
Steps to reproduce:
Result: I expected that tapping the more menu on Reader cards will always work but it doesn't work on a fresh install before any filters have been viewed. (2m14s)
Workaround: open any filtered view and then go back to the previous view.
Tested with WPiOS 15.1.0.0 TestFlight beta on iPhone 6S iOS 13.3.1.
I couldn't get the more menu on Reader cards to open until after I used the filters at least once after the reinstall
This sounds bad. @emilylaguna , can you please try to reproduce on 15.1 to see if we should fix on the frozen branch
@yaelirub Will do, I'll review this later today.
End of day update, I looked at this again and have a working fix with a small caveat: The 'Turn on site notifications' option isn't visible.
The quick summary of the issue is that the menu button action only gets ran when it can find the ReaderSiteTopic for a site:
let service = ReaderTopicService(managedObjectContext: context)>
---> if let topic = service.findSiteTopic(withSiteID: post.siteID) {
showMenuForPost(post, context: context, topic: topic, readerTopic: readerTopic, fromView: anchor, vc: vc)
return
}
The problem is that this topic isn't created until you either tap on the site details itself, or use the filters. Once you do that a ReaderSiteTopic is added to the database and then the more menu will start working.
The fix I have will pass the nil topic to the showMenuForPost method which works since the method expects an optional.
let service = ReaderTopicService(managedObjectContext: context)
let topic = service.findSiteTopic(withSiteID: post.siteID)
showMenuForPost(post, context: context, topic: topic, readerTopic: readerTopic, fromView: anchor, vc: vc)
}
This prevents the menu action from not being ran, but the site notification action doesn't appear because it requires the site topic.
Next Steps
I am currently trying to pin down when this started occurring to see what change may have caused this to happen.
As of right now I can confirm this bug existed in 14.8.3 and did not exist in 14.0
Edit: Confirmed this started occurring in 14.7.
Most helpful comment
End of day update, I looked at this again and have a working fix with a small caveat: The 'Turn on site notifications' option isn't visible.
The quick summary of the issue is that the menu button action only gets ran when it can find the
ReaderSiteTopicfor a site:The problem is that this topic isn't created until you either tap on the site details itself, or use the filters. Once you do that a
ReaderSiteTopicis added to the database and then the more menu will start working.The fix I have will pass the nil topic to the
showMenuForPostmethod which works since the method expects an optional.This prevents the menu action from not being ran, but the site notification action doesn't appear because it requires the site topic.
Next Steps
I am currently trying to pin down when this started occurring to see what change may have caused this to happen.
As of right now I can confirm this bug existed in 14.8.3 and did not exist in 14.0
Edit: Confirmed this started occurring in 14.7.