A
by ldebrouwer
1 (0 reviews)
Affiliate Press
Affiliate Press allows you to set up an affiliate website based on product feeds as easy as 1-2-3.
Tested up to WP 3.4 (Current: 6.9)
v0.3.8
Current Version v0.3.8
Updated 13 years ago
Last Update on 19 Apr, 2012
Synced 7 hours ago
Last Synced on
Rank
#42,627
+131 this week
Active Installs
10+
-33.3%
KW Avg Position
N/A
—
No change
Downloads
5.7K
+1 today
Support Resolved
0%
—
No change
Rating
20%
Review 1 out of 5
1
(0 reviews)
Next Milestone 20
10+
20+
16,762
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 6 more installs to reach 20+
Rank Changes
Current
#42,627
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
1.0
0 reviews
Overall
20%
5
0
(0%)
4
0
(0%)
3
0
(0%)
2
0
(0%)
1
0
(0%)
Tracked Keywords
Showing 0 of 0| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| No keyword data available yet. | ||||
Unlock 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
- 0.3.8
- Last Updated
- Apr 19, 2012
- Requires WP
- 3.3+
- Tested Up To
- 3.4
- PHP Version
- N/A
- Author
- ldebrouwer
Support & Rating
- Rating
- ★ ☆ ☆ ☆ ☆ 1
- Reviews
- 0
- Support Threads
- 0
- Resolved
- 0%
Keywords
Upgrade to Pro
Unlock keyword rankings, search positions, and detailed analytics with a Pro subscription.
Upgrade NowSimilar Plugins
WP Adminify – White Label WordPress, Admin Menu Editor, Login Customizer
7K+ installs
#2,736
Master Addons For Elementor – White Label, Free Widgets, Hover Effects, Conditions, & Animations
40K+ installs
#929
Popup Builder - Create highly converting, mobile friendly marketing popups.
200K+ installs
#259
Ads.txt Manager
100K+ installs
#354
YARPP – Yet Another Related Posts Plugin
100K+ installs
#379
Frequently Asked Questions
Common questions about Affiliate Press
You can do this by copying the following PHP code in your product template. if( class_exists( 'LDB_Affiliate_Press' ) ) { $ap = new LDB_Affiliate_Press; echo $ap->AP_getPrices( true ); } To load the products into a page template you can use this code. $posts = get_posts( array( 'post_type' => 'product' ) ); foreach( $posts as $post ) { setup_postdata( $post ); the_title(); the_post_thumbnail(); the_content(); if( class_exists( 'LDB_Affiliate_Press' ) ) { $ap = new LDB_Affiliate_Press; echo $ap->AP_getPrices( true ); } } If you'd rather retrieve just the data and not the pre-formatted table you can use the following code. if( class_exists( 'LDB_Affiliate_Press' ) ) { $ap = new LDB_Affiliate_Press; $data = $ap->AP_getPrices(); } The affiliate data is now stored in the $data variable.
By default custom post types are not shown on a category page. To achieve this you'll have to add something along the lines of the code below to your themes' function.php. add_filter( 'pre_get_posts', 'my_get_posts' ); function my_get_posts( $query ) { if ( is_category() && $query->is_main_query() ) $query->set( 'post_type', array( 'post', 'product' ) ); return $query; }
The permissions on you 'uploads' folder in 'wp-content' are most likely not set correctly.
This plugin is still under development and in beta. Most of the functionality is still subject to change and I hope to bring some more features to the plugin. Compiling an extensive help and support section would therefor be somewhat of a hassle at the moment. I strongly advise you to post in the support forums if you have any questions. ( And please check there first if your question wasn't answered yet. )