• Resolved jurasjo

    (@jurasjo)


    There is no possibility to change author. The course and lesson have that option during editing.

    I’m doing most of the work from my account but the author is different and I don’t want my avatar and name exposed.

    Second matter:
    How to remove featured image placeholder from membership tile? (the one on the course tile should stay)

Viewing 4 replies - 1 through 4 (of 4 total)
  • @jurasjo,

    Course author info is mapped to the author’s profile for courses, lessons, and memberships: https://lifterlms.com/docs/can-change-author-information-course/

    If you want to remove author info, you can use these actions: https://lifterlms.com/docs/can-remove-display-course-syllabus-author/#author

    lifterlms_template_loop_author is used for both course and membership tiles on the catalogs.

    You can get the membership featured image removed via something like this:

    
    add_action( 'wp', function() {
    
    	if ( is_post_type_archive( 'llms_membership' ) ) {
    		remove_action( 'lifterlms_before_loop_item_title', 'lifterlms_template_loop_thumbnail', 10 );
    	}
    
    }, 15 );
    

    Take care,

    Thread Starter jurasjo

    (@jurasjo)

    Thx but for particular membership the author can’t be changed on edit screen.

    If I’m adding course as me “Author1” a Can change it to “Autor2” and the “Author2” is visible as author of the course on the course page and the tile.

    This kind of action can’t be done if I’m working on membership page.

    @jurasjo,

    I hadn’t realized we don’t have post author enabled for memberships. Sorry about that oversight. Probably dates back a few years, I’ll fix in the future but if you don’t want to display it at all then simply remove the display as noted above and it shouldn’t matter whether or not you can access the post author metabox

    Is that not working for you?

    Thread Starter jurasjo

    (@jurasjo)

    THX. Code works. I will use it for now. Hope for fix in the future ??

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Author on the Membership tile’ is closed to new replies.