How to Creating a “Pop-up” button in WordPress involves adding HTML, CSS, and possibly JavaScript to your WordPress site Without Plugins

Create a new page or post in WordPress, and switch to the Text editor. Add the following HTML code: <button id=”popup-button”>Start Now</button> <div id=”popup-modal” class=”popup”> <div class=”popup-content”> <span class=”close” id=”popup-close”>&times;</span> <p>Click on the buttons below:</p> <a href=”https://isansar.net/buttom1″ id=”popup-sub-button1″ class=”popup-sub-button”>Whatsapp</a> <a href=”https://isansar.net/buttom2″ id=”popup-sub-button2″ class=”popup-sub-button”>Messanger</a> <a href=”https://isansar.net/buttom3″ id=”popup-sub-button3″ class=”popup-sub-button”>Email</a> </div> </div>   2. Add the CSS styles […]

How to Creating a “Pop-up” button in WordPress involves adding HTML, CSS, and possibly JavaScript to your WordPress site Without Plugins Read More »

How to add push notifications to android app with onesignal and Firebash on Android Studio

Go to Android Studio “Tool > Firebase > cloud messaging >SetUp F.C.M > Connect to firebase (it will open ) Brauser) Create Firebase Account >Cuntineu > Connect open “https://console.firebase.google.com” open your account Click setting icon > project setting > Cloud messaging Enable Cloud Messaging API (Legacy) Go to service Account > Generet new private key

How to add push notifications to android app with onesignal and Firebash on Android Studio Read More »

How to deep link my app on android studio

Past this code on AndroidManifest.xml  <intent-filter android:label=”DeepLink”>      <action android:name=”android.intent.action.VIEW” />      <category android:name=”android.intent.category.BROWSABLE” />      <category android:name=”android.intent.category.DEFAULT” />      <data android:scheme=”http”/>      <data android:scheme=”https”/>      <data android:host=”*”/>  </intent-filter>    Example      2.past this code on first publice class of  AndroidManifest.xml   private String webUrl = “https://www.hlomart.com”;     3. Past this code after

How to deep link my app on android studio Read More »