A
by Risto Niinemets
5 (1 reviews)
Amazing WP e-Commerce
Enable some of the WP e-Commerce disabled features and simplify your development.
Tested up to WP 3.5 (Current: 7.0.2)
v1.0.1
Current Version v1.0.1
Updated 13 years ago
Last Update on 12 Mar, 2013
Refreshed 15 hours ago
Last Refreshed on
Rank
#44,004
—
No change
Active Installs
10+
—
No change
KW Avg Position
11.5
—
No change
Downloads
3.6K
+2 today
Support Resolved
0%
—
No change
Rating
100%
Review 5 out of 5
5
(1 reviews)
Next Milestone 20
10+
20+
39,311
Ranks to Climb
-
Growth Needed
8,000,000
Active Installs
Pro
Unlock Exact Install Count
See the precise estimated active installs for this plugin, calculated from real-time ranking data.
- Exact install estimates within tiers
- Track install growth over time
- Milestone progress predictions
Need 10 more installs to reach 20+
Rank Changes
Current
#44,004
Change
Best
#
Downloads Growth
Downloads
Growth
Peak
Upgrade to Pro
Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.
Upgrade NowReviews & Ratings
5.0
1 reviews
Overall
100%
5
1
(100%)
4
0
(0%)
3
0
(0%)
2
0
(0%)
1
0
(0%)
Tracked Keywords
Showing 2 of 2Unlock Keyword Analytics
Track keyword rankings, search positions, and discover new ranking opportunities with a Pro subscription.
- Full keyword position tracking
- Historical ranking data
- Competitor keyword analysis
Track This Plugin
Get detailed analytics, keyword tracking, and position alerts delivered to your inbox.
Start Tracking FreePlugin Details
- Version
- 1.0.1
- Last Updated
- Mar 12, 2013
- Requires WP
- 3.0.1+
- Tested Up To
- 3.5
- PHP Version
- N/A
- Author
- Risto Niinemets
Support & Rating
- Rating
- ★ ★ ★ ★ ★ 5
- Reviews
- 1
- Support Threads
- 0
- Resolved
- 0%
Keywords
Upgrade to Pro
Unlock keyword rankings, search positions, and detailed analytics with a Pro subscription.
Upgrade NowFrequently Asked Questions
Common questions about Amazing WP e-Commerce
(get|the)_product_price() (get|the)_product_description() (get|the)_product_thumbnail() (get|the)_product_image() (get|the)_product_title() (get|the)_product_id() get_product_categories() get_product_category_slug() list_product_categories() get_additional_images()
"Get" function return the wanted value, whereas "the" function echoes it.
Yes, there are many filters to affect the work of this plugin. Filters: amazing_gallery_container_style - (string) Gallery thumbnail images container style tag amazing_gallery_container_class - (array) Gallery thumbnail images container classes amazing_gallery_thumbnail - (array) Gallery thumbnail images arguments (title, alt tag, class) amazing_gallery_link_class - (array) Gallery thumbnail image link classes before_amazing_categories_list - (string) Categories load_amazing_style - (boolean) To prevent plugin`s stylesheet to be loaded, you have to return false. load_amazing_script - (boolean) To prevent plugin`s javascript to be loaded, you have to return false. By using this filter and returning false, you can disable the Extra Thumbnails feature of this plugin. amazing_grid_classes - (array) Grid wrapper div classes amazing_extra_image_classes - (string) Product extra thumbnail classes
There is a nice way to do it: add_filter( 'load_amazing_script', 'disable_amazing_ecommerce_script' ); function disable_amazing_ecommerce_script( $enable ) { return false; }