Bj123
Forum Replies Created
-
Forum: Plugins
In reply to: [BP Reactions] Use only emoji autocompleteyeah sorry for that unusual request but I couldn’t find any other autocomplete that works on BP. The bp custom works perfect. Thanks for that!
Forum: Plugins
In reply to: [BuddyPress Social] Buddypress activity stream not share in FBsame here, FB only shares the homepage link and neither the activity link nor the activity post itself…every hint for a solution highly welcome.
Forum: Plugins
In reply to: [Rendez Vous] Calendar not visible on mobile…never mind, i could fix this myself with some custom css
For my part I don’t know because I used another solution for my app. Someone else maybe can answer this please.
Forum: Plugins
In reply to: [WordPress Social Login] Not working on iOS 9I did some further testing and found that WSL is still working fine on the latest iOS 9+ when it is set to open the social login “in page” and not as “pop up” (in WSL settings). Pop up setting only works on the mobile Safari browser but it does not work on UIwebview (hybrid apps) or in other browsers. When changed to open “in page” it works fine even on UIWebview in a native app or other browsers. So at least from my part the issue has solved itself.
Forum: Plugins
In reply to: [WordPress Social Login] Not working on iOS 9same here…works nice on desktop and was working on iOS in the past but stopped working on latest iOS 9 to my big surprise when I just tested…”processing” page never moves forward
Forum: Plugins
In reply to: [BuddyDrive] Mobile file or photo upload doesn't workThanks so much for this! That’s great news!
Forum: Plugins
In reply to: [BuddyDrive] Mobile file or photo upload doesn't workI just noticed the same problem with my old iPhone 4s. Clicking the upload button does not open the usual iOS upload menu with file upload, take a picture, etc. I have a mobile friendly theme so that this usually works. Looks like there’s currently no way to upload via iOS…
Thanks, awesome plugin btw!
Forum: Plugins
In reply to: [Birthdays Widget] Showing Friends only birthdaysThanks so much, great news!
Let me first say that I am not a web developer but merely building my own site. I searched on google and found someone else’s java script regarding old fashioned web apps. Thus it is not really made for a phone gap hybrid app like this one here. It seems that this is in Phonegap/Cordova controlled by plugins and by default usually everything stays in the App. Usually people are having a hard time getting _blank links out of the App. That’s why it is quite unusual that it opens everything in Safari. I just copied this into my custom java field of my theme on the dashboard but it has influence on the entire website and photo lightbox, some other pop-out, etc doesn’t work anymore. That’s why I can only use it for basic testing and it does not resolve the problem of making the app work:
—
$(‘a’).live(‘click’, function (event)
{
var href = $(this).attr(“href”);// prevent internal links (href.indexOf…) to open in safari if target
// is not explicitly set_blank, doesn’t break href=”#” links
if (href.indexOf(location.hostname) > -1 && href != “#” && $(this).attr(“target”) != “_blank”)
{
event.preventDefault();
window.location = href;
}});
@ryanio, did you find a solution for the menu links opening in Safari? How did you solve this? I still can only make this work with some custom java script on my theme, which causes other issues with lightbox, etc., so that I want to avoid that. This has to work by default with Cordova somehow as I just have standard links and no _blank, etc…
Same issue here. I am using my own mobile theme so I don’t expect it to be like a native app but it simply opens up Safari and loads all pages there on all menu items. So theres is not much app left. In addition it shows 62 warning messages while loading a test app image on my iPhone and doesn’t trigger a push notification message that you normally get before you allow push to receive. Please advise. Thanks.