Site logo

Archived topic

Copyright in Beaver Builder

13 replies · Started by Mitchell on July 15, 2017

Viewing posts 1–14 of 14

Hello. Can someone please tell me how to add the copyright notice in Beaver Builder?

Thanks,

Polarisman

Thanks, but I am asking how to get the Copyright code to actually appear (not edit it) in the footer of a website using the Generatepress theme.

Polarisman

Man, I am simply asking how to do it. Can you mot give me an explanation w/o referencing something else?

If it's a shortcode then you can use the after footer content hook.

Well, is there a shortcode that your theme uses? Generatepress has a section for editing the copyright. I am asking, again, how to insert this into a page. I do not know how to be more clear.

I thought you wanted to insert something created from BB? Then is that in shortcode form?

If you are just using GP's copyright section then it should be there by default so no need to insert.

If it's not there can you provide a link to your site?

The copyright notice in GP isn't a shortcode, so you can't add it anywhere else other than the standard copyright area.

You would have to manually type out the copyright into your content/BB section.

Is there a way to display the copyright section in BB?

No, the GP copyright section only works in the GP copyright section.

In order to display a copyright section inside BB, you will have to manually type it in.

Well, let me suggest that you add the ability to add the copyright info via shortcode using BB.

It hasn't really been requested before now.

You can just create your own shortcode with your copyright information:

add_shortcode( 'copyright', 'tu_my_copyright_shortcode' );
function tu_my_copyright_shortcode() {
    return 'Copyright © 2017 My Company Name';
}

Adding PHP: https://docs.generatepress.com/article/adding-php/

Then just use this in your content: [copyright]

This archived topic is closed to new replies.