Skip to main content

Posts

How to see Competitor ads on their Facebook pages

In any type of business, the organization always concentrate on their competitor's activities when it comes to competition. The first thing wants to what competitors doing, how they are getting leads or traffic. The same pattern is going when you are running Facebook Ads. If you want to know your competitor facebook strategy you will not see them on the newsfeed. Fortunately, you can see them in the following way and replicate their success on your Facebook Ads. Here am giving step by step. Follow each step  Step 1: Open your competitor facebook page and see the right side content of the page and click on see more button of the page transparency section as per below image Step 2: After opening the page you can see the page history and  Ads from this page. Click on Go to Ad library.  Step 3: Select the country that you want to see the Ads and see the Ads monthly.

How to improve page speed without plugin

Improving page speed is crucial for these days because Google recent update says that Speed is factor for SEO Ranking and also slow speed website will effect on Traffic. Every business having website to share the products and services with the world because people are easy with buying products or groceries and services instead of going shops. Why your website speed optimization Does matter? Website speed can affects your traffic, page views, conversions, sales and your overall reputation.  these are improve by only to make website faster . As per studies shown  47 percent of people expect a website to load in less than two seconds. 40 percent of people are very likely to leave a website if it takes more than three seconds to load. Therefore, website speed is the top priority if you want to stand out from competition. By speeding up your website not only will give positive results of page views, conversions but you will also provide better user experience . A great use

jQuery Date and Time Picker Plugin datetimepicker

jQuery Date and Time Picker Plugin datetimepicker Use this plugin to unobtrusively add a datetimepicker, date picker or time picker dropdown to your forms. Simple and easy to integrate  It's easy to customize options. Supports 3 languages: en(English), de(German) and ru(russian). Date input mask. Callback events support. Inline mode support. Always display the date & time picker without having to click the input field. <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jquery-datetimepicker/2.5.20/jquery.datetimepicker.min.css"> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-datetimepicker/2.5.20/jquery.datetimepicker.full.min.js"></script> <input id="datetimepicker" type="text"/> See the Pen DateTimePicker (https://www.codesponsors.com)

How to show Star Ratings for Your Site in the Google Search Results

Do you know how to show Google Ratings & Reviews for your site in the Google search Results? Here is the solution to do with schema code. Scheme code is used to make it easier for search engines to parse the content on your site. Simply, schema is additional code that you add to your website to give the google bot crawler a little more information about your pages and it’s a technology that arose from a collaboration between google, yahoo, Microsoft and yandex. See this picture I use the google 5 star rating code to my site (ITvibes.com) for rich results on Google search Results. This is called as Schema code using keywords.       My site is designed with word press so I have used the above code in header.php under the Meta keywords. After schema.org markup google took some time to crawl to show on google search results. In my case google took 4 days to show the google reviews. As per google terminology it’s also called as Reviews Snippet. There are various rev

How to optimize your Google my business page for Local SEO - Codesponsors

Are you Looking to attract your business in your Location if so, then you need to optimize Local SEO [ Google my business page ]. Local SEO is to show your website on local search Results in your location with google my business page because 46% of searches now have a ‘local intent In this Article you can see the several ways to optimize your google my business page for Local SEO. Step 1 : Make sure that your business name, address and phone number should match with website and all of your properties in google my business page Step 2: Pick the relevant category for your google my business page Step 3: Link your business web page (home page) to google my business page if your business have single location Step 4 :   your business have multiple locations then create google my business page with different pages and link back to corresponding web pages That means each web page have google my business page account Step 5: Enter a description for you

Data Types in Python

Data Types  In C# or Java, You need to declare a variable specify them integer, string, and decimal. But in Python no need to specify. We can declare variables like Example: C# or Java int age = 28; string Name = "Siddhu"; Example: Python age = 28 Name = "Siddhu" So, you don't need to declare variable types in python. This is an advantage in Python, But still have few Disadvantages too. Example: In my Python function def add_numbers(x,y): print(x+y) add_numbers(20,50) //Output: 70 add_numbers(20,"Something") //Error:"Traceback (most recent call last): File "C:/Users/siddhartha.e/PycharmProjects/siddhu-py/my1stpycode.py", line 8, in add_numbers(50,"Something") File "C:/Users/siddhartha.e/PycharmProjects/siddhu-py/my1stpycode.py", line 4, in add_numbers print(a + b) TypeError: unsupported operand type(s) for +: 'int' and 'str'"