Guide to fix GTIN issues in Google Shopping

Blog, IT Outsourcing, Software Development, Tutorials
Today we'll look into Identifier-related errors in Merchant Center. We'll talk about why these errors happen and how to fix them. What is GTIN? GTIN is a unique product identifier which have to be inserted into the product data feed file in the Google Merchant Center. The abbreviation stands for Global Trade Item Number. Such Product identifiers are a series of numerical or alphanumerical digits - a barcode assigned to a product. They help to identify and recognize a specific product. UPIs are assigned by manufacturers or a designated organization (such as GS1), unlike ASIN or eBay item number - which are identifiers assigned by the selling platform itself. As the name suggests, it is a unique number assigned to each product which helps Google in its identification. Thanks to GTIN, Google can correctly classify the product and…
Read More
Shopify Tutorials: Shopify Apps Charges Types

Shopify Tutorials: Shopify Apps Charges Types

Blog, Shopify, Software Development, Tutorials
There are four different types of Shopify apps charges:. Subscription chargesApp usage chargesOne-time app purchasesApplication credits Subscription charges These types of Shopify apps charges are for recurring apps such as monthly subscriptions. These subscription charges appear on regular Shopify subscription bills. We can bill for app subscriptions and app usage as part of Shopify's 30-day subscription billing period. Does not matter app has a separate 30-day billing cycle, which impacts the charges you'll see on your Shopify bill. We have invoiced every 30 days for the Shopify subscription and paid in advance for the following 30 days. For example, if you receive a Shopify invoice on April 5th, then Billing cycle will completed on May 4th. On May 5th, you will be billed for the next month of your app…
Read More

How to get followers count from Social Platforms in PHP with jQuery?

Blog, PHP, PHP Scripts, Tutorials
In this blog we describe how you can get followers count from Facebook, Instagram, YouTube and Twitter profile URL. When you enter a Facebook or Instagram URL in the text field and click on the button then contact information like; name, email, profile picture and description will also get from their social account. For get followers we have to use some jQuery code snippets. Facebook Follower count: By using Facebook graph api you can get social count from Facebook. For this you require an access token and you can get this from here https://developers.facebook.com/docs/marketing-apis/overview/authentication/. After getting access token you can use jquery following code to get followers. var link11 = document.getElementById('FacebookPageURL').value; link11 = stipTrailingSlash(link11); var link2 = link11.split( '/' ); var user = link2[link2.length - 1]; var token = 'Your…
Read More
How to secure WordPress without using plugin?

How to secure WordPress without using plugin?

PHP, Plugins, Tutorials, Web Design & Programming, Web Development Services, WordPress, wordpress plugins
WordPress is a very popular CMS and that's why it is highly targeted by hackers. Although latest updates have made it one of the most used tools for e-commerce website, news portals or a business blog. There are a many ways to protect your WordPress Blog from being hacked. We have collected some of the best practices which will help you to Secure your WordPress Website : Disable File Editing: Using the below code we can disable the File editor of admin side so hacker will not able to open the files if he/she want to do any change in file. By default Wordpress allows user to edit the file using the editor through the admin panel. define('DISALLOW_FILE_EDIT',true); Protect your .htaccess file .htaccess is a important file of Wordpress. .htaccess…
Read More

How to Display the Latest Sticky Posts in WordPress

Tutorials, WordPress
WordPress has this very cool feature called sticky posts. Think of sticky posts as featured posts for your blog. When you mark a post as sticky, it shows up above your new posts, but only if your theme permits it. In this tutorial we will show you how to display the latest sticky posts in WordPress. First thing you need to do is copy and paste this code snippet in your theme’s functions.php file or in a site-specific plugin. 01 function wpb_latest_sticky() { 02 03 /* Get all sticky posts */ 04 $sticky = get_option( 'sticky_posts' ); 05 06 /* Sort the stickies with the newest ones at the top. 07 * Remove this if you want to display oldest posts first 08 */ 09 rsort( $sticky ); 10 11…
Read More

14 Most Common WordPress Errors and How to Fix Them

Tutorials, Web Design & Programming, WordPress
WordPress is very easy to use but some common WordPress errors can cause panic among beginners. It is very possible that the error you are seeing on your site has been already reported and resolved by someone before you. At WPBeginner, we have covered and showed you how to fix several WordPress errors. In this article, we will take a look at 14 most common WordPress errors along with showing you how to fix all of these common WordPress errors. Important: Make sure that you have a complete backup of your WordPress site. We strongly recommend using an automated scheduled backup system like BackupBuddy. However, if you can not install plugins at this time, then check out how to manually create WordPress backup manually. In case you are unable to…
Read More

How to Add SSL and HTTPS in WordPress

Tutorials, WordPress, wordpress plugins
What is HTTPS and SSL? Every day we share our personal information with different websites whether it’s making a purchase or simply logging in. In order to protect the data transfer, a secure connection needs to be created. That’s when SSL and HTTPS come in. HTTPS or Secure HTTP is an encryption method that secures the connection between users’ browser and your server. This makes it harder for hackers to eavesdrop on the connection. Each site is issued a unique SSL certificate for identification purposes. If a server is pretending to be on HTTPS, and it’s certificate doesn’t match, then most modern browsers will warn the user from connecting to the site. Now you are probably wondering, why would you ever need to move from HTTP to HTTPS and install…
Read More

7 Best WordPress Backup Plugins Compared (Pros and Cons)

Tutorials, WordPress, wordpress plugins
Creating regular WordPress backups is the best thing you can do for your website. Backups give you a peace of mind and can save you in catastrophic situations when your site gets hacked or you accidentally lock yourself out. There are several free and paid backup plugins for WordPress, and most of them are fairly easy to use. In this article, we will show you the 7 best backup plugins for WordPress. Important: Many WordPress hosting providers offer limited backup services, but please remember that it is your responsibility to backup your website on your own. Do not rely solely on your hosting provider for backups. If you are not already backing up your site, then you should pick one of these 7 best WordPress bckup plugins and start using…
Read More

Top 10 Most Important Things To Do After Installing WordPress

Tips, Tutorials, WordPress
What do you do after installing WordPress? This is a common question asked by beginners. In this article, we will show you the top 10 most important things you must do after installing WordPress. 1. Change The Title, Tagline, Time zone, and Favicon The first three steps can be combined into one because you can quickly make those changes in the same area of your WordPress Admin Dashboard. To change these, go to your Settings in your dashboard and choose General. Change both your site title and tagline to something that relates to your site. Now scroll down the page to update your timezone. This functionality is important to show the most accurate date on your site, and it also helps with scheduling posts. Towards the middle of the page…
Read More

How to add Multiple Google Maps on one page?

Techniques, Tutorials, Web Design & Programming
Here is how you can generate multiple maps on the same page using Google Map API V3. [caption id="attachment_1230" align="aligncenter" width="463"] Multiple-Google-Map[/caption] HTML [code] <div id="map_canvas" style="width:700px; height:500px; margin-left:80px;" ></div> <div id="map_canvas2" style="width:700px; height:500px; margin-left:80px;" ></div> [/code] JavaScript [code] <script type="text/javascript"> var map,map2; function initialize(condition) { // create the map var myOptions = { zoom: 14, center: new google.maps.LatLng(0.0, 0.0), mapTypeId: google.maps.MapTypeId.ROADMAP } map = new google.maps.Map(document.getElementById("map_canvas"), myOptions); map2 = new google.maps.Map(document.getElementById("map_canvas2"), myOptions); } </script> [/code] Conclusion Integrating multiple Google Maps on a single web page can significantly enhance user experience and provide valuable information. By following this step-by-step guide, you can easily create and customize multiple maps using the Google Maps JavaScript API. Whether you're building a travel portal, a location-based directory, or any other project, multiple maps can…
Read More