Forum Replies Created

Viewing 15 posts - 1,306 through 1,320 (of 2,109 total)
  • Author
    Posts
  • in reply to: Updating shortcoder form database
    Aakash
    Keymaster

    Hi Rohit,

    Sorry for the late reply.

    I don’t think it will work as the the DB value is serialized and saved by PHP. Find and replace on it won’t work as the length of the value changes.

    The best option would be to write a PHP code and execute it once.
    You can try the script I wrote for now.

    1) Take a backup of the shortcoder data first.
    2) Paste the bwlow code in theme’s function.php file and refresh any wordpress page once.

    function replace_sc_data(){
        
        $scs = get_option( 'shortcoder_data' );
    
        foreach($scs as $sc_name => $sc_prop){
            $sc_content = $sc_prop['content'];
            $replaced = str_replace('TO SEARCH TEXT', 'TO REPLACE TEXT', $sc_content);
            $scs[$sc_name]['content'] = $replaced;
        }
    
    }
    add_action('init', 'replace_sc_data');

    3) Delete the code later and save the file.

    Thanks,
    Aakash

    in reply to: Warning: array_key_exists
    Aakash
    Keymaster

    Sorry for the late reply.

    On which page you saw this error ?

    in reply to: Shortcodes not working after update
    Aakash
    Keymaster

    @huangkevin,

    The issue which you mentioned is fixed in v5.0.4.
    I checked your site and now things are back to normal.
    Please see screenshot below.

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

    Thanks,
    Aakash

    in reply to: Shortcodes not working after update
    Aakash
    Keymaster

    @huangkevin,

    hmm.. let me check quickly !

    in reply to: Shortcodes not working after update
    Aakash
    Keymaster

    @huangkevin,

    I was debugging the issue and site went down.
    Could you please rename the wp-content/plugins/shortcoder plugin folder ASAP ?

    in reply to: Shortcodes not working after update
    Aakash
    Keymaster

    Everyone,

    Please try v5.0.3 and confirm if it fixes most of the issues.

    If any issue still exists, please do let me know and send me a temporary administrator username and password to http://www.aakashweb.com/contact for me to debug this issue further.

    Sorry for the inconvenience !

    Thanks,
    Aakash

    in reply to: Shortcodes not working after update
    Aakash
    Keymaster

    @jaymckinlay could you please share some screenshots to help me understand the issue ?

    I’ll let you know furhter on this quickly once you give details.

    in reply to: Shortcodes not working after update
    Aakash
    Keymaster

    @Johannes, Thanks for confirming !

    in reply to: Mise à jour crée un bug php ligne 56
    Aakash
    Keymaster

    Hi,

    Update 5.0.2 fixes this issue. Please update to it.
    Please confirm if it solves your issue.
    Sorry for inconvenience !

    Thanks,
    Aakash

    in reply to: Shortcodes not working after update
    Aakash
    Keymaster

    Hi,

    Update 5.0.2 fixes this issue. Please update to it.
    Please confirm if it solves your issue.
    Sorry for inconvenience !

    Thanks,
    Aakash

    in reply to: Shortcodes not working after update
    Aakash
    Keymaster

    Hi,

    Please upgrade to v5.0.1 and issue should be fixed.
    Sorry for inconvenience !

    Thanks,
    Aakash

    in reply to: PHP errors on 5.0
    Aakash
    Keymaster

    Hi,

    Please upgrade to v5.0.1 and issue should be fixed.
    Sorry for inconvenience !

    Thanks,
    Aakash

    in reply to: PHP errors on 5.0
    Aakash
    Keymaster

    Found the bug. Issuing fix ASAP.

    in reply to: PHP errors on 5.0
    Aakash
    Keymaster

    Checking…

    in reply to: Shortcodes not working after update
    Aakash
    Keymaster

    One more thing.. I believe you are seeing HTML Tags not rendered properly right ?

    If that is the case, please delete the plugin and install the plugin again new. It should fix the issue.

    Please do confirm if it works !

Viewing 15 posts - 1,306 through 1,320 (of 2,109 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