-
AuthorPosts
-
November 23, 2017 at 8:51 am #1759
WPLMSKeymaster3. in the src/contact/contact.html locate the code :
<ion-item><ion-icon name=”logo-facebook” item-left></ion-icon>@{{config.get_translation(‘config.contactinfo.facebook’)}}</ion-item>
and add it manually
<ion-item>
<ion-icon name=”logo-facebook” item-left></ion-icon>@InstagramUSername</ion-item><ion-item>
<ion-icon name=”logo-facebook” item-left></ion-icon>@InstagramUSername</ion-item>
4. The ip address should be publically accessible. Where are you testing the app ? Chrome or Phone or Emulator ?
5. You can use the command Ionic generate page pagename and then copy and paste like other pages. We have created a sample “about page” for reference. To include it in menu, locate src/app/app.components.ts
include the new page : import { AboutPage } from ‘../pages/about/about’; and modify the pages array :
this.pages =[
{ title: ‘Home’, component: TabsPage, index: 0, hide:false},
{ title: ‘About’, component: AboutPage, index: 10, hide:false},
{ title: ‘Directory’, component: DirectoryPage, index: 2, hide:false},
{ title: ‘Instructors’, component: InstructorsPage, index: 3, hide:false},
{ title: ‘Blog’, component: BlogPage, index: 1, hide:false},
{ title: ‘Contact’, component: ContactPage, index: 4, hide:false},
];6. The course tabs are fetched from the API call. I have added a filter here, will share the code after the 3.2.1 update of vibe course module plugin.
November 23, 2017 at 9:46 am #1764
karollaParticipant4. I am using chrome. And how can ı know my ip adress is <span style=”color: #313b3d; font-family: Poppins;”>publically accessible?</span>
November 23, 2017 at 10:04 am #1765
karollaParticipant3. ı need youtube and instagram but it doesnt worked. Can u make a code here better.
November 23, 2017 at 11:35 am #1772
karollaParticipant5. Fixed and ı learnd how to create new page myself lol 🙂
November 23, 2017 at 1:39 pm #1775
WPLMSKeymaster4. Open your ip in another computer, not connected to the same local network. All ip address of the range 192.168.xx.xx are local, so you mobile app can not access it via internet.
November 23, 2017 at 2:15 pm #1776
karollaParticipantI am et korea, and ı am libing in a hotel. So ı cant make it. How can i try it in phone?
November 27, 2017 at 5:38 am #1807
AlexKeymasterWell you can test it with your live website
you can create app id in your live site .
refer this course : https://wplms.io/course/getting-started-with-wplms-mobile-app/November 27, 2017 at 5:44 am #1811
karollaParticipantI have already my app id. And it doesnt work. https://i.hizliresim.com/YOag2D.jpg
But if ı change it wplrs app id then it works.
-
AuthorPosts
- You must be logged in to reply to this topic.