• Resolved troscar

    (@troscar)


    Hi, when the plugin appeared in the bottom of the note when we create it, there was an option to add more affiliate buttons, right now the plugin is in the tools bar and allow 2 affiliate buttons only, i need at least 3

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Contributor contactashish13

    (@rozroz)

    @troscar you can use this example snippet of code to accomplish this.

    
    add_filter( 'wppr_links', function($links, $review_id){
    	if ( ! is_admin() ) {
    		$links['sometext1'] = 'somedomain';
    		$links['sometext2'] = 'somedomain';
    	}
    	return $links;
    }, 10, 2 );
    
    Thread Starter troscar

    (@troscar)

    @rozroz thanks for the code i tested and i see it anable more buttons, but i need to addd them manually, not in all the post because in some cases we use one or two

    Is it possible to add more links into one button? So a dropdown of several links are shown when you click on it?

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘More Affiliate Buttons’ is closed to new replies.