Format Text

Format Toolbar

Simulator Screen Shot - iPhone 12 Pro Max - 2022-06-20 at 19.32.15

The format toolbar is displayed whenever you edit a note, photo or a notebook, to edit a note simply tap on the text and it will display the note in edit mode where the keyboard will slide up from the bottom and it will display the format text toolbar just above the keyboard, it has 5 formatting options that is Style, Bullet, Indent, Align and More. Style to style text as bold, italic, underline and strikethrough, Bullet to create bullet lists, Indent to indent first line and paragraph,  Align to align text and More with some more options like creating a hyper link.

Style

Simulator Screen Shot - iPhone 12 Pro Max - 2022-06-20 at 19.34.07

Tap the Style button on the Format Toolbar to style text, it displays buttons such as bold, italic, underline and strikethrough to style text in bold, italic, underline or strikethrough font, simply select text and tap any of the style button to style text in the font style you want, to style text back to the regular font e.g from bold font select the bold text and tap the bold button to style it back to regular from bold. To go back to the main Format Text Toolbar tap the back button.

Bullet

Simulator Screen Shot - iPhone 12 Pro Max - 2022-06-20 at 19.41.21
Simulator Screen Shot - iPhone 12 Pro Max - 2022-06-20 at 19.42.15

Tap the Bullet button on the Format Toolbar to create bullet lists, you can create lists such as todos, shopping list etc. using the bullet toolbar, type in the title and create your list in the note section by tapping the note placeholder, after you type in an item tap return to move to the next line and type in the next item, similarly create other items, once you are done select the entire list, then tap any of the bullet list button i.e. classic bullet, dash or numbered bullet to create the bullet list in the style that you want. If you finished e.g. with a todo item then simply tap that item and then tap the tick button, it will apply the strikethrough font over the item to indicate that you are finished with that todo item.

Indent

Simulator Screen Shot - iPhone 12 Pro Max - 2022-06-20 at 20.27.19
Simulator Screen Shot - iPhone 12 Pro Max - 2022-06-20 at 20.28.32

To indent text tap the indent button from the format toolbar and it will display the indent options. In Notewrap you can indent the first line of a paragraph, to do that simply tap  anywhere on the paragraph and then tap the button with arrow pointing right to the line to increase indent of the first line, you can tap button multiple times to increase indent to how much you want it. Similarly you can decrease indent by tapping the button with arrow pointing left to the line to decrease indent of the first line as shown in screenshot 1. To increase or decrease indent for the whole paragraph  tap the increase or decrease indent button as shown in screenshot 2.   

Hyperlink

Simulator Screen Shot - iPhone 12 Pro Max - 2022-06-20 at 20.08.26
Simulator Screen Shot - iPhone 12 Pro Max - 2022-06-20 at 20.09.07
Simulator Screen Shot - iPhone 12 Pro Max - 2022-06-20 at 20.09.57

To create hyperlink in Notewrap select the More button from the format toolbar, then select the text on which you want to create the hyperlink as shown in screenshot 1 and click the link button, the add link dialog box will popup where you will have to enter the full hyperlink address along with the http or https protocol as shown in screenshot 2. A hyperlink text will be highlighted with the highlight text color, tap link to go to the target hyperlink or select the hypertext and tap the link button to edit the hyperlink.

Continue ReadingFormat Text

How to Install and Configure WordPress JWT Auth Plugin?

JWT Auth Plugin lets WordPress authenticate users from mobile apps.
Install the JWT Auth Plugin and activate it from your dashboard.

To configure the JWT Auth Plugin follow the steps below:
1) Edit the .htaccess file and add the following lines to it.
RewriteEngine on
RewriteCond %{HTTP:Authorization} ^(.*)
RewriteRule ^(.*) – [E=HTTP_AUTHORIZATION:%1]
You have to use the File Manager of WordPress to edit the .htaccess file.
If you are using the services of a website hosting provider e.g. Dream Host, then they have their own file manager to manage WordPress files, you can use their file manager to locate and edit .htaccess file.
Open the file Manager and it will list all your WordPress files. You should see a few folders, open the folder with name of your site, eg. (example.com).
You will see the .htaccess file in this folder e.g. (example.com). Open and edit the .htaccess file and add the above lines to it.
If you notice that “RewriteEngine On” line already exists then insert the lines below it, just below RewriteEngine On, it’s important that we follow the sequence.
Most of the shared hosting have disabled the HTTP Authorization Header by default and this enables it.
If you need any help on how to locate and use the File Manager, do get in touch with support team of your WordPress hosting provider.

2) Continue to edit the .htaccess file and add the follow line to it.
SetEnvIf Authorization “(.*)” HTTP_AUTHORIZATION=$1
Just add it below the 3 lines that you added in Step 1
This enables the WPENGINE.

After completion of Step 1 and 2 your .htaccess file should look somewhat like as shown below.
# BEGIN WordPress
# The directives (lines) between “BEGIN WordPress” and “END WordPress” are
# dynamically generated, and should only be modified via WordPress filters.
# Any changes to the directives between these markers will be overwritten.

RewriteEngine On
RewriteCond %{HTTP:Authorization} ^(.*)
RewriteRule ^(.*) – [E=HTTP_AUTHORIZATION:%1]
SetEnvIf Authorization “(.*)” HTTP_AUTHORIZATION=$1
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]

# END WordPress

3) Edit the wp-config.php file and add Secret Key that is used to authenticate.
To add the secret key edit the wp-config.php file and add the following line.
define(‘JWT_AUTH_SECRET_KEY’, ‘your-top-secret-key’);

You can replace the string “your-top-secret-key” with a key from here -> https://api.wordpress.org/secret-key/1.1/salt/
After you edit the above files and add the above lines do save the file.
The wp-config.php file is in the same example.com folder where .htaccess file is.

After you have configured the JWT Auth Plugin as mentioned above and saved the files, you can sign in to WordPress with your credentials from Notewrap.

Continue ReadingHow to Install and Configure WordPress JWT Auth Plugin?

Publish Posts to WordPress

Publish posts to your self hosted WordPress(.org) site right from Notewrap. Before you SignIn from Notewrap to WordPress, you’ve to download and install JWT Auth Plugin. Follow the instructions in the description of this plugin to configure the plugin.  A detail description is here -> How to Install and Configure WordPress JWT Auth Plugin? 

JWT Auth is an industry standard  RFC7519 authentication method recommended by WordPress to authenticate WordPress users via a mobile App.

Once you have installed and configured properly the JWT Auth Plugin, you can SignIn with your WordPress username, password and site details to your self hosted WordPress site and start posting notes as blogs directly from Notewrap app.

Continue ReadingPublish Posts to WordPress