Forum Replies Created

Viewing 15 posts - 886 through 900 (of 2,039 total)
  • Author
    Posts
  • Aakash
    Keymaster

    Hi,

    Can you please show a screenshot of the follow icons settings page ?

    As I can see the follow icons are not inserted into the page.

    This can happen when the follow icons are

    1) not active
    2) you have set “location rules” to display the icons only on specific pages.

    Please confirm the above.

    Thanks

    in reply to: Shortcoder stops working
    Aakash
    Keymaster

    Hi Jesus,

    Sorry for the inconvienence.

    I just noticed that your reply was caught as spam for some reason.

    I have approved it now.

    Looking at the shortcode I see that the “easy_media_download2” shortcode has a typo/syntax error.
    The border color attribute is missing a “double colon”

    Thanks,
    Aakash

    in reply to: HTML code surrounded by paragraph
    Aakash
    Keymaster

    Marking this as resolved.

    in reply to: Shortcoder stops working
    Aakash
    Keymaster

    Hi,

    Can you please udpate on this ?

    Thanks,
    Aakash

    in reply to: Widget button not showing on iOS
    Aakash
    Keymaster

    Hi ui-dev,

    Did the suggestion help ?

    Thanks,
    Aakash

    in reply to: Using Shortcoder for other users than administrator
    Aakash
    Keymaster

    Hi,

    This seems like a kind of personalization request.
    Shortcoder uses “custom post types” feature of WordPress. So you can use any custom post type plugin to modify or alter the basic properties.

    In your case you could use this plugin to change the interface labels.

    Custom Post Type Editor

    Thanks

    in reply to: Empty message still shows the banner
    Aakash
    Keymaster

    Hi @robov99,

    Thanks for reporting. I’ve added this to my todo list to handle this scenario.

    This is quite rare condition where someone would every want to display an announcement empty.
    Also in your case the message is coming out of a shortcode in random.

    I’ll sure handle this in the next version.

    For now if possible, you could do a simple code chagne like below.
    This may or may not work as I’m yet to investigate the complete output on your side.
    Please deactivate the plugin before making any code change.

    In announcer/includes/display.php replace line 115

    $html .= do_shortcode( wpautop( $content ) );

    with this

    $final_content = do_shortcode( wpautop( $content ) );
    $final_content = trim( $final_content );
    if( empty( $final_content ) ){
        return '';
    }
    $html .= $final_content;
    

    Thanks,
    Aakash

    in reply to: Bulk Actions in Widget List
    Aakash
    Keymaster

    Hi Alex,

    I’m marking this issue as resolved !

    Thanks,
    Aakash

    in reply to: Widget button not showing on iOS
    Aakash
    Keymaster

    Hi uv-dev,

    It seems like you have made some personalization which is causing some issue with older browsers.

    Please disable overflow-y: scroll which is set on smaller screens.
    I disabled that and the button is displayed.

    The plugin does work fine out of the box without any personalizations.

    Thanks,
    Aakash

    in reply to: Widget button not showing on iOS
    Aakash
    Keymaster

    Please hold on.. looks like the button is hidden.
    Let me see what I can find.

    in reply to: Widget button not showing on iOS
    Aakash
    Keymaster

    Hi,

    It seems fine in the in browser emulator I tested.
    Please see screenshot below.

    https://i.snipboard.io/tdp8f4.jpg

    Can you please share details on which emulator you are using ?

    Also I do not own an iphone but I tested on my personal ipad and things are fine.

    If you own an iphone please open the website and have a direct check.
    Emulators can sometimes behave weird.

    Thanks,
    Aakash

    in reply to: Widget button not showing on iOS
    Aakash
    Keymaster

    Hi UV-dev,

    I opened the website in my ipad and saw preview on chrome emulator for iphone x.
    There was no issue. The UFW button was shown as expected.

    Please see screenshot below.

    https://i.snipboard.io/tdp8f4.jpg

    It would be better to see the page directly on an ios browser.

    Thanks,
    Aakash

    in reply to: PHP Error
    Aakash
    Keymaster

    Hi Yves,

    This is not expected unless some other plugin interfere with the shortcode.

    Shortcodes will ideally receive an array of parameters. In you case it is string.

    I’ll debug further on this and fix the issue in the next version.

    For now please add below line in shortcoder.php at line number 50

    $atts = (array) $atts;

    So the result is like below:

    49	    public static function execute_shortcode( $atts, $enclosed_content = null ){
    50	        $atts = (array) $atts;
    51	        $shortcodes = self::get_shortcodes();

    Thanks,
    Aakash

    in reply to: Open url in new tab
    Aakash
    Keymaster

    Marking this as resolved. Please reply back for any further queries on the same.

    Aakash
    Keymaster

    Marking this as resolved.

Viewing 15 posts - 886 through 900 (of 2,039 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