Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #856337

    charliesa
    Participant

    I need to add a donate button to Donate 9. I’ll learn someday, but for now…

    Please see attachment

    #856381

    Christian
    Moderator

    Hey there,

    Regretfully, at this time I am not entirely certain what it is you would like to accomplish based on the information given in your post. If you wouldn’t mind providing us with a little more clarification on what it is you’re wanting to do (a link to a similar example site would be very helpful, or perhaps some screenshots), we’ll be happy to provide you with a response once we have a better understanding of the situation.

    #856412

    charliesa
    Participant

    I did provide a screen shot. The link is beta.sjhp.org

    What I want is to put a simple paypal link in the top bar of renew 9.

    The code you guys gave me for integrity is this:

    // Add Donation Button
    //============================================================//

    add_filter(‘wp_nav_menu_items’,’add_donate_button’, 99999, 2);

    function add_donate_button( $items, $args ) {

    if( $args->theme_location == ‘primary’ ){
    $items .= ‘<li class=”menu-item menu-item-search”>’;
    $items .= ‘Donate Button‘;
    $items .= ‘‘;
    }

    return $items;
    }

    It worked perfectly. I hope this helps

    #856417

    charliesa
    Participant
    #856514

    Zeshan
    Member

    Hi Charliesa,

    Do you want to add a donate button in the topbar of your site like this: http://prntscr.com/alh4gf? If so, first add following code under Header > Topbar > Topbar Content in the Customizer:

    <a href="#" class="x-btn x-btn-mini x-btn-transparent donate-btn">Donate</a>

    Then add following CSS code under Custom > CSS in the Customizer:

    .x-topbar .donate-btn {
      margin-left: 10px;
      border-color: #fff;
      display: inline-block;
      margin-bottom: 6px;
    }
    

    Thank you!

    #856540

    charliesa
    Participant
    This reply has been marked as private.
    #856545

    charliesa
    Participant

    For site http://beta.sjhp.org

    Sorry

    #856573

    charliesa
    Participant

    Man, you guys dined lead me be the nose. Now O got what you meant. I habit. Thanks again!

    #856582

    charliesa
    Participant

    Man, you guys didn’t lead me by the nose. I got it now. Thanks again. (please ignore the last comment..I was tri-tasking, and I’m not good at).

    #856592

    charliesa
    Participant

    Got it! it works perfectly…thanks. And it was easy too :).

    #856673

    Friech
    Moderator

    We’re delighted to assist you with this.

    Cheers!