How to remove small line from under post title in Soho theme?

Use below CSS at Theme > Customize > Advanced > find & select Add CSS...

.widget.FeaturedPost .featured-post-snippet:before {
  display:none!important;
}

When the sharing on a post to Facebook is broken

The first time a URL is shared on Facebook they send a bot to visit the URL and check the post metadata which is embedded in the code. The metadata it needs are things like the URL of the Featured Image, the title, the excerpt and the author's name. This data is always available on Global Voices posts, if the post is visible, the data is in the source code.

When Facebook finds this data it saves a copy (cache) and holds on to it forever. This is theoretically good, because when new people share the URL it can happen faster, but there's a problem: If the bot can't load the post, it saves empty data and never updates it!

The effect is that any error with the page during that first share will make the post broken forever unless you manually reset the cache with the Facebook Sharing Debugger tool. 

  • Visit Facebook Sharing Debugger
  • Paste in the URL of the post
  • Click Debug to load the post info
  • Click Scrape Again to have it rescan the URL
  • Check that all the data is right and the image is showing.

Final Thought: Always test Facebook sharing after publishing a post!

WIN 10 - Using Library to organize your Data

Library is similar to a folder. For example, when you open a Library, you'll see one or more files. 

However, unlike a folder, a Library gathers files that are stored in several locations. This is a subtle, but important, difference. Libraries don't actually store your files, just shortcuts to them. 

Libraries monitor folders that contain your files, and let you access and arrange the files in different ways. For instance, if you have music files in folders on your hard disk and on an external drive you can access all of your music files at once using the Music Library.

You don't need to duplicate the data however you can link all the related material in different folders in same or different libraries to allow you "brain organize material"

Example:
You can collect all Louise Hay material in one "Folder" as well as from other authors however you have a Library called "Mind & Body" where you list things by modalities like: affirmations, meditation, energy healing, intuition, tapping, etc. 

Folder:  (original data)                     Library: Mind & Body (Just link access)
Authors > Louise Hay                      Folder: Affirmation: Louise Hay, Wayne Dyer, etc.
Authors > Wayne Dyer                    Folder:  Meditations: Louise Hay, Sonia Choquette

Now DO NOT DELETE directly any file from the Library

To remove a folder from a library, open the library, click or tap the Manage librarybutton on the Manage tab, select the folder you want to remove, click or tap Remove, and then click or tap OK

THX

Calendar - Add a Google Calendar to your blog

<Google Calendar>
1-Open your Calendar in Google
2-Top Right to Settings > Calendar Tab
3-Click over the Calendar you want to use in your blog
4-Copy the embed this calendar code

<Blogger>
5-You can posted in a Page = Create a new page
6-Go to the HTML and paste the code

DONE

Gmail - sent your email from one gmail account to another

1-Login to the gmail account to be transfered
2-Click on the top right the icon that looks like a wheel > settings
3-Click Forwarding and Pop/Imap > add forwarding address me@gmail.com > proceed >ok
4-Login to the gmail account who will be receiving the emails
5-Copy the confirmation code > paste the code to the 1rst account > verify
6-[*] check forward a copy of incoming mail 
7-Save change

DONE

Gmail - Delete an account

1-Login to the subject email account
2-Click the Google Account Icon > select My Account
3-In Account Preferences > select Delete your account or services
4-Select Delete Google Account and data > Login to the account
5-[*] check yes both checkbox & delete forever the account

DONE

Domain Setup - How to set 1 and 1 domain-name to your blogger

Buy your domain-name from the 1 and 1 company.
Login to your 1&1 account and your Blog account.

<Go to 1&1 Control Panel>
   1-Use your domain
   2-DNS settings
   3-A/AAAA Records
       [*] Other IP Address
       IPV4 Address 216.239.32.21
       Save > Yes
   4-Copy your domain-name 

<Go to Blogger Dashboard>
   5-At Settings under Publishing > click _Setup a 3rd party URL for your blog
       www.domain-name
   6-Save

<Go to 1&1>
   7-Select Subdomain > Add Subdomain
   8-Write subdomain [www] > save

<Go to Blogger>
   9-Copy the 2nd Subdomain
 10-Repeat step 7 & 8 

<Go to 1&1>
 11-Click the 1rst subdomain
 12-adjust destination
 13-DNS Settings
 14-[*] Cname

<Go to Blogger>
 15-Copy the destination for the subdomain www

<Go to 1&1>
 16-Paste in Alias
 17-[*] checkbox
 18-Save
 19-Do the same for the 2nd subdomain

<Go to Blogger>
 20-Save
 21-Edit (over your new domain)
 22-[*] Redirect
 23-Save

DONE

How to Open the Portal from a Static Page instead of the Blog Format - other than Home

Create one Static Page however do not call it Home yet and add some content.

Pages > New Page
Save > Publish your new page
Settings >Search Preferences > Custom Redirect > Edit
From: box forward slash > / 
To: box page name - in our case it was > /p/portal.html
Checked Permanent
Save > Save Changes

All Blogger static pages have a /p in front of the URL.  You can see that the html name was the page title we used, so if you used something else for your title like 'Main Page' then the html would be /p/main-page.html.

How to remove the TITLES in Pages

Theme> Edit HTML >Find: </b:skin> > Copy/paste the code after

<b:if cond='data:blog.pageType == "static_page"'>
<style>
.post-title.entry-title{
display: none;
}
</style>
</b:if>