datafeedr
Forum Replies Created
-
Forum: Plugins
In reply to: [Datafeedr API] WP All Import compatibilityOur plugin does not integrate with but does not conflict with WP All Import. You can use both plugins on your site at the same time.
Forum: Plugins
In reply to: [Datafeedr Comparison Sets] Price comparisonSorry, I don’t have any recommendations. However, it sounds like you will need a WordPress developer to help build this custom functionality.
Forum: Plugins
In reply to: [Datafeedr Comparison Sets] Price comparisonHi
Unfortunately this is not what our product was built for so I don’t think the Datafeedr Comparison Sets plugin is the right choice for this scenario.
Thanks
EricUnfortunately this is not possible.
Forum: Reviews
In reply to: [Datafeedr Comparison Sets] Top notch plugin and dito supportThanks @redlabel44!
Forum: Reviews
In reply to: [Datafeedr WooCommerce Importer] Responsive and Helpful Customer Support!Thanks @marykms!
Forum: Plugins
In reply to: [Datafeedr Comparison Sets] Support for book retailers and affiliate linksFirst check if the merchants you are interested in are already a part of one of the affiliate networks we support.
Then, if they are, see if they offer a data feed on the network.
We remove data feeds from our system that are old and out of date.
Yes, you can manually reference ISBNs to create your Comparison Sets. So you could do something like this:
[dfrcs isbn=”1408855895″]
Hope this helps!
Forum: Plugins
In reply to: [Datafeedr Comparison Sets] Support for book retailers and affiliate linksHi
Yes, we actively add vendors to our list. If the vendor is part of one of the affiliate networks we support, we’ll do our best to add them. Here’s more info https://datafeedrapi.helpscoutdocs.com/article/27-request-a-missing-merchant
Datafeedr will work per individual ISBN.
If you have any other questions, please don’t hesitate to ask.
Thanks,
EricForum: Plugins
In reply to: [Datafeedr Comparison Sets] Support for book retailers and affiliate linksHi
You can add products from the affiliate networks and merchants we support: https://www.datafeedr.com/networks/
Since we only support products from those networks/merchants, that means they all have links from the affiliate networks.
Unfortunately if a product you want to promote is not from a merchant we support, you won’t be able to add that product.
If you have any other questions, please don’t hesitate to ask.
Thanks,
EricForum: Plugins
In reply to: [Ads by datafeedr.com] dfads shortcode always return somethingCool, glad you got it working!
Forum: Plugins
In reply to: [Ads by datafeedr.com] dfads shortcode always return somethingIf you have
return_javascript=1then the plugin will always return HTML to the browser. That’s because the JS part loads data via AJAX to ensure the ads aren’t affected by caching plugins.So you’ll need to keep the javascript code removed from your shortcode.
Or you could always use the PHP code like
<?php $ads = dfads( 'groups=3&limit=2' ); ?>to write your own conditional.Excellent! Thanks for the update!
You could try adding the following code to your theme’s functions.php file. I haven’t tested it because I don’t have a premium version of WPAI so I hope it works.
function disable_wccal_before_wpai_xml_import( $import_id ) { add_filter( 'wccal_valid_product_classes', [], 999 ); } add_action( 'pmxi_before_xml_import', 'disable_wccal_before_wpai_xml_import' );Can you ask the WPAI developers for the name of the “cron update” action hook to use to trigger other hooks? That’s the info I need.
Is this thread https://ww.wp.xz.cn/support/topic/importing-issue-5/ the same issue you are having?