• Resolved room05

    (@room05)


    I want to add a few extra buttons to the Big Title top section.. at the moment it has the default 2 buttons (green/red). Is there an easy way to do this? thanks.

Viewing 15 replies - 1 through 15 (of 21 total)
  • MariusG

    (@marius_codeinwp)

    Hello,

    Unfortunately that is not currently possible and adding them isn’t exactly what I’d call easy.
    We’ll probably add this feature in our future updates as this has been requested several times, but right now it is not available.

    Kind regards,
    Marius

    You can add another feature request for this. We would like to use more of the big title buttons if possible.

    Do you have any alternatives in mind for us non-coders to use instead perhaps?

    MariusG

    (@marius_codeinwp)

    Considering you wouldn’t need buttons which you’d want to edit change very often, I would simply copy-paste the HTML code of the current Big Title section buttons (from the page’s source or via Inspect Element) and I would add it in front-page.php

    Adding static HTML code would be much easier than adding new buttons that can be customizer from the customizer.

    All you’d have to do is replace the links and anchors of the buttons, the rest would be the same.

    Kind regards,
    Marius

    V B

    (@vaishalibansal)

    Hi

    i also want to add more buttons in big title section.

    <div class="buttons">
    
     <a href="#">CANDIDATE</a>
      <a href="#">RECRUITER</a>
    
    </div>

    this is the code i fetched using developer tool. Now i want to add third button ‘search ‘

    <a href="#">SEARCH</a>

    where to add this line in front page?

    thanks

    Hi,

    You need to add in the file big_title.php from the sections folder, after this:

    if ( !empty($zerif_bigtitle_greenbutton_label) && !empty($zerif_bigtitle_greenbutton_url) ):
      echo '<a href="'.$zerif_bigtitle_greenbutton_url.'" class="btn btn-primary custom-button green-btn">'.__($zerif_bigtitle_greenbutton_label,'zerif-lite').'</a>';
    endif;

    this:

    ?><a href="#">SEARCH</a><?php

    Let me know how it works,
    Rodica

    Update:

    add this:

    ?><a href="#" class="btn btn-primary custom-button green-btn">SEARCH</a><?php
    V B

    (@vaishalibansal)

    Thank you so much. Its working ??

    Can you please tell me how can i add one more top menu bar for login and register. Just like wordpress is having in black color.

    Thanks
    Vaishali

    Hi,

    I am glad you managed to add the new button. Regarding the button, that is not that easy, and we do not offer this kind of customizations. I recommend you take a look at codeable.io.

    Regards,
    Rodica

    I have done this. This is great – BUT the buttons don’t line up on the same line and I can’t control the color of this new button independently. Any hints?

    If you look at https://websitetest.keystone-it.com/wp2 you will see what I’m talking about.

    MariusG

    (@marius_codeinwp)

    Hello,

    Your website says “Coming soon”, I cannot access it.

    Hi there ??

    This thread was really helpful! I could add an extra button by copying the updated code in the editor.

    I want the button to lead to a page when clicked on.. how can I achieve this?

    Thanks a ton!

    My site – https://tanvimallyaseldercare.in/

    I want the ‘Parkinson’s Care’ button to lead to a specific page, as the other two buttons do.

    MariusG

    (@marius_codeinwp)

    Hello,

    I believe you already managed to do it, that button now links to a specific page.
    Let me know if you have any other questions.

    Best regards,
    Marius

    Hi Marius,

    I have created also additional button as it described above. Please advice how to link this button to specific URL

    Regards,
    Andrei

    Michael

    (@bf130794-ovh)

    It really helped me create a new button…. but like andr244 I don’t know how to link the button to an URL… please let us know ??

    Hi Michael,

    You should to go to big title.php and found the following part of the code. Then just insert your URL according to my example.

Viewing 15 replies - 1 through 15 (of 21 total)
  • The topic ‘adding another button to the Big Title section’ is closed to new replies.