Skip to main content

Posts

Showing posts from December, 2017

The Scheduler and Draft Saver

The Customizer was always great for going through with big changes on his website. But sometimes changes had to be done before specific schedule time when you clicked save button. Not on specific time from a visitor’s point of view. Now one of the great things is added in updated Customizer of WordPress 4.9. Now Admin can able to save and schedule changes. The updated Customizer WordPress 4.9 of has replaced the Save & Publish button. You will now see Publish with a setting icon next to it. When you click on the setting icon, you can see a menu with some new options like: Save Draft, Schedule, and Publish. This will give you the same control that you have in the main dashboard with your regular content. Having this kind of featured in the Customizer helps reduce the workload and easy to customisation . Sometime time limit or some sensitive time when you can handle without needing to sit by the computer. For that time your scheduled Save & Publish to perfection....

What, Exactly, Is Business Development?

“I do Business Development .” Few times in history have more ambiguous words been spoken.  Ask ten “VPs of Business Development” or similarly business card-ed folks what is business development, and you’re like to get just as many answers. “Business development is sales,” some will say, concisely. “Business development is partnerships,” others will say, vaguely. “Business development is hustling,” the startup folks will say, evasively. The assortment of varied and often contradictory responses to the basic question of “what, exactly, is business development” reminds me of the way physicists seek to explain what, exactly, is the universe.  With conflicting theories on the nature of black holes and bosons, the ultimate goal for those scientists is a Grand Unified Theory, a single definition that can elegantly explain how the universe itself operates at every level. Lacking any concise explanation of what business development is all about; I sought to un...

Introducing the Symfony Maker Bundle

If you've been around the Symfony community for some time so I think you have used the SensioGeneratorBundle . It's a popular bundle that provides console commands to generate boilerplate code, like controllers and entities. It also includes a basic CRUD generator. Given that SensioGeneratorBundle is starting to show its age and considering the massive simplifications introduced by Symfony 4 , they decided to stop evolving that bundle and they've created a new bundle called SymfonyMakerBundle . SymfonyMakerBundle helps you creating empty commands, controllers, form classes, tests and more so you can forget about the required boilerplate code. It's an alternative to SensioGeneratorBundle for modern Symfony applications and requires using Symfony 3.4 or newer and Symfony Flex . Of course the end goal is to not have boilerplate code at all in Symfony applications. Symfony 4 made a lot of improvements towards that goal, but you will always have to bootstrap some ...

About CSS

Let's have a small info about the CSS. CSS means Cascading Style Sheets. CSS is very helpful for making site beautiful and attractive and in other way we can say that CSS is undividable part of current websites. There are three types of CSS like Internal CSS, Inline CSS and the last but not the least External CSS. Mostly people are selecting the external css for better structure. Latest structure of the CSS is CSS3 version which is containing Animation, Transitions, Transformation, Easing etc.. There are lots of new things new CSS3 which are helps to developer for the creating better and beautiful site. Now this days there are pre-compiler versions are coming there like Sass and Less which are converting CSS to Dynamic CSS. In that precompiling css there also possible with taking dynamic variables and media queries. With the help of that now the site can be more fast and speedy comparing to old school times. So we can say that without using of css the website layout i...

10 Digital Marketing Tips for Small Business Owners

Online Marketing is plays an important role for any small business hoping to stay competitive . But what online marketing tactics should you focus on in your limited time is a busy entrepreneur? Here are 10 necessary digital marketing tips for all small business owners. 1. Starts with Your Website Make sure you have an updated, responsive and attractive website that is easy for users to negative across all devices and has a modern and clean design wit not more than two or three colour theme. 2. Don’t Forget the Basics Include necessary information customers want to know- your business address, phone number, E-mail address, hours of operations, etc. - on your website where visitors can find them right away. You’d be surprised how many businesses forget to list this info. 3. Think Local If your business targets local customers, claim your listings on local search directories, such as Google My Business and Bing places for business. They are free and help ensure th...

How To Improve Your 'Digital Presence'

Businesses need to face the facts that digital presence is now a huge part of a brand’s identity. If you are struggling to build your digital marketing presence, here are 21 ways that might help you. 1. Know Your Strengths When it come to your digital marketing presence, where is your business exceeding? Once you know this, you know exactly what is working and you will know if you need to do more of the same or if you need to change it up. 2. Know Your Weaknesses Just like you need to know your strengths, you also need to know your weaknesses. This is very important as your weaknesses show where you need the most digital improvement. Make sure you have researched this so you are not focusing on the wrong thing. 3. Customer Engagement Customer engagement is a huge part of social media and digital marketing. You need to make sure you have a customer engagement strategy in place so you know exactly how you are going to communicate with customers online. 4. Customer Ex...
WordPress Multisite  is a feature which allows users to create a  “Network”  of subsites within a single install of WordPress. WordPress Multisite is not a plugin, but is a feature which can be enabled for sites. The great thing about Multisite is that the WordPress installation itself is almost exactly the same as a standard installation: it has the same folder structure, the same core files and the same code base. This means that installing a Multisite network isn’t much more complicated than installing a standard WordPress site, and updating Multisite is exactly the same as updating any WordPress site. All of your network’s themes and plugins are stored just once, no matter how many sites you use them on, meaning you’ll be using a lot less server space than if you used a separate WordPress installation for each site. Features of wordpress multisite : – As the network administrator, you can easily manage multiple sites and blogs from a single dashboard. – Yo...

Symfony 4

Symfony 4   has major change on directory structure. Symfony 4 has different directory structure then symfony 3. They to make directory structure more developer friendly.  This consolidates user experience across ecosystems. - /var: temporary files go under /var in the root of the project folder. /var/cache: cache will store here, - /src source code in this folder Kernel class is now in src folder. It uses the MicroKernelTrait trait. Then, it implements the logic to load the bundles from bundles.php and to read the various bundle configuration files. - /config configuration files- The new config/ directory is the same as symfony 3 app/config/ directory. parameters.yml and parameters.yml.dist are no longer in Symfony 4. There is a main container.yaml. In that you can define parameters and services. The main entry point for the container is an empty container.yaml that you can use to define your own services and parameters. Configuration for b...