Forum Replies Created

Viewing 15 posts - 1,186 through 1,200 (of 2,068 total)
  • Author
    Posts
  • in reply to: Followbar can’t Open Editor
    Aakash
    Keymaster

    Hi Claudio84,

    Can you please create a temporary administrator username and password your website address to me ?

    Contact

    I’ll fix the issue for you.
    I’ll also identify what caused it.

    Thanks,
    Aakash

    in reply to: Problem with facebook button
    Aakash
    Keymaster

    Cheers !

    in reply to: Problem with facebook button
    Aakash
    Keymaster

    Hi Janine,

    Can you please go to WP Socializer -> Settings –> Font icon to “FontAwesome 5” and see if it works ?

    Thanks,
    Aakash

    in reply to: Upgraded to 5.1, can’t get to settings
    Aakash
    Keymaster

    Hi Robert,

    “all shortcodes, create shortcode, tags” are the actual settings pages.

    You can manage shortcodes under “all shortcodes”

    Thanks,
    Aakash

    in reply to: OWN OPEN/CLOSE BUTTON
    Aakash
    Keymaster

    Cheers !

    in reply to: OWN OPEN/CLOSE BUTTON
    Aakash
    Keymaster

    Good that it works.

    But isn’t this the same script as before ?

    in reply to: OWN OPEN/CLOSE BUTTON
    Aakash
    Keymaster

    Hi Leon,

    Can you please share your website URL and the page where the button is present ?

    Thanks,
    Aakash

    in reply to: New Release Problems
    Aakash
    Keymaster

    I would like to help.

    Can you please share any screenshot ? That would be much easy for me to interpret since the sharebar is disabled right now on your setup.

    Thanks,
    Aakash

    in reply to: New Release Problems
    Aakash
    Keymaster

    Please paste the CSS I shared earlier.

    Paste it under wp socializer – settings – additional css

    in reply to: New Release Problems
    Aakash
    Keymaster

    Hi Peter,

    It is 20px not 20%.

    Please try 20px from the left side.

    Thanks,
    Aakash

    in reply to: New Release Problems
    Aakash
    Keymaster

    Hi Peter,

    1. hmm.. that should not happen. I’ll check it out.

    2. Hmm.. like lining up both the follow bar and the sharebar will confuse the user and not an ideal use case. The bars will overlap each other and users might not know what icon does what. So the ideal configuration in all websites is on the left side, they keep the “sharebar” which shares the page. On the right they keep the “follow bar” to follow the user/org on social media sites.

    Anyway in case, you need to line up both the bars, you have to keep floating sharebar with offset 20px. This is overlap the bars. You have to use custom CSS to align them in the line.

    5. Not many people have requested this for “sharebar”. Usually they are on the middle of the page near the edge. Anyways, I’ll consider this request and see the possibilities.

    Thanks,
    Aakash

    in reply to: New Release Problems
    Aakash
    Keymaster

    Hi Peter,

    #1 – You should see a “trash” icon next to the “cog”. Please see screenshot below.

    wp socializer delete icon

    #2 – You have set offset as 90% from the left of the page. Can you please set it to something like 10px ? If you want the floating sharebar to the right side, select right side.

    #3 & #4 – On small/mobile screens, the floating sharebar goes to the top corner and hides itself. Users can select the bar to show again. You can set below CSS to show it in the middle in small screen like in the screenshot.

    @media only screen and (max-width: 800px) {
        .wpsr-sb-vl .wpsr-sb-inner{
            transform: translateY(50%) !important;
            margin-top: -50% !important;
            padding: 0 10px !important;
        }
    }

    Thanks,
    Aakash

    in reply to: New Release Problems
    Aakash
    Keymaster

    Hi Peter,

    Thanks for your time on the suggestions.

    I’ll get back to you on this in a day.

    Thanks,
    Aakash

    in reply to: OWN OPEN/CLOSE BUTTON
    Aakash
    Keymaster

    Hi Leon,

    If you share me the website URL and the button which should open the widget box, I can share the exact script.

    If the buttons are dynamically generated, then you may need to use “on” like this.

    <script>
    jQuery(document).ready(function() {
      jQuery(document).on("click", ".btn_reservieren", function(){
           jQuery("#ufw_1").trigger("click");
       });
    });
    </script>

    Please note that jQuery("#ufw_1").trigger("click"); is the main code to launch the widget box and it will work. The problem right now on your side is that the element is not able to call it.

    Please try above script. If it didn’t work, share me the website URL. I’ll help you.

    Thanks,
    Aakash

    in reply to: OWN OPEN/CLOSE BUTTON
    Aakash
    Keymaster

    Hi Leonyl,

    Thanks for buying Ultimate floating widgets. Please do the following.

    If you want to hide the button completely, please set below CSS in the ‘Widget tempalte settings” –> additional css. Where 1 being the ID of the widget box.

    #ufw_1 .ufw_btn_wrap {
        display: none;
    }

    To show the widget box, you can use below jQuery call.

    <script>
    jQuery('.my_custom_button').click(function(){
         jQuery('#ufw_1 .ufw_btn').trigger('click');
    });
    </script>

    Hope it helps.

    Regarding the activation, can you please share the error you are getting ?

    Thanks,
    Aakash

Viewing 15 posts - 1,186 through 1,200 (of 2,068 total)

Subscribe to our Newsletter

Get updates on the WordPress plugins, tips and tricks to enhance your WordPress experience. No spam. View newsletter

By using this website, you agree to our Terms