WP Facebook Messenger

FACEBOOK MESSENGER FOR WORDPRESS Fastest way to get connected For any sellers and business owners!

Woocommerce

WOOCOMPOSER Page Builder for WooCommerce WooCommerce Page Builder is The Quickest Way to Create from Product Detail Page to Thank-You Page and Everything in Between.

Facebook Live Chat For Wordpress

FACEBOOK LIVE CHAT FOR WORDPRESS The Very First Step of The 2017 Facebook Marketing Strategy

Yoast SEO

WordPress out of the box is already technically quite a good platform for SEO.

Contact Form 7 Multi-Step

CONTACT FORM 7 MULTI-STEP Featured on our Best WordPress Plugins Adding steps for your complex form The best solution to keep the form clean and simple to your visitors

Friday, December 15, 2017

ADD AND REMOVE THE WIDGET IN THE WORDPRESS WORK


ADD AND REMOVE THE WIDGET IN THE WORDPRESS WORK

When it comes to widgets in WordPress, you probably think of the widgets that appear on your site. However, the widget I mentioned in this article is not for displaying outside the website but as a widget within the admin page, which is located in the Dashboard as shown below.
ADD AND REMOVE THE WIDGET IN THE WORDPRESS WORK
And in this tutorial I will show you how to delete the default widgets as well as create a new widget in the admin page to use it to display some of the information you want.

How to delete the default widget in the admin page

If you are like me, the widgets in the admin page almost do not use it a long time because it is too little information, just as we should delete it to avoid seeing it again.
To do this, we will create a function and hook it into the action hook named wp_dashboard_setup.
01
02
03
04
05
06
07
/**
 * Delete the default widget in the admin page
 */
 function tp_remove_default_admin_widget() {
 }
add_action( 'wp_dashboard_setup', 'tp_remove_default_admin_widget' );

And then in this function we use the remove_meta_box function to delete the widget here. We use this function because these widgets are meta boxes created for page type called dashboard. For example, if you want to remove the WordPress News widget, you have the following:
01
02
03
04
05
06
07
08
09
/**
 * Delete the default widget in the admin page
 */
 function tp_remove_default_admin_widget() {
     remove_meta_box( 'dashboard_primary', 'dashboard', 'side' );
 }
add_action( 'wp_dashboard_setup', 'tp_remove_default_admin_widget' );

Similarly, you can see a list of the default dashboard names here and want to delete which one then copy that into your function.
In case you want to remove the welcome display in the Dashboard, you must use remove_action (), and place the code outside of your function.
01
remove_action( 'welcome_panel', 'wp_welcome_panel' );

How to create a widget in the admin page

Usually when creating a website for a customer, we may need to use the Dashboard to post a reminder notice, or advanced features such as getting the latest news on our site, or updating the price of gold. Something, ... depending on the level of your code.
In this tutorial I will teach you how to create a simple widget and a widget to display the latest posts on your page via RSS.
We first create a separate function and hook it into the action hook named wp_dashboard_setup. And in this function we use the function wp_add_dashboard_widget () to create a new widget.

01
02
03
04
05
06
07
/**
 * Create widget in admin page
 */
 function tp_create_admin_widget_notice() {
    wp_add_dashboard_widget( 'tp_notice',
'Reminder notes','tp_create_admin_widget_notice_callback' );
 }
add_action( 'wp_dashboard_setup',
'tp_create_admin_widget_notice' );

In the above paragraph, we have:

01
wp_add_dashboard_widget( 'tp_notice', 'Reminder notes',
'tp_create_admin_widget_notice_callback' );

Inside:
tp_notice: ID of the widget, the ID must not be the same as the other widgets.
Reminder notes: The title of the widget
tp_create_admin_widget_notice_callback: The name of the function that it will execute in this widget, where you can understand what this function contains which is displayed in the widget whose ID is tp_notice.
Okay, now let's create the function tp_create_admin_widget_notice_callback() that we have declared above to display the content of the generated widget. In this function we temporarily display a simple text.
01
02
03
04
05
06
07
function tp_create_admin_widget_notice_callback() {
    echo '
This is sample content in the tutorial on how to create a
simple widget in the admin page.
';
}

Save and the results we have:
ADD AND REMOVE THE WIDGET IN THE WORDPRESS WORK
If you want to create a widget to display the list of the latest articles on your website or any website, see the instructions in the article Build Your Own WordPress Dashboard Widget for Any RSS Feed.
Since you have full access to the PHP code in this section, you can create your own content here.


The mechanism of use is just that. But hopefully once you know the simplest things, you'll be able to easily find better ways to use widgets in the more useful administration page.

Thursday, December 14, 2017

ADD COMMENT FEATURE WITH SOCIAL NETWORK ACCOUNT

ADD COMMENT FEATURE WITH SOCIAL NETWORK ACCOUNT

Today's social networks are becoming more popular, as the big ones like twitter, facebook quickly approach and conquer the user, with millions of users around the world, social networking has always been a topic for internet services to tap into the potential for business and development. However, with small websites or blogs, how does social networking benefit you and how to exploit it effectively?
In this article, I will mention a basic way to exploit the potential from the social network for websites, blogs Connect your users between social networking and blog or your wordpress website.
ADD COMMENT FEATURE WITH SOCIAL NETWORK ACCOUNT

benefit

When someone needs to register a member / comment on your website / blog  they must fill out the form and register, this will take time and boring the reader, so if your wordpress blog allows the use of social networking accounts to log in then the user will save more time. At the same time, users also manage their accounts more easily and they will also enjoy a lot more.
Moreover, facebook now has the feature of displaying their activity, that is, if they have a comment or like, the activity will also appear on their page, it receives more traffic from other members. But this feature is only available if you use facebook comment.

Plugin                                                                                          

With the huge plugin archive of wordpress, you will easily find the pluign that will allow you to add the wordpress login feature by social networking accounts. Now you do not need to manually program and work with complex social networking APIs. Underneath you will list the best plugins to do this for you.

Disqus

This is a separate comment system, not using the default comment system of wordpress, it also includes a log-in feature for commenting through social networking accounts and having mail notifications when someone responds to a comment. This is a pretty good plugin that you recommend to use it.
ADD COMMENT FEATURE WITH SOCIAL NETWORK ACCOUNT

social login

This plugin allows the display of links with icons to the reader login by social networking account right at the comment frame, login page, registration page and sidebar. The highlight of this plugin is very easy to use and supports a lot of different social networks. At the same time the service of this plugin is also very good, always update the latest version when wordpress update new version
However, for members to use the registration feature, you must turn on the registration feature at setting ---> general and mark the item "can anyone register"
ADD COMMENT FEATURE WITH SOCIAL NETWORK ACCOUNT

Facebook

This is a plugin for wordpress released by facebook, Only with this plugin you can let users interact with your blog or website wordpress most fully when letting you integrate like button into blog or wordpress website, comment by facebook account, post on fanpage, tag friends in the post .... If you just want to target facebook users, this plugin really can not be ignored.
ADD COMMENT FEATURE WITH SOCIAL NETWORK ACCOUNT


Social comment

Do you want to use Disqus comment, Google plus comment, Facebook comment without having to install many plugins? If you install this plugin you will have all 3 comment systems without much customization.
ADD COMMENT FEATURE WITH SOCIAL NETWORK ACCOUNT

Last words

This article also briefly talk about the benefits of interacting social networking accounts with wordpress and introduce some plugins to help you do this job easily. However, the virtual world of social networking is very vast and the potential for exploiting the benefits is not limited. Come here, have you tried these plugins yet?

If you know more about this free and good plugin then do not hesitate to share it with everyone. Wish your blogs grow.

related articles

Monday, November 20, 2017

6 ways to save money on facebook ads

6 ways to save money on facebook ads

Advertising on facebook offers many ways for your posts to reach out to more people. however, running ads is not always effective. In addition, the price of advertising is increasing, which will be very detrimental for retailers who have little money, But there are still ways to save money running ads on facebook.
Here are some ways you can save money running ads onfacebook.

Save money on facebook ads by:

The way create a viral post on facebook

viral post on facebook based on the principles of information spread, This is a really attractive form of marketing that businesses and online retailers are aiming for. Instead of investing huge sums of money desperately in running ads.
With the creation of a viral post on facebook your content will be spread quickly thanks to your friends on facebook. Thanks to such spread, your content will be accessible to people without running ads, so will save you a lot of money running ads on facebook.
Use facebook spiderlink you can create yourself a viral post on facebook, Is not that great ?

Know your goals

Want to save money running ads on facebook, must first know your real target on facebook ads.
Want more people to know about your brand, or get more video views? Set your goals first because it will help you choose the best, most relevant, and most effective advertising campaign. Choose a good goal that is synonymous with running ads effectively and saving money running ads.

You should install the facebook pixel code on your website

If you do not have the facebook pixel code installed then you should do it right before the advertisement, because doing this will save you a lot of money running ads. It allows you to re-target your website visitors with facebook ads.

Target people who already know your company

With the ability to target customers again using a custom audience, You can reach a group of core people that you know are already interested in your product or service. If targeting you can include those who enter your facebook page or visit your website. If you catch this good you can save a lot of money when running facebook ads.

Do not run ads longer than you need

Once your ads have run, check the frequency in your ad manager to see how many times your ad has been displayed. I usually turn off an ad when it reaches the frequency of 2.5-2.75 because since then it has been showing up for your target group regularly. This will help you save money running ads on facebook is not small.

Avoid ads with too-heavy-text images

Although facebook has removed the text limit for promotional images, but those images that have more than 20% of text can reach smaller audiences than those with less text. Choose bright and eye-catching images even in small advertiser sizes, Keep it simple and avoid having too many texts to reach more people. Save money running ads more.

Last words

Facebook advertising creates opportunities for online retailers, but you have to know how to use it wisely to save money running ads on facebook.
I hope that these will help you effectively use facebook advertising to achieve marketing goals and implement it so that you save money running ads on facebook most.

related articles

Saturday, November 18, 2017

The plugin required for a wordpress blog


You know how to install the plugin and use the plugin, and this is also the outstanding feature of WordPress.Org compared to WordPress.Com. But avoid the plugins do not know or do not know a lot of plugins, I have a list of instructions of each plugin that he considers to be necessary and you should install no matter what your site.

List of plugins to be installed

The following plugins have detailed instructions at Hatachi Nara, please click on the plugin name to see the most detailed instructions.

JetPack - A collection of useful tools for WordPress (not installed at localhost).
Akismet - Strong anti-spam comment.
Advanced TinyMCE - Add editor buttons to WordPress.
Yoast SEO - SEO support for the best WordPress.
WP Super Cache - Caching to speed up your website.
iThemes Security - The most popular security plugin for WordPress.
Contact Form 7 - Create the best contact form.
Responsive Lightbox by dFactory - Create a lightbox effect when you click on a photo to view a larger image.
ReplyMe - Send a notification when someone responds to a comment.
Disqus - If you want to use comment system like Thachpham.com then install.
These are the plugins that you think you should install on any kind of website, of course besides the plugin you can install any plugin that you think fit.

LAST WORDS

Those are the plugins needed for a wordpress blog, of course each blog has its own fields, And I dare you with a lot of plugins that match the field that your bolg is active, With the huge plugin store you spoiled for choice of plugins suitable for you.


Friday, November 17, 2017

Create a push facebook notification-win back old customer.

Create a push facebook notification-win back old customer.

at a typical cost to get a new customer, it is not surprising that more and more e-commerce retailers are disappointed with the rising cost of advertising, but not the effect.
However, the truth is many online retailers have done little to win back lost customers or win back old customers, because I can assure you that old customers are a great source of sales.
Online retailers only focus on increasing traffic, spending more money to get higher rankings, more clicks. And they spend a lot of money on advertising, converting new visitors into leads, and more.
But they have completely ignored the simplest way to increase sales thanks to the win back old customer, but do you know that win back old customers have the opportunity to switch from 60 to 70%?. A customer who has purchased from you two times is likely to convert nine times more than a potential customer when they have not purchased from you.
Create a push facebook notification-win back old customer.

So how can you ensure that you can win back old customer? And How to make sure that customers are interested and buy new products from you again?
It is very simple, just create a push facebook notification, also known as win back old customer campaign by push notiffication on facebook. And thanks to the customer data that this plugin collects, you can create a customer-directed marketing campaign on the product you are selling.

What is campaign “create a push facebook notification-win back old customer” ?

Create a push facebook notification-win back old customer.

Perhaps you still do not understand, What is campaign createa push facebook notification, win back old customer?
Simply, you market your products to old customers by creating push notifications on facebook to let your customers see. Notice the small red as you often see and click on it unconsciously every time you online FB. How to create a facebook push notification I have a post then, you can read it again.
The great push facebook notification is that it can help your product reach 100% of the old customers you are targeting, So win back old customer with push notifications facebook can save you a lot of money running the ads, but still increase sales for you.

Win back old customer by client data

Create a push facebook notification-win back old customer.

Now you have the plugin that can create a push facebook notification, but customer data is not available for you to create a campaign. Do not worry, this plugin is capable of collecting customer data for you, you will always have old customer data to prepare for successful marketing campaigns.
Also you can use createa viral post on facebook and facebookauto reply to be able to expand customer data for your own.
The simple operation of this plugin can help you master the win back old customer campaigns to bring more efficiency in bringing product information to your customers. win back old customer increases revenue while still saving money running ads for you. why do not you try ?
Note: Create a push facebook notification is a great tool to help you win back old customer, increase sales, but you should not be so overused on it. You know, like you customers do not like bothering, use smart to get good.

related articles

Auto reply facebook messenger-best way collection customerdata.

Thursday, November 16, 2017

ENVIRONMENTAL SUPPORT FOR WORDPRESS WEBSITE

ENVIRONMENTAL SUPPORT FOR WORDPRESS WEBSITE


When managing the website, the size of the entire website source code contributes very important to operating the website for a long time in the future. For example, if the total site size is low, moving the website to other servers is easier, or the data backup is fast without problems. On the contrary, the capacity is too high compared to the actual size of the website will cause many difficulties, especially the backup will be much harder.
However, I do support for how many times many of you do the website without thinking about optimizing the source code in the right way so there are many cases where the website is not much data that the total content Reached up to a dozen GB. In this article I will share a little about what to know and should do with the website to save space but still ensure does not affect the operation of the website.

OPTIMIZE IMAGES BEFORE UPLOADING

WordPress has a powerful image manager and I encourage people to upload photos directly to the host of the website for us to reuse or manage, on the one hand also make their images more secure than the. upload to other image hosting services.
However, not every image we upload on the website that need to be optimized before upload. Assuming your image has a resolution of up to 2k, 3k (maximum width) but actually users on the site do not need that, because if the content width on the website is only 800px, your image No matter how sharp it is, it only shows 800px and you want to see the full click on it, but this is only for high quality websites like photography websites, wallpaper. With website sales, the image should only have a maximum width of 1000px because that is enough for customers to see the product, if it is too slow then the website is really losing customers than it is. small.
Next is sometimes the image size is too high compared to the quality of it needed to display on the website. So before uploading you should reduce the image size properly, reduce the capacity sometimes image quality will be difficult to see the difference with the naked eye so you do not need to worry. You can install the EWWW Image Optimizer, WP Smush plugin or more, invest $ 5 / month using Kraken as yourself to optimize images when you upload to the website.
And finally, take control of the self-generated image files of WordPress that we sometimes do not need, on how to handle self-generated images and remove unused images. Treat your WordPress image as a full set.

DO NOT SEND BACKUP TO HOST

Backup website data for the purpose of restoring your website data when the data is corrupted or the current host has problems can not access but need to move the website data through another host. So then we save the backup on the host itself is running the site is almost nonsense, but also dangerous to waste the host.
You should keep these backups in safe places like cloud storage services such as Dropbox, Google Drive or Amazon S3 (recommended) because your computer is not sure it is safe and stable. More than the host, the other great service is that they are very reputable and almost impossible to interrupt.
Do not think that when backing up we will download the backup and upload to the other services, time consuming. You can use the BackWPUp plugin or BackupBuddy to back it up and upload it yourself to the other hosting services as quickly as possible.

CHECK LOG AND DO NOT LOG IF NOT REQUIRED

In addition to backup, log files or log access (host log) on the host is the main culprit of the resource consumption of the host. For the error log website, we sometimes do not need to save the log continuously because there is always need to see log error, but only when debug to find fault or patch will need to pop up. If you do not want the webserver to log the error logs on your website, simply add the following to wp-config.php (preferably for the top, below <?php).
01
error_reporting(0);
Next, make sure you set WP_DEBUG is false wp-config.php to disable debugging. And delete the .log or error_log  file on the host if there is.
For access logs we can not turn off using Shared Host, but if we use our own server, we can disable it by deleting the access log statement in the webserver setup file.

CHECK THE CONTENT WP-CONTENT

Many plug-ins save unnecessary data in the wp-content directory such as plugin log files or temporary files. In the wp-content directory, except for the cache directory and the image, we should not add anything here.

NOT SAVE VIDEO OR COMPRESSED FILES DO

If you have a lot of video sites, it's best to upload them to YouTube if you do not need to hide your videos. Or if your video needs to pay for a new viewer, the more you should not upload to the host running WordPress because regular players can be easily downloaded through the support software like Internet Download Manager is the typical example, instead. You can use Wistia or SproutVideo to prevent download.
As for the compressed files for others to download, you can upload to hosting services such as Mega.co.nz, Fshare or paint to find a cheap server service but have high hard drive to upload and For users to download there.

OPTIMIZE DATABASE

Database also uses the hard drive on the host to save, which means that the larger the database, the more storage capacity, and when backing up the entire website it will save to the backup so the capacity will be huge. I have just witnessed a WordPress site using Woocommerce with a database up to 4GB and the data is now 3.7GB junk, this is completely true.
Be sure to optimize your database's wp_options table so that it does not contain a lot of junk data, and you should also manually clean the database periodically so that your data is smooth. The longer your database is, the harder it is to optimize.
If you use WooCommerce then check the wp_options table is large, if so, because it contains many unused session and transient, run the following command several times to clean up.
01
02
DELETE FROM `wp_options` WHERE `option_name` LIKE ('_transient%') ORDER BY `option_id` LIMIT 20000;
DELETE FROM `wp_options` WHERE `option_name` LIKE ('_wc_session_expires%') ORDER BY `option_id` LIMIT 20000;

If your database is large then you should run this command many times, because you should limit it to delete every 20000 lines to avoid stuck host by MySQL processing too much.
Currently the database of thachpham.com is exactly 32MB, I have not deleted the data not used in wp_postmeta anymore. Say so so you understand that WordPress does not eat as many databases as you think.

LAST WORDS

The content above I have also seen the optimization of the website size is not too complex as we think, but the benefits of it is very large, because you certainly will not be able to save the website on. Same with a host for a long time that may need to move to another place, and light data will help us do things faster and simpler.


How big is the source code of thachpham.com? Exactly 800MB uncompressed, compressed tar.gz format is still more than 700MB.

 
loading...