6 Free Plugins to Speed Up Your WordPress Site

Tips, WordPress, wordpress plugins
Site speed plays a very important role in online business. It can increase or decrease the revenue of your online business, depending on how much time your site takes to load. There is a shocking relation between site speed and conversation rate, which is particularly true for e-commerce sites. There are a dozen of reasons to improve the site speed, but the two most important ones are search rankings and user experience. Search Rankings When Google first announced site speed in web search rankings, it played a minuscule part. But overtime it has become one of the main development factors Google takes into account for ranking websites. While page speed isn’t the only factor Google takes into account, pages that load faster and follow Google’s best practices for performance tend…
Read More

Google Blocks Thousands Of WordPress Sites Following Malware Attack

Internet and Media, News, Tips
Security firm Sucuri reports that Google has blacklisted over 11,000 malware-infected WordPress domains, and over 100,000 sites in total have been affected by a new malware campaign from SoakSoak.ru. By using a vulnerability found in the WordPress plugin RevSlider, SoakSoak modifies a file in a site’s WordPress installation and loads Javascript malware. RevSlider is often used in WordPress themes, so many site owners may not even know they’re using the plugin, let alone that they need to update it to prevent a malware attack. Moreover, it’s not a plugin that’s easily updated, as Sucuri’s Daniel Cid points out: “The biggest issue is that the RevSlider plugin is a premium plugin, it’s not something everyone can easily upgrade and that in itself becomes a disaster for website owner. Some website owners…
Read More

How to Improve Your Site Load Speed

Blog
Even the best developers run into problems with download speed. The following six tips will help you improve site speed and rank higher in search results: Minimize on-page components. Between flash, stylesheets, and scripts, multiple processes can occur behind the scenes that will significantly slow a page’s load time. If you combine style sheets or replace images with CSS, the HTTP requests that make on-page elements function won’t have an opportunity to slow down your site. Compress large pages. Over the past year, Google has made it abundantly clear that SEO best practices involve the use of long-form content, videos, and shareable media to reach more customers and rank higher in SERPs. Unfortunately, all this additional content can reduce load speed. Try to compress your larger pages so they take…
Read More

The 7 Step Process For Writing a Blog Post That People Will Actually Read

Internet and Media, News, Techniques
Step #1: Choose a Topic Your Audience Cares About In the past, blogs were mostly used by teenagers to share their inner musings and bad poetry. Since then, blogging has evolved into a valuable tool that businesses use to connect with their audiences and share important information with potential customers. Unfortunately, this transition hasn’t been entirely smooth. Although business blogging has been widely adopted as a marketing practice, the people don’t always know how to select the blog topics that will best serve their business goals. The solution is to write about topics other people care about. Don’t think about what you’d like to read – think about the problems your audience is having and how your blog content can help position your business as the solution. If you don’t know…
Read More
Top 10 Social Media Plugin for WordPress

Top 10 Social Media Plugin for WordPress

WordPress
Social Media has become the next big thing and it’s very important for bloggers or website owners to integrate social sharing buttons on their blog or website.Using social bookmarking & sharing buttons you will let your readers quickly share your blog post on their favorite social networking sites.WordPress Social Plugins are very important for the extensibility of your WordPress blog or store. Many WordPress Plugins exist that allow you to add different Social Networks.This will help you to drive more traffic from social media sites and helps in search engine ranking. So while using WordPress you probably want your content to be easily shared on those social networks, and constantly expand your presence and social impact by making it easy for visitors to join your network of social presence.There are…
Read More
Adding New FileTypes To WordPress Media Library

Adding New FileTypes To WordPress Media Library

WordPress
WordPress CMS has a set of pre-defined file types that allow you to upload in the media library. This is due to a great security feature of WordPress CMS. But there may be many times where you’d like to add new file types that are not in the list of allowed by WordPress, or some time you need to only allow a fewer extensions to be uploaded. This can be done by using a small hook of WordPress. If you’d like to add a specific file type that can be uploaded to WordPress via the media library, you can insert this PHP code in your theme functions.php file: function tar_mime_types($mime_types){ $mime_types['tar'] = 'application/x-tar'; //Adding tar extension return $mime_types; } add_filter('upload_mimes', 'tar_mime_types', 1, 1); But if you want to remove any…
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

How to show Products collection in Magento?

Magento
You can use below code to get all Products collection in Magento on any of Magento page: $_productCollection = Mage::getModel('catalog/product')->getCollection(); $_productCollection->addAttributeToFilter('status', 1); //enabled or not $_productCollection->addAttributeToFilter('visibility', 4); //catalog, search enabled or not foreach ($_productCollection as $_product) { $model = Mage::getModel('catalog/product'); $product_id = $_product->getId(); $_product = $model->load($product_id); $_image=Mage::getModel('catalog/product')->load($product_id); <div class="feature-product-price"><?php echo $_product->getPrice(); ?></div> <div class="feature-product-name"><?php echo $_product->getName(); ?></div> <div class="feature-product-image"><a href="<?php echo $_product->getProductUrl() ?>"><img src="<?php echo Mage::helper('catalog/image')->init($_image, 'image')->resize(200,200); ?>"></a></div> </div> <?php } [sam_zone id="1" codes="true"] If you want Product Collection with specific ids then use below code ; resize(200,200); >"
Read More
VI Random Posts Widgets Plugin

VI Random Posts Widgets Plugin

Free WordPress Plugins, Plugins
Vi Random Posts Widget plugin allows us to create a custom random or category posts list as a widget. It gives you a list of random posts via shortcode or widget with thumbnail, excerpt and post date, also you can display it from your custom post type or from a post category. Features WordPress 4.1 Support. Allow you to add a URL in widget title Display thumbnails and customizable size. Display excerpt of customizable length. Display from all, specific or multiple category. Display your post date with customomizable format. Display your post author. Display post comment counts Display your custom Post types. User can add a custom css class in widget. Add custom html or text before and/or after posts lists. [sam id="5" codes="true"] Rate Us / Feedback Please take…
Read More

Got Project on mind? Let's ConnectContact Us

Secured By miniOrange