Followings are the steps for add theme in blog: 1) Download a theme which you want to add. 2) Compress downloaded file 3)In blogge...
How to add custom theme in Blogger
Following list of benefits with social media for business growth : 1) Increased Brand awareness 2) More Inbound Traffic 3) Improved S...
Business growth Benefits with social media
1) Increased Brand awareness
2) More Inbound Traffic
3) Improved Search engine Ranking
4) Hire conversation Rank
5)Better customer satisfaction
6) Improve Brand Loyalty
7) More Brand Authority
8) Cost Effective
9) Gain marketplace Inside
10) Thought Leadership
1) Increased Brand awareness
Social media is one of the most cost-efficient digital marketing methods used to syndicate content and increase your business’ visibility. Implementing a social media strategy will greatly increase your brand recognition since you will be engaging with a broad audience of consumers.
By investing only a few hours per week, over 91% of marketers claimed that their social marketing efforts greatly increased their exposure
2) More Inbound Traffic
Without marketing your business on social media, your inbound traffic is limited to your usual customers. The people familiar with your brand are likely searching for the same keywords you already rank for. Without utilizing social media as part of your marketing strategy, you’ll have much more difficulty reaching anyone outside of your loyal customer circle.
By marketing on social media you can effectively open your business to a wider variety of versatile consumers all over the world.
3) Improved Search engine Ranking
Although posting on social media might get your business some site traffic, more effort than that is required to see significant success. Search engine optimization is very important for achieving higher page rankings and obtaining traffic to your business website.
4) Hire conversation Rank
With increased visibility, your business gains more opportunities for conversion. Every blog post, image, video, or comment may lead viewers to your company’s website and increase traffic.
People use social media platforms to stay connected to their friends, family, and communities.
5)Better customer satisfaction
Social media is a networking and communication platform. Creating a voice for your company through these platforms is important in humanizing your company. Customers appreciate knowing that when they post comments on your pages, they will receive a personalized response rather than an automated message.
6) Improve Brand Loyalty
One of the main goals of almost all businesses is developing a loyal customer base. Considering that customer satisfaction and brand loyalty typically go hand in hand, it is important to regularly engage with consumers and begin developing a bond with them.
Since these technology natives require communication with their brands, businesses must implement social media marketing to get the attention of their most influential consumers.
7) More Brand Authority
Customer satisfaction and brand loyalty both play a part in making your business more authoritative, but it all comes down to communication. When consumers see your company posting on social media, especially replying to customers and posting original content, it makes you appear more credible.
8) Cost Effective
Social media marketing is possibly the most cost-efficient part of an advertising strategy. Signing up and creating a profile is free for almost all social networking platforms, and any paid promotions you decide to invest in are a relatively low cost compared to other marketing tactics. Being cost-effective is such an advantage because you can see a greater return on investment and retain a bigger budget for other marketing and business expenses.
9) Gain marketplace Inside
One of the most valuable advantages of social media is marketplace insight. What better way to know the thoughts and needs of your consumers than by directly talking to them? By monitoring the activity on your profiles.
10) Thought Leadership
Posting insightful and well-written content on your social media is a great way to become an expert and leader in your field. There is no one way to become a thought leader – it requires work that can be supported by online networking tools.
Fruxinfo Pvt. Ltd
Following describe strategies for growing your business fast: 1. Build a sales funnel. The first way to quickly grow your business i...
15 strategies for grow business fast
1. Build a sales funnel.
In every listing pages provides delete button . Every individual delete button we have to delete single records. But it is time consum...
Delete multiple Records using Checkbox using Codeigniter
Here, i share code for making how to delete multiple records.
1) Create Table
CREATE TABLE IF NOT EXISTS `items` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`description` text COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=16;
2) Add Routes in route.php
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
$route['default_controller'] = 'welcome';
$route['404_override'] = '';
$route['translate_uri_dashes'] = FALSE;
$route['item'] = "item";
$route['itemDelete']['post'] = "item/deleteAll";
3) Create Controller:
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Item extends CI_Controller {
public function __construct() {
parent::__construct();
$this->load->database();
}
public function index()
{
$data['data'] = $this->db->get("items")->result();
$this->load->view('item', $data);
}
public function deleteAll()
{
$ids = $this->input->post('ids');
$this->db->where_in('id', explode(",", $ids));
$this->db->delete('items');
echo json_encode(['success'=>"Item Deleted successfully."]);
}
}
4) Create View
<html>
<head>
<title>how to delete multiple records using checkbox in codeigniter - itsolutionstuff.com</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-lg-12 margin-tb">
<div class="pull-left">
<h2>how to delete multiple records using checkbox in codeigniter - itsolutionstuff.com</h2>
</div>
</div>
</div>
<button style="margin-bottom: 10px" class="btn btn-primary delete_all" data-url="/itemDelete">Delete All Selected</button>
<table class="table table-bordered" style="margin-top:20px">
<thead>
<tr>
<th width="50px"><input type="checkbox" id="master"></th>
<th>Title</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<?php foreach ($data as $item) { ?>
<tr>
<td><input type="checkbox" class="sub_chk" data-id="<?php echo $item->id; ?>"></td>
<td><?php echo $item->title; ?></td>
<td><?php echo $item->description; ?></td>
</tr>
<?php } ?>
</tbody>
</table>
</div>
<script type="text/javascript">
$(document).ready(function () {
$('#master').on('click', function(e) {
if($(this).is(':checked',true))
{
$(".sub_chk").prop('checked', true);
} else {
$(".sub_chk").prop('checked',false);
}
});
$('.delete_all').on('click', function(e) {
var allVals = [];
$(".sub_chk:checked").each(function() {
allVals.push($(this).attr('data-id'));
});
if(allVals.length <=0)
{
alert("Please select row.");
} else {
var check = confirm("Are you sure you want to delete this row?");
if(check == true){
var join_selected_values = allVals.join(",");
$.ajax({
url: $(this).data('url'),
type: 'POST',
data: 'ids='+join_selected_values,
success: function (data) {
console.log(data);
$(".sub_chk:checked").each(function() {
$(this).parents("tr").remove();
});
alert("Item Deleted successfully.");
},
error: function (data) {
alert(data.responseText);
}
});
$.each(allVals, function( index, value ) {
$('table tr').filter("[data-row-id='" + value + "']").remove();
});
}
}
});
});
</script>
</body>
</html>
Fruxinfo Pvt. Ltd
Wordpress Or Magento ? Wordpress: WordPress is the simplest, most popular way to create your own website or blog. Also get r...
Magento or Wordpress which one is the best for E-Commerce Website
Wordpress:
WordPress is the simplest, most popular way to create your own website or blog.
Also get resource of wordpress is free because its open-source available.
Advantages:
1) Mobile Responsive website - Using WP website its provide directly mobile friendly website that will be support in any resolution of mobile.2) Versatile - WordPress developers have created themes to showcase images, products, services, and more. Some are meant to be online magazines, others function as online curriculum vitae
3) Easy to use - All of the benefits of a WordPress site wouldn’t mean much if they were hard to use. Even if you’re not a tech expert, WordPress makes building a site simple.
Drawbacks:
Magento:
Wordpress V/S Magento
| Parameters | Wordpress | Magento |
|---|---|---|
| web/app framework | wordpress framework | Zend framework |
| Use | Very user friendly UI | A bit difficult to use |
| Installation | Just ant other wordpress plugin installation | Has a complete Installation wizard |
| Hosting | Starndard wordpress server required for hosting | Has a list of sever requirements for hosting |
| Community Support | Very strong | medium |
| Online Store | 6,85,526 | 2,35,084 |
| availability of developer | very esily available | rarely available |
| Cost of develop & maintenance | Low | medium |
| Suitable for business | Small business | medium & large business |
| Time to get storeUp and runnings | Few Days. | Few weeks |
| Security | Less | More |
| Post/pages | Posts and pages | CMS pages |
UI/UX: UX Design -- User Experience Design , while UI Design stands for User Interface Design . Both elements are crucial to a ...
Difference between UI and UX design
Following are the describe tools for making responsive website design. Best 8 tools for responsive web design. 1)Bootstrap : Bootst...
which are the best tools for making responsive web design?
Best 8 tools for responsive web design.
1)Bootstrap :
2) materialize Css :
3)Gridset :
Gridset allows web designers and developers design, prototype and build custom, responsive grid-based layouts for their projects.
4)Gumby 2 :
5)Adobe Edge Inspect :
When you are sorting out how your web page would look through different devices and different screen sizes, Adobe Edge Inspect would be a helpful tool to do that.
6)Adobe Edge Reflow :
Edge Reflow is one in a lot of tools that have come out that make it possible to visually design a responsive website. Reflow convert the Photoshop (PSD) files content into HTML and CSS and then visually adjust the design using breakpoints in Reflow.
7) Export kit:
This tool can create a design in Photoshop and immediately see it become a full-fledged website or application. In fact, Export Kit’s bridge the gap between your project assets and your code by immediately converting your Photoshop file into HTML, CSS, JS, WordPress, Android and more.
8) UXpin:
UxPin is a design app and a collaborative online design tool, that allows you to create wireframe and prototypes that are interactive.
UXpin will appeal to advanced users who want to spend more time creating beautiful full colored wireframes.
Fruxinfo Pvt. Ltd












Follow Us
Were this world an endless plain, and by sailing eastward we could for ever reach new distances