datafeedr
Forum Replies Created
-
Forum: Plugins
In reply to: [Cloak Affiliate Links for WooCommerce] Redirect info message?You could try the Improved External Products Pro which I believe has support for redirect pages.
Forum: Plugins
In reply to: [Cloak Affiliate Links for WooCommerce] CustomizationsThis plugin is not for that. Try this http://www.wpbeginner.com/wp-tutorials/how-to-cloak-affiliate-links-on-your-wordpress-site/
Forum: Plugins
In reply to: [Cloak Affiliate Links for WooCommerce] CustomizationsThose can be found here: WordPress Admin Area > Settings > Permalinks
Forum: Plugins
In reply to: [Cloak Affiliate Links for WooCommerce] Not workin on catalog/archive pageGreat, thanks for sharing!
Forum: Plugins
In reply to: [Cloak Affiliate Links for WooCommerce] Not workin on catalog/archive pageHi
It works for me on your site. When I hover over an image I get a URL like this: http://outletics.ru/a/27643/
That appears to be cloaked.
Make sure you have deleted your cache.
Eric
Forum: Plugins
In reply to: [Ads by datafeedr.com] Wrong addAre you using a caching plugin? If so, try clearing your cache.
Forum: Plugins
In reply to: [Cloak Affiliate Links for WooCommerce] Google analytics trackingClicks are automatically tracked when using this plugin.
Here’s the code you need to see the number of clicks a cloaked affiliate link has had: https://v4.datafeedr.com/topic/1270#comment-1875
I’m not exactly sure how to track clicks via Google Analytics when using this plugin….
If you have any other questions, please don’t hesitate to ask.
Thanks
EricForum: Plugins
In reply to: [WooCommerce] Adding custom content to Product Additional Information tabTo avoid modifying and adding template files in the future, here’s how to hook into the attributes listed under the Additional Information tab and add a new row to the table in that section. This example code adds a new row to the table for an ISBN label and number:
add_filter( 'woocommerce_get_product_attributes', 'mycode_display_extra_attribute', 20 ); function mycode_display_extra_attribute( $attributes ) { $attribute = array( 'name' => 'ISBN', 'value' => '9780811222631', 'is_visible' => '1', 'is_taxonomy' => '0', 'is_variation' => '0', 'position' => '10', ); $attributes['my_isbn'] = $attribute; return $attributes; }Hope that helps!
Eric
Forum: Reviews
In reply to: [Cloak Affiliate Links for WooCommerce] Easy and worksGreat! Thanks for the feedback!
You’re welcome! Good luck!
Forum: Reviews
In reply to: [Ads by datafeedr.com] No support?Sorry for the delay. Unfortunately WordPress doesn’t send us emails when a new support question comes in… :/
Yes, visitors using ad block software will most likely not be able to see your ads.
Thanks for the info! Unfortunately, I don’t have good news for you. Our plugin (WCCAL) doesn’t modify any other links other than the WooCommerce ‘buy’ link.
You will need a bit of custom development to accomplish what you want are going for. Our plugin isn’t the solution for any links that aren’t the WooCommerce buy links.
Sorry!
I think I understand the problem now. You have 2 buttons:
– one is the standard WooCommerce ‘buy’ button
– one is a custom button to display a different linkIs that correct?
If you remove the custom code from above and just use the WCCAL plugin, does it successfully rewrite your ‘buy’ URLs?
That’s strange. Are you sure the WooCommerce Cloak Affiliate Links plugin is still active?
I just did a simple test using this code:
/** * Get different URL from database for this $post_id. */ add_filter( 'wccal_filter_url', 'mycode_wccal_filter_url', 20, 2 ); function mycode_wccal_filter_url( $external_link, $post_id ) { $external_link = 'http://www.google.com'; return $external_link; }On hover I get this: http://mysite.com/redirect/3302/
On click I’m redirected to Google.