Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Contributor Pippin Williamson

    (@mordauk)

    Can you show me the exact code you’re using?

    Thread Starter mcfilms

    (@mcfilms)

    My sub-theme of twentytwelve has a function.php file that has the following in it:

    <?php
    function pw_edd_add_author_support($supports) {
    	$supports[] = 'yarpp_support';
    	return $supports;
    }
    add_filter('edd_download_supports', 'pw_edd_add_author_support');

    I also tried to replace the two placed “author_support” appears with “yarpp_support” and that did not work either.

    Thanks for having a look.

    Plugin Contributor Pippin Williamson

    (@mordauk)

    Try replacing yarpp_support with just yarpp.

    Thread Starter mcfilms

    (@mcfilms)

    I tried this:

    <?php
    function pw_edd_add_yarpp($supports) {
    	$supports[] = 'yarpp';
    	return $supports;
    }
    add_filter('edd_download_supports', 'pw_edd_add_yarpp');

    And there is no change.

    According to the thread at http://wordpress.org/support/topic/plugin-yet-another-related-posts-plugin-custom-post-type-support?replies=23 I should be able to do this, (since version 3.5). But it looks like I also need to set ‘yarpp_support’ => true

    I think the necessary php knowledge to re-wire YARPP to work with EDDs custom content types is a bit out of my reach.

    Plugin Contributor Pippin Williamson

    (@mordauk)

    Hmm, I’m not quite sure on this one. I’ll have to do some testing to figure out exactly what it needs, though it will be a few more days before I can test.

    Plugin Contributor Pippin Williamson

    (@mordauk)

    I’ve tried to make this work as well but haven’t succeeded. I’m sorry but you’ll have to contact Mitcho (the YARRP developer) to ask if he can shed some light on it.

    Thread Starter mcfilms

    (@mcfilms)

    Thank you for the follow-up.

    We ended up using YARRP for most of the site and Easy Digital Downloads – Related Downloads for the EDD store. Although it probably isn’t ideal to use two “related downloads” modules, at least the related downloads in the store lead to more product and not a blog post or a static page. So maybe it IS ideal to use two.

    If you’re curious you can see it on the live site by visiting the store link at: http://papergardenprojects.com/

    Thank you!

    Jerry

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘EDD Related Items using YARPP (Yet Another Related Posts Plugin)’ is closed to new replies.