In order to display the base price for affiliate products, the following hook must be stored as a snippet. After that, WooCommerce will display the price from the affiliate product directly and also the base price (if any).
In order to display the base price for affiliate products, the following hook must be stored as a snippet. After that, WooCommerce will display the price from the affiliate product directly and also the base price (if any).
To realize this, we need to access two hooks from affiliate-toolkit. This code assigns the product category to the list. You may need to replace "productcategory" with your own name. Now you can assign the categories to the list. Now we just need to copy the product categories from the list to the product. We […]
Unfortunately, the products from AWIN and from the CSV feed must be imported into a temporary table. Depending on the size of the product feed, the tables will also be correspondingly large. This can only be prevented by filtering the product at the source. E.g. By categories or other keywords using "Create a feed". Is […]
Yes, of course you can. There you can uncheck "Show plugin credits" under display settings.
If you did some custom templates and you are using the more offers template you will get a error message. You can fix this if you replace the following lines. Search for these lines: replace it with that 3 lines:
You can do this normally with the stores. I always create a dummy store where I assign the manual product. (FB Group / Johannes B.)
So that you can filter products by price discount in a list, you can use this filter. We filter for at least 40% off in this example. Also, we only use this filter on the post with ID 6127. For all other contributions, this list is not filtered. Just add this snippet to your functions.php […]
You can't delete the templates, however you can easily hide the templates via hook. With this hook, only custom templates will be displayed, making it easier for the editor to find a template.
Hello, you can find them here: https: //www.affiliate-toolkit.com/downloads/template-pack/ VG Christof
for removing the VAT text in a template you must delete this line of text: So copy the systemtemplate you want to use and change the line I marked green in the previous mail: <span class="atkp-priceinfo">{{$formatter->get_priceinfotext($product)}}</span> You can delete it or you can also change it to:  <span class="atkp-priceinfo">This link is an affiliate link </span> For […]