Thanks for the purchase of Easy Bootstrap Shortcodes Pro Plugin. First of all download the PRO plugin from the link provided in the purchase receipt. Install the PRO plugin to your wordpress site. Now deactivate the EBS plugin if installed, and activate the EBS-Pro plugin. After installing and activating the EBS-Pro plugin follow these steps […]
Read More
WordPress 4.5 is released with lot of new updates, but our clients pointed out that some of shortcodes from our Awesome Easy Bootstrap Shortcode stop working such as Tabs, Accordion etc. This happened due to the latest update to core undescore.js file from 1.7 to 1.8.3. and as per the new update Underscore templates no […]
Read More
In case you are using Easy Bootstrap Shortcodes plugin, you must configure it properly. Otherwise it can cause conflicts. We have provided the settings page which deals all the issues such as menu conflicts, page disorder etc. You have to try the different configurations and set which is perfect for your site. Following are few […]
Read More
WordPress shortcodes are an excellent way to add more style or advanced elements to your content. If you’ve been using the platform for quite some time, then you’ve probably used shortcodes in the past without even knowing it. If you’re new to the platform, then you’ll want to get familiar with them because they are […]
Read More
We can create the simple object as follow, lets create the object to save student data such as name, marks var stu_obj = {} ; stu_obj.name = ‘Sam’; stu_obj.marks = ‘85%’; alert(stu_obj.name); alert(stu_obj.marks); or var obj = {name:’Sam’, marks: ‘85%’}; alert(obj.name); alert(obj.marks); what if you have to add new attributes to this object, we can […]
Read More