2878 comments found.
Hello AUTHOR. The script AffiliatePro SaaS seems interesting and I expect to buy it soon. For now I need some clarification: a) Can it be installed in one domain and be integrated to one or more systems hosted in other domains? b) Does it allow adding custom modules? c) What features are exclusive for Extended licence? d) My system already has a user table with registration and login access system. Does your script come with its own user table? If yes, how these 2 tables and sessions will work together? Regards, Celestino
Hello,
A. Yes B. Yes C. Extended license allows you to use the membership module. D. Yes the script is php self hosted and not like we plugin.
Thank you for fast answer.
Most welcome! Hope to see you our client.
Buying Extended License after the Regular License requires full payment or just the difference?
Full payment and then can create refund request for the regular license from envato.
Thanks for the clarification.
You are most welcome
i have downloaded 13.0 version as the automatic update was shown in admin earlier. now the new update 13.0.1 is not showing in admin for auto update. may i know the reason, it was mentioned notifications will pop for new updates.
Please create a ticket to our support team. Thank you,
My support is expired. Kindly let me know if I need to manually install the updates for new version or it’s automated. I cant find the new version available in my admin panel(previously it showed as new update available for 13.0.1).Please tell me if I had to do the update manually from 13.0.1 to 13.0.2. Messaging here will help the other users also. Thank you
Updates are done only manually and all instructions are available in the version package you have to download from your codecanyon account. For any other support questions, you must create a ticket.
My current updated version is 13.0.0, now the latest is 13.0.2 I didn’t download 13.0.1, can I directly install 13.0.2 from 13.0.0. I don’t find option for 13.0.0.1 from the package downloaded.
Yes
Inspite of new installation, in admin panel it only shows current version as 13.0.0.0 not 13.0.0.2? Even in system updates it’s showing as 13.0.0.0. please check for error at your end. Please don’t leave your customers confused like this. I have completely deleted my previous data and installed the new package. Hope you resolve the issue soon.
Our support team is available only on the ticket system.
Hello, after update, I register few vendor account, posted some campaigns (banners) and few affiliates generate some click but doesen’t work. No change on the reports. No commissions per click generated to affiliates.
To understand better, I run meta ads campaign with affiliate market link as target.
In few hours I generate over 100 clicks but no commission earned.
Please create a ticket and provide all details to our support team.
I do not have a valid license for support. I purchased an extended license for the script. But the support license expired. I think this is an must feature of the script.
It came with every type of license. I tried to open an ticket on your website but I cannot because License (support) is expired.
The support team available only in the ticket system. We can deliver a general message to them if this can help you.
Yes, this can be great! Thank you!
You can deliver the issue.
Hello, any news? Thank you!
You can contact our support team directly and get all the information you need. Here ia not possible to run support queries.
As I say the support license is expired, but this is one of the main feature of the script. Can I have a bit of help from your support team? I mean, I never used support untill now. I paid 2 licenses.
Support policy is set and designed by the Envato team and not by us so we are following envato policy as Envato authors. Please renew your support and create a ticket for the support team with your issues.
Ok, I purchased a support license and I submit a ticket. I wait the answer. Thanks!
You did a very good step. Our support team will reply to you ASAP.
Hello, please can i have the demo link to check the admin site???? and even the demo of user website or product page?
Hi, where exactly the AI helps? Can it create banner for vendors? or just text parts? Thanks
AI can’t know what banner integration vendor needs but it can help with text creation and actions like that.
Thanks
You are welcome.
Hi guys gentle reminder on this. Its has been over 4months now and nothing to show you are adding it but its essential to affiliate activities for this whole system:
1. if add time spent of pages to the internat tracking is becoming very difficult for you, then just as you have added the time a page is clicked or opened to the general tracking reports, you should just add the time a page is closed to the already existing data being collected so that we can calculate the minutes ir seconds spent by affilaites engaging on products or pages, etc.. this should make it easier for you to implement than the wholes scripting if thats becoming a headache
2. more details to make the work at your side easier for the next update. JUST GO THROUGH THIS FOR YOUR KIND CONSIDERATION, TWEAKING, etc before the next update to make it more powerful: ✅ Feature Request: Log and View time_spent in Click Reports for Affiliates Goal:
Enhance the affiliate script to capture and display how long a visitor stays on a page (time spent) after clicking an affiliate link. This allows admins and advertisers to judge traffic quality, not just quantity. STEP 1: Extend Backend Tracking Script to Accept time_spent
Currently, the /integration/general_integration script captures:
af_id (Affiliate ID)
website_url (Clicked URL)
general_code (Page Identifier)
To track user engagement, please add support for an additional parameter:
// Get time_spent from GET request $timeSpent = isset($_GET[‘time_spent’]) ? intval($_GET[‘time_spent’]) : 0;
// Other existing data $af_id = $_GET[‘af_id’] ?? null; $website_url = $_GET[‘website_url’] ?? null; $general_code = $_GET[‘general_code’] ?? ‘generalclick’;
// Save to DB (assuming table: affiliate_clicks) DB::table(‘affiliate_clicks’)->insert([ ‘af_id’ => $af_id, ‘website_url’ => $website_url, ‘general_code’ => $general_code, ‘time_spent’ => $timeSpent, ‘created_at’ => now(), ]);
This addition enables passive tracking of how long a visitor stays on a target page after being referred by an affiliate. STEP 2: Modify the Database
Ensure the affiliate_clicks (or equivalent) table includes a time_spent column:
ALTER TABLE affiliate_clicks ADD COLUMN time_spent INT DEFAULT 0;
STEP 3: Display time_spent in Admin Panel
On the Clicks/Reports page in the admin backend, show this new field next to each affiliate click record.
Example HTML / Blade Template: Affiliate ID Page Time Spent (s) ... @foreach ($clicks as $click) {{ $click->af_id }} {{ $click->website_url }} {{ $click->time_spent }} @endforeach Optional Enhancements ✅ Highlight quality traffic: < 10s = red (low quality) > 60s = green (high quality) ✅ Show average time spent per campaign or per affiliate ✅ Allow sorting/filtering by time_spent to identify top performers Example Client-Side Script (for Users Embedding It)
Add this script to the footer or header of any external page (e.g., blogs, partner sites) to track time spent dynamically:
<script type=”text/javascript” src=”https://yourdomain.com/integration/general_integration”></script> <script> const currentUrl = window.location.href; const pathParts = window.location.pathname.split(”/”).filter(Boolean); let generalCode = “generalclick”; if (pathParts.length > 0) { const lastSegment = pathParts[pathParts.length – 1]; generalCode = lastSegment.replace(/[^a-zA-Z0-9]/g, ””).substring(0, 20).toLowerCase(); } const af_id = new URLSearchParams(window.location.search).get(“af_id”) || “UNKNOWN”; </script> Task Status Client-side sends time_spent as query param ✅ Backend script logs time_spent in DB ✅ Admin panel shows time_spent in click reports ✅ Dynamic integration with each affiliate link/page ✅
It is recommended to create a ticket for the support team, and then the request/suggestion can be followed up on.
Best regards.
Hi,
I am still on 12.0.0.6, how to update to the latest since there is only latest upgrade version file in the zip?
Upgrade instructions are available inside the package you have to download from your codecanyon account download area.
Hi,
1. since we have to do some modifications on date system, is this version 13.0.2 stable or better wait for miner updates?
2. What is the main differences between free app and the premium one? Thanks
Hello,
The version is stable, but we continually improve our versions and add new features. This is why it is recommended not to add any custom coding into the system.
It is always better to create a suggestion request from the ticket system for a feature you need, or create a custom development ticket as well.
Hey!
I have updated the script. Now i am facing 2 issues.
The menu is not working on mobile.
Secondly when an affiliate or a vendor get login there is very large logo of my site appears and i have to scroll very very long to see the dashboard menus etc.
Please help me out.
Thank you for contacting us. However, it appears that you have reached the wrong channel for support.
To help you, create a ticket through our dedicated support page at https://affiliatepro.org/support/.
Our support team will be more than happy to help you with any issues or concerns.
Thank you for being so understanding, and we look forward to hearing from you soon.
Best regards
Dear Support,
Kudos for the latest updates/
I noticed you have not been making any improvements on the cart mode store in all your updates, please do not abandon it. Can you please improve the UI and make it more attractive.
Also, can you make each vendor store unique such that every links to the general store is removed – Just like a landing page. This will make customers buy exclusively from the store the vendor that invited them.
Thank you!
Thank you. We will continue to improve the design of each part from version to version.
Vendors’ store domains are based on the main store domain with their own slug, and can’t be a private domain for each vendor store.
Hi, congratulation on new update. May I ask what’s the difference between included free app source code and your new app product for this script? Thanks
Thank you!
You are welcome to read all the information here:
Free version: https://affiliatepro.org/mobile-app-free-edition-features/
Premium version: https://affiliatepro.org/mobile-app-premium-edition-features/
Demo: https://affiliatepro.org/mobile-app-demo/
hello how can we use the funnel is there a tutorial for that?
Nice, new user panel has been made…
Thanks and congratulations..
By the way please upgrade too the store views, specially in small screens..
Please check user logged in using mobile devices, no logout button,
Thank you!
No need logout option on mobile, but we will add it in the next version.
Hello,i see in next updates you gonna make admin and user paid apps ,what will happen to the main app that exists now ,will it stop working and be replaced by paid apps?
Hello, version-1 of the app will continue working normally but we recommend you to buy the new app , version-2, that is totally new for user side and also will be updated soon with functionality for admin side.
Custom Order Integration (If Applicable) Common Tracking Script: Insert into your site’s header.
where can I find the more details doc for this? How does this work?
this doc do not show any details about external sales pages and tracking. Just says Custom Order Integration. Is there any particular demo or place i can check this feature?
In this guide, you can add a new order integration with your external site, and once you finish, save the campaign. You will see the integration code instructions that need to be implemented on your external site.
so this is multivendor right? one super admin -> multiple vendors can signup and list their product? I am still confused how does the external product(sales page on the customer domain and the customer server) works
Yes.
1 Admin
Unlimited sub_admins
Unlimited vendors
Unlimited affiliates
ok, one last question please
say my domain is xyz.com; vendor X comes and register.
he list his product and the sales page for his product is on vendorx.com. so he can add this website/sale page domain and track the sales done on the vendorx.com site?
All can work, but only in the system domain and not in the vendor’s personal domain.
Here is a vendor sales products example on the same system domain, for example: https://demo2.affiliatepro.org/store/vendor-store
demo seems to be not working. on vendor account, when I am trying to create a campaign, it logs me out and not able to test it.
Our team will check it.
You can check the sales mode demo2 site again. We updated our demo site to the new version 13.0.0.1 https://affiliatepro.org/affiliatepro-saas-free-demo/
Admin backend: https://demo2.affiliatepro.org/Productsales/index
Vendor store https://demo2.affiliatepro.org/store/vendor-store
how can we see the demo of jvzoo concept? where sales page will be external page and we will add the tracking buttons n all? In the demo, I am not able to see the vendor dashboard login for jvzoo style platform
All our demos are available here https://affiliatepro.org/affiliatepro-saas-free-demo/
You need to check the “Marketplace – Sales Mode” demo, and here is a guide on how to add sales products https://affiliatepro.org/kb-article/sales-mode-add-product/, but for fast testing, you can just go to the storefront side and see how it works; there are demo products working already.
how do i find this AI-Powered Content Generator – integrates OpenAI, Claude & Gemini for
Hello,
Under admin panel>>system>>settings>>ai helper
For any other technical questions, please create a ticket.
am not asking technical question, i also do not mean where to enable it, i mean where can user make use of it, it user dashboard, front end or only admin. simple
because i do not see any where in the script that says generate content
You can visit this guide: https://affiliatepro.org/kb-article/ai-powered-content-generator/
Hi, I did a fresh installation, and everything went well. The installation process was completed successfully. BUT WHEN I WANT TO LOG IN AS ADMIN AT www.domain.com/admin, IT KEEP SAYS THIS ALERT (No input file specified.). Please help
Thank you for contacting us. However, it appears that you have reached the wrong channel for support.
To help you, create a ticket through our dedicated support page at https://affiliatepro.org/support/.
Our support team will be more than happy to help you with any issues or concerns.
Thank you for being so understanding, and we look forward to hearing from you soon.
Best regards
My support period has expired, so the system is not allowing me to create a new support ticket. I was able to install this software in the 10.0.0.3 version, and the software was working perfectly fine. Now I want to do a fresh installation, and the installation process is completed successfully, and I can even access the front landing page. But when trying to access /admin, that’s when the problem starts.
Today I even tried to download a new update (version 13.0.0.1), and I did a new fresh installation with a new empty database, but the problem still exists.
Is it compulsory for me to renew support? If yes, then please tell me why? Why pay again when installation is done successfully?
DURING INSTALLATION, THE SYSTEM SHOWED ME THAT ALL SERVER REQUIREMENTS WERE MET, THAT’S WHY THE INSTALLATION WAS DONE SUCCESSFULLY. PLEASE TELL ME IS THERE ANYTHING MISSING IN YOUR DOCUMENTATION?
It can be only a server configuration issue, like .htaccess or some rewrite rules. Try adding index.php to the domain, and if it is working, then it’s for sure an .htaccess issue which can be solved only by your server provider.
Can vendors have the option to add upsell pages as well?
I mean “Sales Funnels”, say for example a vendor has one frontend and 4 upsells. so multiple products with multiple price points but same offer.
is this possible?
Hi InnoVisionTech,
Thank you for your excellent question about sales funnel functionality!
We are considering adding sales funnel support to our AffiliatePro SaaS system based on user demand.
Potential Features:
Main product + unlimited upsells (1 frontend + 4+ upsells as you mentioned)
Multiple price points for the same offer
Sequential upsell flow with automatic redirects
Full affiliate tracking for all funnel purchases
Example Flow:
Main Product ($97) → Upsell 1 ($47) → Upsell 2 ($97) → Upsell 3 ($197) → Upsell 4 ($297)
We’re evaluating this feature for future updates. Your feedback helps us prioritize development.
Feel free to ask any other questions!
Best regards,
AffiliatePro SaaS Team
Any ETA for this update please? How soon can we expect this feature?
This is the flow you need?
yes, the same!
Ok. Our team will investigate the integration of the new feature in our system, and if it is possible, it will be added to the next version.
ok, Any ETA?
Within 1-2 days, you can contact us to get the final update, whether it will be or not.
Any positive update on this please?
Good news.
Read our logs: https://affiliatepro.org/affiliatepro-saas-logs/
wow! that’s amazing news. Please add “bump orders” option too…
Connect with me for an exciting product plan. I have been doing this since years. This script can be a super seller if you implement all features required to manage a app like this!
After resealing, you are welcome to test and buy, and create a ticket with your full suggestions.
Any ETA please?
A few days only.
Hi admins,
Please redesign the affiliates, vendors dashboard also, in small screens they dont look good. Redesign it like in the super admin dashboard, use new bootstrap template too.
Thanks
We will!