How to Add Caption to Images in WordPress?

Before finding out the answer for how to add captions to the images in WordPress, we would look into what caption is. Most probably you are already aware of the term Caption and that’s why you are here. So we would complete our definition of Captions in just a single sentence here and not in … Read more

How to Fix Image Upload Issue in WordPress?

Facing an Image upload issue in the WordPress website is not something new. It is one of the popular issues faced by users when we are concerned with image handling in WordPress websites. As common as the issue is, as easier the solutions are. In this article, we are going to look into the probable … Read more

How to Align Image to the Left or Right in WordPress?

How to Align Image to the Left or Right in WordPress? To align images to the left, right, or centre, Click on the image to select it. Locate the block toolbar. Click on the alignment button. You can also use the align feature to get images with text wrapped around them. To upload an image … Read more

How to Upload images in WordPress?

Uploading images in WordPress posts and pages needs just a few steps. It is an easy process. All you need to do is to add the image block to the content editor. There is also a second way of adding the image block. You can do it by simply typing /image in a paragraph block. … Read more

Fix WordPress Login Page Refreshing and Redirecting Issue

Is your WordPress login page keeps refreshing and redirecting it back to the login screen? You undoubtedly must be eager to find the cause behind the error, as you are currently locked out of your WordPress admin because of this error. It is always frustrating to face login issues in WordPress. In this article, we … Read more

React-Native force rtl on android

MainApplication.java import com.facebook.react.modules.i18nmanager.I18nUtil;   //add this code to the onCreate method I18nUtil sharedI18nUtilInstance = I18nUtil.getInstance(); sharedI18nUtilInstance.forceRTL(this,true); sharedI18nUtilInstance.allowRTL(this, true);import com.facebook.react.modules.i18nmanager.I18nUtil; //add this code to the onCreate method I18nUtil sharedI18nUtilInstance = I18nUtil.getInstance(); sharedI18nUtilInstance.forceRTL(this,true); sharedI18nUtilInstance.allowRTL(this, true);

import android.support.v7.app.ActionBarActivity

With Latest version: import androidx.appcompat.app.AppCompatActivity;   public class BaseActivity extends AppCompatActivity {   } import androidx.appcompat.app.AppCompatActivity; public class BaseActivity extends AppCompatActivity { }

Android split string

String currentString = "Hello Java-Hello World"; String[] separated = currentString.split("-"); separated[0]; // this will result into "Hello Java" separated[1]; // this will result into "Hello World"String currentString = "Hello Java-Hello World"; String[] separated = currentString.split("-"); separated[0]; // this will result into "Hello Java" separated[1]; // this will result into "Hello World"