Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author micropat

    (@micropat)

    1. Answered in this topic.

    2. The floating share bar always shares the current URL by default. If you wanted to share one specific URL only for all of your share buttons, you could modify the share by using the following code in your AddToAny Settings > Additional JavaScript box:

    a2a_config.callbacks.push({
        share: function(share_data) {
            return {
                url: 'https://example.com/',
                title: 'My Website Title'
            };
        }
    });

    Thread Starter TheRevisionist

    (@therevisionist)

    Thank you!

    1. Could you walk me through how to make such a button; I can copy & paste stuff in the right place, but I’m not too familiar with Javascript.

    2. is not essential, but I was inspired by what Forbes does.
    ie. if you look at the left-hand side there is a social share bar with a chain-link icon: https://www.forbes.com/sites/thomasbrewster/2014/09/26/wordpress-vulnerability-database-security/#71485fff6381

    Thread Starter TheRevisionist

    (@therevisionist)

    Also, is there any reason why this Javascript doesn’t work for me?
    a2a_config.num_services = 10;
    You can see it on my website: https://therevisionist.org/

    Plugin Author micropat

    (@micropat)

    1. Copy & paste the following CSS code into your “Additional CSS” box in AddToAny Settings:

    .a2a_floating_style .a2a_svg {
        background-size: 48px;
        height: 48px;
        width: 48px;
    }

    Replace 48px thrice with your desired size.

    2. Ah, now i realize you mean a literal “link” service. That one is under consideration, thanks for your feedback.

    3. Yep, that’s a bug! Right now the number of services in the mini menu isn’t respected when there are “default” services (Facebook, etc.) being excluded as you’ve setup. I’ll see to it that this gets fixed within the next couple weeks.

    Thread Starter TheRevisionist

    (@therevisionist)

    Glad to have helped you find a bug! Thanks for the support!

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Change Floating Sidebar Size?’ is closed to new replies.