OnePlus will launch a 5G phone in 2019, try to partner with US carriers

  • At Mobile World Congress Shanghai, OnePlus CEO Pete Lau talked about future plans for the company.
  • During the chat, he said there will be a OnePlus 5G phone released in 2019.
  • He also said that OnePlus is looking to partner with at least one U.S. wireless carrier to sell OnePlus phones in U.S. stores.

Mobile World Congress 2018 happened back in February, but there’s another MWC going on right now: Mobile World Congress Shanghai 2018. At the event, PCMag sat down with OnePlus founder and CEO Pete Lau to discuss future plans for the company.

The two biggest revelations from the conversation are that OnePlus will release a 5G smartphone in 2019, and that the company is actively pursuing partnerships with at least one United States wireless carrier.

The first point about a 5G smartphone is not too surprising, but this is the first time OnePlus has announced plans for incorporating the new technology into its devices. With 5G service starting to trickle out in 2019, it makes perfect sense that OnePlus would offer a phone that is capable of harnessing 5G speeds.

Lau said that his company’s strong relationship with smartphone chip manufacturer Qualcomm is enabling OnePlus to be one of the first smartphone companies to make and release a 5G phone. The OnePlus 6 features the top-of-the-line Qualcomm Snapdragon 845.

Editor’s Pick

As for the partnership with a U.S. wireless carrier, Lau did not say which carrier(s) OnePlus is looking to work with. Currently, every OnePlus device from the OnePlus One to the newest OnePlus 6 only works on T-Mobile and AT&T in the U.S., so they seem the likely targets. However, it’s feasible that OnePlus’ future phones could work on CDMA networks like Verizon and Sprint, if it meant a partnership with those companies.

The bulk of U.S. smartphone shoppers buy their phones direct from their wireless carrier. If OnePlus had devices on store shelves, it would raise the awareness level of the brand to new heights. Currently, U.S. customers must buy OnePlus phones online from various outlets, including OnePlus.com.

However, OnePlus is a Chinese company, and President Donald Trump and his administration have proven over the past year that Chinese companies are less welcome in the United States than ever. This could prove to be a huge hurdle for OnePlus’ ambitions in that regard.

Lau did point out that – should OnePlus snag a wireless carrier deal – OnePlus fans would not have to worry about their devices getting loaded with carrier bloatware. Lau said the core of the company’s philosophy is a “burdenless” experience, and bloatware would go against that policy.

NEXT: Missing notifications on your OnePlus device? Here’s the likely fix

Source: Android Zone

The post OnePlus will launch a 5G phone in 2019, try to partner with US carriers appeared first on TuneMaster.ml.

Turn your Fire tablet into an Echo Show with this new dock

An image of the new Show Mode Charging Dock for Amazon Fire tablets. Amazon

  • Amazon just announced the Show Mode Charging Dock, which turns your Fire HD tablet into a makeshift Echo Show.
  • The dock is available for the Amazon Fire HD 10 and Fire HD 8 tablets.
  • The docks list for $55 and $40 respectively, and ship on July 12. Pre-orders are open now.

The Amazon Echo Show is a nifty piece of hardware that gives you all the power of an Echo smart speaker combined with a tablet-like display for additional functions. The list price of $230 is a significant downside to the product, though.

But now, Amazon is offering a workaround product that will turn your Amazon Fire tablet into a makeshift Echo Show. The Show Mode Charging Dock will prop up and charge your Amazon Fire HD 8 or Fire HD 10 tablet, and the upcoming Show Mode feature within the Fire software will add an always-on display and hands-free control of Alexa.

The dock charges the tablet by pin connections between the dock itself and a slim tablet case that comes along with it. See the pic below for an example:

An image showing the parts of the Show Mode Charging Dock. Amazon

In a way, this new charging dock and software combo is better than the actual Echo Show, as you can use the device as a smart display for certain tasks, and then un-dock the tablet to use it for other functions. The Echo Show, of course, can’t be turned into a tablet.

However, the list price for an Amazon Fire HD 10 is $165 (without annoying special offer ads), and the corresponding Show Mode Charging Dock is $55. Buying both together saves you about $10 as compared to buying an Echo Show, so it’s not like you’re getting enormous savings. But if you already have a Fire HD tablet, this Show Mode Charging Dock is a no-brainer.

Editor’s Pick

The charging dock for the Fire HD 8 lists for $40, and the Fire HD 10 dock lists for $55. But if you pre-order one of the docks now, you’ll save $5 on either one. Both docks will ship on July 12 with free shipping for Amazon Prime members.

The software update that enables Show Mode on your Fire HD tablet launches on July 2. When you place your tablet into the Show Mode Charging Dock, it will automatically switch it to Show Mode. However, you will likely be able to switch the tablet into Show Mode manually without needing the official dock.

Click the buttons below to pre-order your Show Mode Charging Dock for your corresponding tablet:

Source: Android Zone

The post Turn your Fire tablet into an Echo Show with this new dock appeared first on TuneMaster.ml.

How to Exclude Specific Pages, Authors, and More from WordPress Search

Do you want to exclude specific pages, authors, and more from WordPress search? By default, WordPress search includes all posts and pages in the search results. In this article, we will show you how to easily exclude specific pages, posts, authors, categories, and more from WordPress search results.

Exclude pages, authors, category, tag, and more from WordPress search

Why Exclude Items from WordPress Search?

The default WordPress search feature shows results from all WordPress posts, pages, and custom post types. This is acceptable for most websites and does not affect WordPress SEO or performance.

However if you are running an online store, then there are some pages that you may not want to appear in search results. For example, the checkout page, my account page, or a thank you page after successful downloads.

Similarly, if you are running a WordPress membership website, or a LMS plugin, then there would be pages and custom post types on your website that you may want to exclude from search results.

Some website owners may want to hide a category or taxonomy, while others may want to hide posts from specific authors. Optimizing your site-search by excluding unnecessary items offers a better user experience and improves your website’s usability.

That being said, let’s take a look at how to easily exclude items from WordPress search.

1. Exclude Specific Posts, Pages, and Custom Post Types from Search

The first thing you need to do is install and activate the Search Exclude plugin. For more details, see our step by step guide on how to install a WordPress plugin.

Upon activation, edit the post, page, or custom post type that you want to exclude from the search result. On the edit screen, you will see a search exclude box.

Exclude from search box

Simply check ‘Exclude from Search Results’ checkbox and don’t forget to save your post/page. This particular post/page will not appear in WordPress search results anymore.

To view all the items that you have excluded from search, go to Settings » Search Exclude page. Here you will see a list of items you have excluded from WordPress search results.

Content you have excluded from WordPress search

If you want to remove the restriction, simply uncheck the box next to the item you want to add back and click on the save changes button.

2. Exclude Specific Category, Tag, Custom Taxonomy From WordPress Search

This method requires you to add code to your WordPress website. If you haven’t done this before, then check out our guide on how to copy and paste code snippets in WordPress.

First, you need to find the category ID that you want to exclude.

Next, you need to add the following code to your theme’s functions.php file or a site-specific plugin.

function wpb_search_filter( $query ) {
        if ( $query->is_search && !is_admin() )
                $query->set( 'cat','-7' );
        return $query;
}
add_filter( 'pre_get_posts', 'wpb_search_filter' );

Don’t forget to replace 7 with the ID of category you want to exclude.

Now, let’s suppose you want to exclude more than one category. This is how you will modify the code to exclude multiple categories.

function wpb_search_filter( $query ) {
        if ( $query->is_search && !is_admin() )
                $query->set( 'cat','-7, -10, -21' );
        return $query;
}
add_filter( 'pre_get_posts', 'wpb_search_filter' );

We have simply added the category IDs that we want to exclude separated by commas.

Exclude Specific Tags from WordPress Search

If you want to exclude posts filed under specific tag, then you can use the following code.

if ( $query->is_search && !is_admin() )
                $query->set( 'tag','-19' );
        return $query;
}
add_filter( 'pre_get_posts', 'wpb_search_filter' );

Don’t forget to replace 19 with the ID of tag you want to exclude.

Similarly, you can modify the code to exclude multiple tags as well.

if ( $query->is_search && !is_admin() )
                $query->set( 'tag','-19, -27, -56' );
        return $query;
}
add_filter( 'pre_get_posts', 'wpb_search_filter' );

Excluding Specific Terms in a Custom Taxonomy From WordPress Search

If you want to exclude a term in a custom taxonomy from WordPress search results, then you will need to add the following code.

function wpb_modify_search_query( $query ) {
        global $wp_the_query;
        if( $query === $wp_the_query && $query->is_search() ) {
                $tax_query = array(
                        array(
                                'taxonomy' => 'genre',
                                'field' => 'slug',
                                'terms' => 'action',
                                'operator' => 'NOT IN',
                        )
                );
                $query->set( 'tax_query', $tax_query );
        }
}
add_action( 'pre_get_posts', 'wpb_modify_search_query' );

Don’t forget to replace ‘genre’ with the custom taxonomy and ‘action’ with the term you want to exclude.

3. Exclude Specific Author From WordPress Search

If you want to exclude posts created by a specific author from WordPress search result, then there are two ways to do that.

If the author has just a few posts, and you are sure they will not be adding any more posts, then you can just use the first method in this article to exclude their posts from WordPress search.

However if there are a lot of posts written by an author, then you can use the following code to exclude all of them from WordPress search results.

function wpb_search_filter( $query ) {
        if ( $query->is_search && !is_admin() )
                $query->set( 'author','-24' );
        return $query;
}
add_filter( 'pre_get_posts', 'wpb_search_filter' );

Don’t forget to replace 24 with the user ID of the author you want to exclude.

You can also use the same code to exclude multiple authors by adding their user IDs separated by comma.

function wpb_search_filter( $query ) {
        if ( $query->is_search && !is_admin() )
                $query->set( 'author','-24, -12, -19' );
        return $query;
}
add_filter( 'pre_get_posts', 'wpb_search_filter' );

We hope this article helped you learn how to explude specific pages, authors, and more from WordPress search. You may also want to see our list of the best WordPress search plugins to improve your site search.

If you liked this article, then please subscribe to our YouTube Channel for WordPress video tutorials. You can also find us on Twitter and Facebook.

The post How to Exclude Specific Pages, Authors, and More from WordPress Search appeared first on WPBeginner.

Source: Wordpres

The post How to Exclude Specific Pages, Authors, and More from WordPress Search appeared first on TuneMaster.ml.