Forum Replies Created

Viewing 15 posts - 811 through 825 (of 1,956 total)
  • Author
    Posts
  • in reply to: Widget button not showing on iOS

    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

    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

    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

    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

    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

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

    Marking this as resolved.

    in reply to: Shortcoder stops working

    Hi Jesus,

    Thanks for using Shortcoder.

    As I understand, the shortcode “easy_media_download2” works but the shortcode [sc name="download"] is not working.

    Can you please share a screenshot of the shortcode edit page and the location where the shortcode is inserted ?

    Also your website is not opening up. Please do let me know further on this.

    Thanks,
    Aakash

    in reply to: Where the content of shortcode is kept?

    Cheers !

    in reply to: Price Attribtue

    Cool !

    If you can add it to the description then it would be automatically available. You can also enable “rich description” so the desciption along with the price text would be seen formatted.

    Thanks

    in reply to: Price Attribtue

    Hi,

    Any update on this please ?

    Thanks

    in reply to: Using Shortcoder for other users than administrator

    Hi Charudatta,

    Just a note that the plugin I suggested above is from a different developer.

    Regarding using JS. I do not recommended it. It is just a workaround which is not SEO friendly. The condition is checked on the browser side.

    An example shortcode content would be like below.

    
    <h1>
    
    <script>
    var data = 'hello';
    
    if( data == 'hello' ){
    	document.write('Data is hello');
    }else{
    	document.write('Data is something else');
    }
    
    </script>
    
    </h1>
    

    Thanks,
    Aakash

    in reply to: Change date language

    Hi Luis,

    If your General -> “site language” is Dutch, then you can try the change below.

    Plugin editor -> super-rss-reader/includes/feed.php

    Replace line 149

    $date = $item->get_date( 'j F Y' );

    with below lines

    $timestamp = $item->get_date( 'U' );
    $date = date_i18n('j F Y', $timestamp);

    This basically displays the date as per your website’s site langauge setting.

    Thanks,
    Aakash

    in reply to: Where the content of shortcode is kept?

    Hi,

    Shortcode management happens via “custom post type”. So all API w.r.t managing posts/pages will work here to.

    They are stored in “posts” table with post type as “shortcoder”

    Thanks,
    Aakash

    in reply to: Using Shortcoder for other users than administrator

    Hi Charudatta,

    Thanks for using Shortcoder.

    Yes, you can give permission to other role to use Shortcoder.

    FAQ

    Q: Can other users create/modify/use shortcodes ?
    A: Yes, other users can create/modify shortcodes when the user’s role has the capability to create/edit shortcoder admin page. Plugins like user role editor can be used to set the necessary capabilities on the shortcode admin page to make the users create/edit shortcodes. Please note that shortcodes created by any user can be used by any user in posts and pages.

    User Role Editor

    Thanks,
    Aakash

Viewing 15 posts - 811 through 825 (of 1,956 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