#how to disable auto refresh on popular web browser
Explore tagged Tumblr posts
Photo
From this article, you will find easy steps on how to disable or stop Auto-refresh on popular Web browsers. Like Google Chrome, Firefox which often reloads (refresh) all open tabs in your web browser.
#how to disable auto refresh on popular web browser#how to disable auto-refresh on google chrome#how to disable auto-refresh on firefox
0 notes
Text
Azure Service Profiler review – How does it fit in your toolbox?
About a year ago Microsoft released the Azure Service Profiler which is designed to be a lightweight profiler for ASP.NET applications. They recently enabled it to work with Application Insights and it is easy to enable for Azure App Services. Since we use App Services and love anything to do with app performance, I thought I would give it a try and see how it compares to other tools.
Note: The Service Profiler is still advertised as a “preview” offering and is not GA.
What is the Azure Service Profiler?
It is a transaction profiler for ASP.NET apps. It is designed to work with ASP.NET apps deployed anywhere, even outside of Azure. However, it uploads the collected data to Azure table storage where the data is then processed by Microsoft. So the name “Azure Service Profiler” is perhaps a little confusing because it can profile more than Azure. It also isn’t a true “.NET CLR profiler” because it uses ETW for data collection, not normal code profiling techniques.
It is designed to collect data in relation to individual web requests, or essentially individual transaction traces. I have written before about how there are 3 types of .NET profilers. Service Profiler is weirdly a mix of all 3 types. A standard profiler, transaction tracing and APM.
Service Profiler is a performance analysis tool used by teams at Microsoft running large-scale services in the cloud, and is optimized for troubleshooting issues in production. – Microsoft
Playing with the online demo
You can play with their online demo to get an idea of what type of data it collects.
Here is a screenshot showing how it plots out the performance of a single action in your app, which is a cool visual to understand percentiles.
Service Profiler diagram of request performance
If you select a trace for a specific request, you can dive in to lots of gory details.
Service Profiler individual trace
Traces are full of details, lots of details
BLOCKED_TIME, EventData, OTHER, dynamicClass_lamda_method, C3PO, R2D2, etc
My immediate reaction to this is… WTF does all this mean?
My screenshot above is just a fraction of the entire trace of what it collected. It provides an overwhelming amount of detail. I feel like I should have a computer science degree to figure it out (which I don’t have). Out of all details it provides, all I can really tell is it looks like my request is doing some database queries. However, I can’t tell what the SQL query was. So… ?
It looks like Microsoft was aiming to help provide every possible detail to help developers solve really hard problems. If I was doing hard core performance tuning, I could see how this could be useful. But if all I want to know is why did my request take 3 seconds… it provides an avalanche of data.
I just want to know what the SQL query is that was slow. I want actionable data I can quickly understand, fix the problem, and go on about my day.
Trying the Service Profiler on my dev box
Being able to use it on my dev box is awesome! I can totally see using this for performance tuning during development, just as you would use the Visual Studio Profiler or ANTS. Installing it is simple. I logged in to http://ift.tt/2khJPwX and created a data cube for my dev box. Downloaded the agent and started it up. It runs as a simple console app. You can see how it subscribes to various ETW events. It also easy to install on Azure App Services via Application Insights.
Service Profiler running on my dev box
By default it only profiles 5% of your requests and you can modify the sampling rate to adjust it as you see fit. For a dev box you probably want to increase it to 100% sampling so you can quickly find any request to inspect. BTW, it will be interesting to see how it compares to Prefix over time. The combination of the two would be amazing.
After changing it to sample 100% and letting my browser auto refresh a page for a while, I went back in and played with the data it collected.
Viewing exceptions
It noticed that my request has an exception on every request that gets thrown away. That is really nice.
Service Profiler Exceptions
When I selected a specific trace I was able to find my exception in the trace.
Exception in Trace
Viewing SQL queries… were called, not the query
Like the online demo, I can tell that my code is running 8 SQL queries, but I can’t see what the SQL statements are or any real details about it. To be really useful, you need the raw SQL statements.
Trace view showing 8 SQL Queries
HTTP call example – Code to trace comparison
OK this time, let’s compare my code to what the trace looks like.
Here is my code. A really simple MVC action that downloads a web page with the HttpClient.
public async Task HttpClientAsync() { log.Debug("Starting HttpClient.GetStringAsync()"); string data; using (HttpClient hc = new HttpClient()) { data = await hc.GetStringAsync("http://ift.tt/2jYil3b"); } log.Debug("Completed HttpClient.GetStringAsync()"); return Request.CreateResponse(HttpStatusCode.OK, data); }
But here is how it looks in the trace. So obviously the code only does an HTTP call and that should have taken the whole 324-330ms. In the trace it shows it took 1.15ms and then you can see a AWAIT_TIME of 324.77. The other thing that is weird is the “HTTP Activities” part is separate and that part actually shows the URL that was downloaded in only 0.04ms (not 324ms).
Service Profiler view of HTTP call
As a comparison, here is how Retrace/Prefix displays the same type of information (including the log statements).
Retrace view of HTTP Client
Finding slow methods
The best thing I have seen about the profiler is that it tracked some methods that took a lot of time in my code all by itself. In this example I can see that JSON deserialization is taking a lot of time. Awesome!
Find slow methods
Is the Azure Service Profiler really safe for production?
Microsoft claims that the profiler is build for running against production applications. From my testing, it collects a lot of detailed data. The real question is can you run it at all times like an APM solution, or is it designed to run for a short period of time to try and capture detailed data about a problem in production. Even being able to use it occasionally could be very useful for chasing down hard problems.
Service Profiler makes it easy to collect performance data while your service is handling real production load, collecting detailed request duration metrics, deep callstacks, and memory snapshots – but it also makes sure to do this in a low-impact way to minimize overhead to your system. – Microsoft
Any type of profiling or tracing of web requests adds overhead of some form. The question is really how much overhead and is it acceptable for production servers.
Performance test setup & results
I tested the Service Profiler running via App Services in tandem with Application Insights as well as standalone on a Azure VM. I used loader.io to give it some constant load. I tested the Service Profiler with all default settings, including the 5% default sampling rate.
My test apps were a demo nopCommerce app as well as a custom app that has a bunch of common test scenarios that I use for testing Retrace. I tested sync, async, and various scenarios.
Response times went up slightly. Sometimes up to 50 milliseconds higher per request, most likely when sampling kicked in for the request.
Here is a screenshot showing my CPU and memory usage difference on an Azure App Service. The chart actually starts with the Service Profiler enabled. After it is disabled you can see that memory goes down a lot and the CPU (as measured in seconds here) went down about 10%. That 10% (relative) or so CPU change was consistent in my testing on an Azure VM as well.
So is it safe for production?
All types of profiling, tracing, or logging add some amount of overhead. From my testing, I would say it is safe to use in production. Overall the CPU and response times increased 5-20% (relative) which is relatively low and similar to other APM solutions. It would never be zero. So yes it is safe!
Would I recommend running it on production non stop?
Probably not since the data it collects isn’t very valuable unless you are trying to troubleshoot a really complicated problem. If all you want is stats around how long web requests are taking, Application Insights or Retrace is a better option and probably have less overhead. Since it can’t do things like you show you a SQL query, that also greatly limits the functionality for me. But I still believe it is an awesome tool for solving hard problems, it is just too complicated to use for simple problems. I can see using it in QA for performance tuning for sure!
The other unknown is what Microsoft will charge for the Azure Service Profiler once it comes out of preview. Perhaps it is just bundled in to the pricing of Application Insights or it could be a premium feature.
Overall, Microsoft has done a good job optimizing the overhead of it and my testing backs their stance that is it designed to be used in production.
How the Azure Service Profiler fits in your toolbox
Developers love tools and already have access to a wide variety of tools. Including Microsoft provided tools like Visual Studio Profiler, Intellitrace, and Application Insights. Plus popular third party tools like LINQPad, Prefix, Retrace, ANTS, and others.
It is an amazing tool for collect deep performance level statistics. I would say it is perhaps a unique tool in its own category. Deep code level details like you would expect from a standard .NET profiler, but only in the scope of a single web request.
It is sort of like Visual Studio Profiler or ANTS but capable of running on a busy server to collect individual transaction traces for review.
This functionality is similar to what most APM solutions aim to provide. Currently the Service Profiler provides a lot more details, but it also isn’t easy to use.
How does it compare to the data Retrace collects?
Our #1 goal with Retrace is to build a service that is very easy to use and is also safe for production. Our presentation of the profiling output is much, much simpler to view and understand (example above about the HTTP call).
Retrace collects key details like log statements, exceptions, SQL queries, cache keys being used, and lots of other little details and packages them up in a really easy to understand format. After the Service Profiler goes GA, we will write up more of a comparison.
Have you tried the Azure Service Profiler? Have any other thoughts or tips about it? Let us know in the comments!
The post Azure Service Profiler review – How does it fit in your toolbox? appeared first on Stackify.
from Stackify http://ift.tt/2jYqGnu from Blogger http://ift.tt/2lliScv
0 notes
Text
New Post has been published on Themesparadise
New Post has been published on http://themesparadise.com/supermarket-deal-responsive-magento-theme/
Supermarket & Deal - Responsive Magento theme
Supermarket & Deals is a package of 6+ Best Premium Magento Themes and specially designed for Supermarket, Groceries & Multipurpose. Developed by Top Elite Author.
This templates pack is one of the trending, popular and bestselling theme ever.
Template includes various styles: creative, unique, flat, material design, clean, elegant, minimal, minimalist, simplicity, generic, common, outstanding, eye-catching.
Custom design for multi-purposes:
Supermarket, grocery store, mega mall, shopping center
Fashion, boutique, clothings, apparel, t-shirts, tshirt, dresses
Handbags, bags, packs, backpacks for womens &mens
Computer, laptops, macbook, monitor, hardwares
Phones, mobile & accessories, high-tech, electronics, home appliances
Inspiration of amazon, ebay, alibaba, aliexpress, taobao, tmall, gmarket
Deals, group buy, best buy, discount, coupon, auction sites
Shop by Brands, Manufacturers, Suppliers
Cool features like:
Bootstrap 3, SASS/SCSS, W3C HTML5, CSS3 valid.
Responsive, mobile compliance & friendly, SEO
Visual Mega Menu (megamenu)
Ajax advanced products fitlered navigation
RTL, Multi-languages, multi-lingual, translation ready, i18n
Blog / news modules
Super Daily Deals Pro extension
Product labels, indicator, sale off, discount, new arrial, deal…
Carousel, nivo, revolution slideshow, slider
FontAwesome icon
Advanced admin theme options
Quick-view, quickview, quickshop plugn
Ajax Cart
Responsive design, adaptive screen solutions: 1280px, 1024px, and lower than 640px.
Built with Theme Framework allows to arrange different layout easily.
Visual Content Editor lets you edit content directly on front-end.
Powerful theme settings lets you change colors, font, typography and other styling flexibility.
Drag & Drop Mega Menu builder, build your multiple column menu never been easier. worth $49, included for free
Advanced Layered Navigation, browsing products easier and faster. worth $49, included for free
EM Multi Deal Pro, allows showing products on Sales with count-down clock. worth $69, included for free
EM Blog extension – Paid add-on
Set hover image on mouse over product thumbnail.
Included Advance CMS Static Block Widget.
Included Bestseller Products Widget worth $49, included for free.
Included Advance New Products Widget worth $49, included for free.
Included Ajax New Products Widget worth $49, included for free.
Included Featured Products Widget worth $49, included for free.
Included Sale-Off Products Widget. worth $49, included for free
Included Carousel Slider Widget.
Included Tabs Widget.
Product quick-view feature.
Ajax add to cart feature.
Included custom Product labels extension.
Customize your product image sizes freely.
Customize number of products display per row freely.
Typography for general elements, grid, buttons ready.
Detailed documentation.
Dedicated support team using support ticket system at [email protected]
You can change visual appearance of almost every element of this Magento theme. You can set your favorite colors and generate css file from the admin.
No coding needed, all can be edited directly in admin panel. Select colors of dozens of elements using color pickers, set hundreds of options, apply textures for header, footer and for the entire page, upload background image and configure its properties (position, repeating, attachment), change font and font-size, and many many more…
Unlimited Colors & Multipurpose
Custom Colors
Make every category of your webstore look special! You can create as many custom color schemes as you need and easily apply to your category by id. You can also check to apply your color scheme to subcategories.
Google Fonts
Change appearance of your titles without coding just in a few clicks whatever you want.
Background Pattern
All you need is upload a few images to get background slider working
Choose your favorite patern from available or upload your own one.
You can use the grid system to build custom content
Gala Supermarket is optimized for all screen resolutions. If you resize web browser window, theme elements will be transformed smoothly on each breakpoint (from 320 to 1280 pixels) in order to adapt to the current screen size.
24-Grid System
Visual Editor
You can change visual appearance of almost every element of this Magento theme.
Easing changelayout with Theme Framework
Our innovated Theme Framework built-in lets you change and ‘develop’ your own layouts with no restriction. You can add new positions or areas, change your displaying blocks and widgets in any position, change sizes of blocks and columns freely. EM Theme Framework also supports multi-stores that you can assign different stores using different layouts.
This theme looks great not only on desktops but also on devices. What means that there are no special requirements for your clients to browse your website.
Full functionality of your magento store on all mobile devices is guaranteed. Give your visitors a beautiful interface of your online shop.
Gala Supermarket is optimized for all screen resolutions. If you resize web browser window, theme elements will be transformed smoothly on each breakpoint (from 320 to 1280 pixels) in order to adapt to the current screen size.
Buying this theme you also get incredible revolution slider with admin interface without any charges. This slider can be used as boxed slider,wide slider,fluild slider. A ton of slider options including position of sliders can be set just from the admin.
Create image slideshow widget instance and display on any position
Embed to any pages, static blocks
Create unlimited layered per slide, configure various effects.
Configure slideshow effect, auto sliding, thumbnail, text, navigation…
Build your multiple columns menu with drag &drop features
Easily to embed static or dynamic contents on menu columns.
Support inserting static blocks, dynamic widget instances, dynamic categories listing or featured product details on menu.
Essentially support viewing Mega Menu on mobile with smart sliding menu allows to view all content in sub menus. Support native browser’s back button.
You can set how many items to show in column and it will be automatically divided to approriate number of columns.
You can change appearance of mega menu just from the admin panel without any coding
Enable/Disable Default Navigation
You can enable/disable Default Navigation just from the admin panel without any coding
Sticky Menu
Can be enabled from the admin
Display bestseller, featured, sale off, latest reviewed products in certain categories, support sorting, limit number of products, width & height of each item and thumbnail.
Allow to configure whether to show product title, description, reviews, price, buttons, label or not.
Template listing, grid or your custom template.
Cache enabled to improve performance.
Products Widget
Bestseller / Featured / New / Sale off / Latest Reviewed Products Widgets
Products Label Widget
Allow to create and manage product labels show on top of product images like to indicate bestseller, new, special products… You are freely to create more label and configure conditions to display labels in the backend.
There is ability to display “sale”, “new”, “hot” labels on your products. You can also display sale persantage, change labels order and their appearance.
Carousel Slider
Create unlimited sliders in pages, static blocks or any positions.
You can make products slider, image slider or any content slider.
Support vertical or horizontal slider, auto sliding, number of items sliding, sliding speed…
Tabs Widget
Create unlimited tabs in pages, static blocks or any positions.
Each tab contains other widgets or static blocks.
You can embed products listing, slider or any content into tabs.
Support multi-lingual.
You can add products to Cart in a single click, without leaving current page.
Advanced Layered Navigation
Make better your shop by block with ajax options, ajax price slider without refreshing a page.
Product Quick-View
Allow customer to quickly view a product details on fancy box popup without leaving current page. You can turn on/off this feature in the backend.
Typography & Custom CSS Classes
Theme support general typography, support all HTML elements, 24 columns grid system, support adaptive layout. Check out the Typography and Widget pages for details.
Documentation
Detailed instruction to help you install the theme on your store or install build a full demo site like our demo store. Detailed instruction for using our extensions, widget, theme settings. For developer, it guides you to develop a custom style extended from the original style without modifying the original source code.
Changelog
Version 1.0.4 - 15/12/2014 - Update magento 1.9.1 Version 1.0.3 - 18/11/2014 - Improves css on header. Version 1.0.2 - 27/10/2014 - Fix package MultideaPro extension missing file js. Version 1.0.1 - 01/10/2014 - Fix bug menu on mobile android - Fix file Font.php format MAC Version 1.0 - 25/9/2014 - Initial release
Look for different styles:
Check out our other templates.
Purchase Now
0 notes
Text
New Post has been published on Themesparadise
New Post has been published on http://themesparadise.com/buyshop-responsive-retina-magento-theme/
BUYSHOP - Responsive Retina Magento theme
1.9.3 Compatible!
BuyShop 3.x is best for new installation. Update from BuyShop 1.x, 2.x may be complicated, check http://etheme.tonytemplates.com/forum/ for details
Rating: 5 stars Reason: Flexibility Comment: Very very good theme with great support! I can recommend it to all everyone who’s looking for a great working and highly customizable theme.
Rating: 5 stars Reason: Design Quality Comment: Great Theme!
Rating: 5 stars Reason: Feature Availability Comment: Nice design, lots of features ready for use via disable/enable
Rating: 5 stars Reason: Customer Support Comment: This template looks great and the customer support is very responsive and helpful.
Rating: 5 stars Reason: Design Quality Comment: wonderfull theme ! Thanx
This is real transformer magento theme. It will allow you to create structure according to your needs and requirements. We are sured that it will statisfy all your needs that you are requiring and expecting from ecommerce solution.
Testimonials
Hey… Good work… I really liked the cleanliness and it looks awesome with my Retina Display
akjethwani
Excellent piece of work! Congrats! Thank you for the great job! the template is amazing!
chuvak
Super Cool Theme! Don’t need it right now but bought it for later
clonebid
Hi the best theme I have seen so far. In need to buy a quality theme, yours is the hottest canfidate.
Marcellino777
This theme is absolutely fantastic and top-notch. We’ve been repeatedly impressed both by how easy it is to implement changes to the theme on the backend, how much functionality is built into it to make our store look even more professional, and especially by the support forum. Your team has responded to each of our tickets within an hour or less each time. Very helpful, patient and professional developers. Thank you!
drummerbum
Hello! I bought this theme today and first of all I have to say a big thanks to the developers because it looks like there was some serious work involved and a lot of features at our disposal.
movilacristi
I already purchased the Dresscode theme and now the Buyshop. What a great themes and the best support I ever had! Really friendly and helpful people. The support forum works like a charm. Keep up the good work, I really hope this theme will be a success for you guys so that you will be able to develop more and more great stuff.
MisterG300
GENERAL FEATURES
Fully responsive 100%. You can enable/disable responsive mode
Retina Ready. Optimizied images, icon font
Html5, CSS3
Real Transformer which will allow to control every pixel. Unlimited colours, backgrounds, textures, fonts etc.
Well structured and refactored code with usefull comments. No core files changed
MultiStore ready. You can save and configure predefined schemes and your own layouts
Fluid grid system base on Bootstrap framework
BLOG ready
Included psd and html version
One click install including sample data
Already integrated most popular and usefull magentoconnect extensions
Ajax search autocomplete (magento default)
Catalogue mode (without prices, buy now buttons, registration etc.)
Ajax add to cart, add to wishlist/compare, toolbar paging/sort. You can enable/disable this feature.
Google fonts
SEO Friendly Design and Layout Structure. Compatible with all Magento SEO features
Cross browser compatibility ((Chrome, Safari, Firefox, IE 8 +))
Icon animation (css3) on/off
Added cross sell products in shopping cart on/off
Product short attributes in hover preview (on/off)
Quick view option
Discount labels on sale products on/off
Count of products in categories menu
LAYOUT
4 predefined (different structures) layouts. Basic, Amazing, iStore, Dark.
2 mega menu variants. You can adjust the number of columns.
Festive/holiday themes
Admin panel that will allow you to create/save different structure layouts.
Custom logout, checkout, 404 pages
Footer popup static/enable/disable modes
HOME PAGE
4 header variants including different sliders type (Flex, Parallax etc.)
Bestsellers, New, On Sale sliders in different views
Custom html blocks which can be simply edited with Magento editor
“New” and “Sale” badges
social widgets (Facebook, Twitter)
hide footer option
right vertical side bar
product hover choice option (hover or detailed view with the previews)
Ability set flexslider width (wide/fixed width)
Multistore sliders
Flexslider has original navigation animation
Compare button @ home page
LISTING PAGE
Image slider option for each category
3,4,5,6 products per row
with/without description option
Setup sidebar (enable/disable). All blocks are sortable. You can enable/disable any block via admin panel
ajax price filter
flash cloud tag option. You can chose between original and flash
PRODUCT PAGE
big/small product view
video option (just insert youtube url)
choice between cloudzoom, lightbox,, fancybox, prettyphoto or pirobox for big previews
qr code generation. You can enable/disable this feature.
related product slider turn on/off option
social bookmarks
custom html block, tab
Up-sell Products slider
Previous & Next functionality with the previews
POSSIBLE FUTURE UPDATES
(done) category menu on the left side bar
selfhosted video
(done) quick product view
(done) Groupon style Countdown
(done) more different layouts…
You will get premium support using our support forum – http://support.ethemeuk.com/ Please, don’t submit questions in the comments section. Our dedicated support can help you only using our support forum. Presale questions are without registration. Our support is available 10.00 – 20.00 GMT + 2 (Monday – Friday). We usually get back to you within 24 hours (except holiday seasons which might take longer).
60-pages user guied
PDF format
March 13, 2016 – version 3.5.2
ADDED:slick slider for product previews in mobile
December 17, 2015 – version 3.5.1
FIXED:middle name in registration form FIXED:product images on product page
November 27, 2015 – version 3.5.0
FIXED:fancybox js error REMOVED:parallax slider from ie(there is prototype js conflict ) FIXED:megamenu settings for all stores FIXED:product image scroll in mobile FIXED:error after delete item in cart(was deleted trash icon in popup cart) FIXED:fancybox popup in quick view changed to cloudzoom FIXED:blog with left column by default
November 6, 2015 – version 3.4.0
ADDED:product images for grouped product ADDED:compatibility 1.9.2.2 FIXED:formkey added to file /checkout/multishipping/overview.phtml FIXED:multistore css (body tag has store class code) minor fixes
September 17, 2015 – version 3.3.0
ADDED:2 skins decoration and cosmetics FIXED: moved left column to right in blog (latest wordpress fishpig module) FIXED:facebook fanbox FIXED:colorswatches
June 29, 2015 – version 3.2.2
UPDATED: jquery prettyPhotoUpdated to 3.1.6 ver
June 5, 2015 – version 3.2.1
ADD: ability remove 'all' filter from home page and set any filter selected by default in isotop product filter FIXED: cart popup after add to cart from quick view FIXED: baners on Mac misplaced FIXED: path to colors css in documentation FIXED: add to cart from quick view if ajax add to cart disabled FIXED: isotope home filter white space under footer
May 17, 2015 – version 3.2
FIXED: option in mobile navigation 'disable/enable Custom block' FIXED: removed bg image from cart title in right sidebar FIXED: autoclose quickview popup after success add to cart FIXED: enable cookie restriction policy FIXED: cart count not refreshed after add to cart from quick view
April 28, 2015 – version 3.1.2
- add svn diff files for previous update
April 23, 2015 – version 3.1.1
- updated html version - fixed zero on product hover - fixed PayPal express on product page - fixed JS merge - fixed Quick view
March 19, 2015 – version 3.1.0
-added configurable swatches -added onepagecheckout -added free rich snippet compatibility -minor fixes
November 26, 2014 – version 3.0.7
- fixed parallax slider in IE - fixed errors in ie9/ie10
November 4, 2014 – version 3.0.6
- all lightboxes fixed - custom css file added - search bar on ipad (wordpress) fixed - blog 1 column added - amasty social login compatibility - http://amasty.com/magento-quick-ajax-login.html (you should purchase extension separately) - other minnor fixes
October 15, 2014 – version 3.0.5.1
- fixed default Magento ajax search popup - add amasty search auto complete compatibility - http://amasty.com/search-pro.html (you should purchase extension separately)
August 26, 2014 – version 3.0.5
- fixed - cssrefresh button
August 23, 2014 – version 3.0.4
- fixed Load Preset Configuration - fixed minors bugs
August 15, 2014 – version 3.0.3
- JS errors fixed
August 13, 2014 – version 3.0.2
-uploaded absent js/VS files -solved conflict of zoom slider and product tabs/revolutions slider -fixed invisible products photo (css lazy load)
August 4, 2014 – version 3.0.1
- fixed tabs on product page
August 3, 2014 – version 3.0
- add new layout - zoom slider - rework blog, based on FishPig extension - minor fixes
May 17, 2014 – version 2.3.1
- add Magento 1.9.0.0 compatibility
March 20, 2014 – version 2.3.0
Fixed -blog link in topmenu now is visible in mobile mode -checkout progress bar -fields for the birthday int the one-page checkout done in one line -newsletters subscribe submit confirmation -confirmation after product review submit -mobile menu collapsed when was low web speed -icons animation enable/disable -prev/next with flat catalog mode fixed fatal error Added -compatibility default checkout page with module swift checkout - seo carousel created like featured products short code (you can fully manage and sort sale products) -alt tags for product thumbnails -more descriptions in admin panel -separated one-page checkout in a self package -updated to last version js revolution slider
February 5, 2014 – version 2.2.0
Added - countdown special price - blog http://www.magentocommerce.com/magento-connect/blog-community-edition-by-aheadworks.html - one page checkout http://www.magentocommerce.com/magento-connect/swiftcheckout-free-single-page-checkout.html - brands carousel Fixed -watermarks -minor responsive css -minor fixes
January 13, 2014 – version 2.1.4
Added - Magento 1.8.1.0 support (replaced file appdesignfrontenddefaultbuyshoptemplatepersistentcustomerformlogin.phtml) - new twitter widget Fixed -minor issues
OCTOBER 21, 2013 – version 2.1.2, version 2.1.3
- update documentation
OCTOBER 10, 2013 – version 2.1.1
- increase Slideshow performance in Safari
OCTOBER 8, 2013 – version 2.1.0
- AJAX add to compare/wishlist work with SSL - removed empty box under top level items in MegaMenu if no children - disable ajax add to cart work with Magento 1.8 now - you can control count of new and sale products using product_count parameter in short codes - fixed showing top menu while loading page(is low speed and big count of menu items)
SEPTEMBER 30, 2013 – version 2.0.2
- added Magento 1.8 compatibility (one file modified appdesignfrontenddefaultbuyshoptemplatecheckoutonepagereviewinfo.phtml) - improved refresh CSS files - tools/compilation work with BuyShop now - fixed duplicated menu on mobile when enabled simple menu - theme version 1.7.1 added to package - minor fixes
SEPTEMBER 26, 2013 – version 2.0.1
Fixed performance issue.
SEPTEMBER 21, 2013 – version 2.0
1) Reworked for bigger compatibility with 3rd part extensions. Using most of default Magento features 2) All home pages you can create using next short codes: New Products carousel, Sale Products carousel, Bestsellers products carousel, Featured products, Static blocks (banners, info blocks, etc). Using short codes gives you possibility to create a large variety of options home page 3) Reworked bestsellers and featured blocks. Now you can simply manage these products (sort, simply assign product to category Featured or category Bestsellers) 4) Added useful multilevel collapsed left categories menu 5) Buyshop use now default 'left' column, was before 'left-sidebar'. All blocks can be sorted, deleted or included by using standard Magento functionality 6) Simple Menu, Megamenu, Amaizing menu and Mobile collapsed menu are multilevel now with highlighted active item 7) Added multistore select block in footer
Added CSS generator for colorizing your theme. In BuyShop 1.x dynamic styles were included in <head></head>, now theme create special CSS file for needed styles 9) Updated 'Reset Static blocks/CMS Pages to default' functionality. Now you can reset not only all the blocks/pages at once, but and the individual blocks/pages 10) Added fixed following top menu 11) Increased performance 12) Fixed minor bugs
AUGUST 22, 2013 – version 1.7.1
Fixed issue:
twitter feeds (new rules to display them look in documentation FAQ #13) - updated to last twitter API twitter login - updated to last twitter API updated FAQ questions in documentation minor bugs
AUGUST 15, 2013 – version 1.7
Added features:
30% performance increase of BuyShop theme product name in alt tag for product thumbnails SEO optimized product names h3 tags product SKU on product page - enable/disable
Fixed issue:
bestsellers block is compatible with flat catalogue mode now sometimes we were able see only one Arial font AJAX loader was visible after add to cart on product page if more then allowed maximum qty was added AJAX loader bug when product qty updated on product page use default Magento price.phtml now - there no problems with product prices (configurable, bundle etc) 'sale' and 'new' labels can be simply translated (CSS labels instead of images) change to theme color MegaMenu and product info carousel buttons all category levels work with 'Include in Navigation Menu' / in mobile version also AJAX search auto complete is compatible with flat catalogue mode now minor issues
UPDATES FOR AUGUST 1, version 1.6.1
Fixed issues:
product URLs sale price is visibility in list view documentation update
UPDATES FOR JULY 20, version 1.6
Fixed issues:
- newsletter subscribing - added patch for Magento 1.6.x support - products in listing have SEO URL - bundle product price fixed - fixed blue screen on strict hosts - fixed problem with disappearing of icons after saving CMS blocks - minor fixes
UPDATES FOR JUNE 16, version 1.5
Added features:
- added MegaMenu - theme adapted to 12 languages English,German, Italian, French, Dutch, Greek, Danish, Poland, Russian, Swedish, Spain, Portuguese. Included into package. - added instruction how easy create your own translation via translate.csv file - added js cloud zoom (flash cloud zoom badly works with android)
Fixed issues:
- category option 'Include in Navigation Menu' works now with categories navigation - 4 level of navigation in MegaMenu (in simple 3) - grouped products have price with 'From' - clear all action after ajax add to compare fixed - show product names (center align) in catalogue mode - twitter api updated from 1.0 to 1.1
UPDATES FOR MAY 12, version 1.4.2
Fixed issues:
- catalogue mode fixed - carousel of mini photos in product info - parallax and revolution sliders have no conflict now - grouped product price was zero in product listing
UPDATES FOR MAY 6, version 1.4.1
- added missed files for revolution slider
UPDATES FOR APRIL 30, version 1.4
Added features:
- enable/disable top navigation menu - enable/disable navigation menu in left column @ listing page - enable/disable left column @ home page - enable/disable right banner @ home page - revolution slider - scroll for small product preview images - currency symbols to currency switcher
Fixed issues:
- hover “Remove This Item” in filter shifts man menu to the right. - tax is not showing in list view and shopping cart - second line of categories menu(if many items) has misplaced submenu - empty review, tags tabs @ product page when modules disabled - validation errors - formatting issue for including and excluding tax in price in product info - cart box misplaced when British Pounds Sterling is chosen in amazing theme - group Product Qty Field disappeared on tablets if were enabled custom block or related products
UPDATES FOR APRIL 15, version 1.3.1
Fixed Delete from ajax cart after add to cart issue.
UPDATES FOR APRIL 11, version 1.3
Added features:
- ability change custom tab title in product info page - shop by brands is multi store now (non-standard feature for Magento) - rollover product ability to choose show short description or attributes - flex slider is cashed now - added WYSIWYG editor for custom tab block in product info
Fixed issues:
- disable price filter in shop by block when ajax price slider is enabled - fix google fonts - catalog mode fixed (disable price/wish list/compare) - updated Oauth library for twitter login - in shopping cart page in block DISCOUNT CODES changed label 'Zip/Postal Code' to 'Enter your coupon code if you have one' - set limit sale, bestsellers, new products carousels to 12 items - currency changing is enabled in 'new products' block when top currency switcher changed - special products block is multi store now as every other blocks
UPDATES FOR APRIL 1, version 1.2
- fixed Account sidebar is visible now - documentation update
UPDATES FOR MARCH 30, version 1.1
Added features:
- ability set flexslider width (wide/fixed width) - all sliders multistore now - added compare button to home page - footer popup now can be static - icon animation (css3) can be disabled - flexslider has original navigation animation - fixed menu categories in amazing layout on ipad - discount labels on sale products on/off - added crossels product in shopping cart on/off - ajax search autocomplete - added quick view option - product short attributes in hover preview (on/off) - count of products in categories menu
Fixed issues:
- show labels ‘sale ’ and ‘new’ in featured products on home page - fixed Shop by category - menu categories is multistore now - rss now available in categories (enable/disable) - fixed buyshop_sample_data.sql(was bug with adding new attribute in the attributes manager) - added out of stock in product preview - fixed display of ‘new' and ‘sale’ labels when product rollover mode
Images for the demo are taken from bigstockphoto.com
http://www.bigstockphoto.com/image-13467899/stock-photo-stunning-young-lady-posing-in-lingerie http://www.bigstockphoto.com/image-4024783/stock-photo-shopping-people http://www.bigstockphoto.com/image-12126176/stock-photo-young-beauty-posing http://www.bigstockphoto.com/image-16486037/stock-photo-womanish-shoes-isolated-on-white-background http://www.bigstockphoto.com/image-644264/stock-photo-mens-jewelry http://www.bigstockphoto.com/image-12124412/stock-photo-fashion-style-photo-of-a-man-wearing-white-suit
LayerSlider – The Parallax Effect Slider (Extended Licence) – http://codecanyon.net/item/layerslider-the-parallax-effect-slider/922100 (Included to the price of template.)
Facebook Connect and Like Free extension – http://store.belvg.com/free-extensions/facebook-connect-and-like-free.html Please refer to above link for usage terms
IMPORTANT * Images from demo are not included in theme files.
Purchase Now
0 notes