Forum Replies Created

Viewing 15 posts - 1,261 through 1,275 (of 2,043 total)
  • Author
    Posts
  • in reply to: full screen popup
    Aakash
    Keymaster

    Thank you !

    in reply to: full screen popup
    Aakash
    Keymaster

    Hi vvalladolid,

    Yes it is possible. There is no out of the box option to do this right now.

    But you can paste the below CSS under the widget box settings –> Widget template settings –> Additional CSS

    #ufw_15 .ufw_wb{
        position: fixed;
        right: 0px;
        left: 0px;
        margin: auto;
        bottom: 0px;
        top: 0px;
        height: 100%;
        width: 100%;
        z-index: -1;
    }

    Where 15 is the ID of the widget box. You can find it in the page where all the widget boxes are listed.

    Thanks,
    Aakash

    Aakash
    Keymaster

    Hi Shunya,

    The rule is use the characters a-z, A-Z, _ and -.

    This change was made long time before. It looks like you are upgrading from an very old version.

    Currently there is no feature in shortcoder to scan all the posts and identify the usage.
    It would be beyond the scope of the plugin.

    You have to delete this shortcode and create a new one with the new content.

    You can search for the shortcode by old name in posts page using the search box. Then you have to manually search, replace and update the post with the new name. I understand it is a painful task, but this change is needed to bring in a standard and set some rules in the allowed characters.

    Hope you understand.

    Thanks,
    Aakash

    in reply to: Connect follow button to Messenger
    Aakash
    Keymaster

    Hi,

    The URL should be in the format https://m.me/<username>. Please refer this page https://developers.facebook.com/docs/messenger-platform/discovery/m-me-links/

    Thanks,
    Aakash

    in reply to: Customizing the floating sharebar
    Aakash
    Keymaster

    Ok, I guess you are using the “horizontal” sharebar. Horizontal sharebar can be moved only up/down.

    Can you please switch to “vertical” sharebar and try again ?

    (Note: With vertical sharebar, you might have to add a social icon with vertical icons)

    Thanks,
    Aakash

    in reply to: LinkedIn share button on mobile sharebar
    Aakash
    Keymaster

    Closing this thread for now.

    in reply to: Suggestion for new social follow button
    Aakash
    Keymaster

    Closing this thread assuming issue is resolved.

    in reply to: i don’t want the close feature
    Aakash
    Keymaster

    Closing this thread assuming issue is resolved.

    in reply to: Customizing the floating sharebar
    Aakash
    Keymaster

    Hi Riley,

    For #1 please paste below code in any of your theme’s JS file.

    jQuery(document).ready(function() {
    	jQuery(window).scroll(function() {
        	if ( jQuery(window).scrollTop() > (jQuery(document).height() - 300)) {
            	jQuery('.wpsr-sharebar').hide();
            }
            else {
            	jQuery('.wpsr-sharebar').show();
            }
        });
    });

    For #2 in floating sharebar settings page, please click “Adjust position visually” button and use the visual editor to position the sharebar to the desired location.

    Thanks,
    Aakash

    in reply to: i don’t want the close feature
    Aakash
    Keymaster

    Please paste this CSS in WP Socializer -> Settings –> Additional CSS

    .wpsr-fb-close {
        display: none !important;
    }

    Thanks,
    Aakash

    in reply to: Shortcode to get distant page
    Aakash
    Keymaster

    Hi Vincent,

    I think you can use the “iframe” tag for this.

    You can embed a webpage using this tag. Please refer this link, https://www.w3schools.com/tags/tag_iframe.asp

    So to display the other website’s page, you should use something like below as shortcode content.

    <iframe src="https://generator.distantdomain.tld/dynamic-page?id=5464a4654c4654"></iframe>

    Thanks,
    Aakash

    in reply to: Changing Title and Date Font Style
    Aakash
    Keymaster

    Hi Tim,

    To make the title bold, you can paste this CSS somewhere in your theme’s settings page.

    .srr-title{ font-weight: bold; }

    to make the the date bold, you can use this.

    .srr-date{ font-weight: bold; }

    Thanks,
    Aakash

    in reply to: Couple of Quick Questions
    Aakash
    Keymaster

    Hi !

    Sorry for the delay.

    #1) Regarding mass producing shortcode, currently there is no way.
    You can write PHP code to mass produce it. I can point you to the wordpress API and shortcoder API to insert a new shortcode if you really need it.

    There was a request to import shortcodes from CSV.
    Currently I’m rewriting the plugin from scratch, I’ll implement this feature and you can get this import from different format.

    #2) There is no way to change sc name as that is the trigger word for the shortcode. With sc name being same you can change the name="shortcode name" as per your need to keep track of it.

    Thanks,
    Aakash

    in reply to: Apply shortcode to a specific category
    Aakash
    Keymaster

    Hi Lex,

    Shortcode is inserted manually in a post. You could simply not use a shortcode in a post of a specific category to get what you wanted.

    Please let me know if I didn’t get your use case.

    Thanks,
    Aakahs

    in reply to: LinkedIn share button on mobile sharebar
    Aakash
    Keymaster

    Hi Moreno,

    This was a request from many people. It is currently not available. I’m planning to implement this for all social icons.

    I’ll let you know once this feature is published by next month.

    Thanks,
    Aakash

Viewing 15 posts - 1,261 through 1,275 (of 2,043 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