by Admin | Aug 29, 2016 | How To |
Here is the simple as possible code for studying processing.js
<script src="https://cdnjs.cloudflare.com/ajax/libs/processing.js/1.6.0/processing.min.js"></script>
<script type="application/processing" data-processing-target="stage">
void setup() {
size(500, 500);
background(100);
rect(30, 60, 25, 25);
}
</script>
<canvas id="stage"> </canvas>
by Admin | Aug 10, 2016 | How To |
Have you gone across that annoying automatic zooming of a map when working on a site? Disabling it is easy as pie.
Simply switch off the Mouse Wheel Zoom on the Map Module’s General Settings and you’re set!
http://screencast.com/t/72IhGn1vMYt
by Admin | Aug 10, 2016 | How To |
Add the following code below to functions.php
function ms_image_editor_default_to_gd( $editors ) {
$gd_editor = 'WP_Image_Editor_GD';
$editors = array_diff( $editors, array( $gd_editor ) );
array_unshift( $editors, $gd_editor );
return $editors;
}
by Jen Panoso | Aug 10, 2016 | How To, Plugin |
Passing Data by Setting up Confirmation page
Screenshot: http://prnt.sc/c3utyo
Passing Data by Query String
You can pre-populate a field via the query string by appending the dynamic population parameter you specified for the field to the end of your form URL along with your custom value.
http://siteurl.com/form-url/?your_parameter=value
Passing Data by Shortcode
You can pre-populate a field via the Gravity Forms shortcode by adding the field_values parameter.
[gravityforms id=”1″ field_values=”parameter_name=val¶meter_name2=val”]
by Admin | Aug 4, 2016 | How To, SEO |
All pages of a website must have unique Meta tags.
a. Focus Keywords
To get the best keyword, go to https://www.semrush.com/, enter seed keyword and look for these criterias – ideally, must have high volume or searches per month but with very low competition.
Example:
Website : http://new.a1garage.com/
Seed Keyword : Garage door service
Look for the results under Keyword Analytics – Phrase Match and Related Keywords. Sample results under Phrase Match:

Conclusion:
Best keyword to use is “garage door repair service”, because it has decent monthly searches in its niche but with low competition.
b. Meta Title
- One of the most important on-page elements, so remember to use the keywords (result from Semrush) in it. The focus keyword should appear in the SEO title.
- Because the title text is usually the most prominent part of your page displayed in search results, make it click-enticing and appealing to human searchers.
- Must not exceed 55 characters
c. Meta Description
- When rewriting your meta description, make sure that its length doesn’t exceed 155 characters with spaces.
- Make your meta description both keyword-rich and appealing to human searchers.
Additional:
Ideally, the focus keyword should appear in the URL of the page.