Forum Replies Created
-
AuthorPosts
-
Aakash
KeymasterHi Marc,
Thanks for the suggestion.
I’ll add Etsy follow button in the next release.
Please expect it by tomorrow.
January 11, 2020 at 5:07 pm in reply to: Entire WordPress blog inaccessible — error says Shortcoder is the source #7189Aakash
KeymasterOk, so everything works now ?
January 11, 2020 at 4:40 pm in reply to: Entire WordPress blog inaccessible — error says Shortcoder is the source #7182Aakash
KeymasterBut this code path is hit only when you save the post. I wonder why even login is not working for you.
January 11, 2020 at 4:38 pm in reply to: Entire WordPress blog inaccessible — error says Shortcoder is the source #7180Aakash
KeymasterYou can use the file manager provided by your web host (control panel) or use FTP to access the file.
January 11, 2020 at 3:06 pm in reply to: Entire WordPress blog inaccessible — error says Shortcoder is the source #7177Aakash
KeymasterHi Robio,
Looks like you are using an older version of PHP.
Anyways, to get going please edit the following line in shortcoder/admin/edit.php line 144
Replace
trim( $post[ 'post_title' ] )
with$post[ 'post_title' ]
I’ll issue a fix shortly.
Aakash
KeymasterThis issue has been fixed from Facebook side and things are normal !
Aakash
KeymasterHi K4,
v5+ is rewritten from scratch using WordPress’s custom post type feature.
There was a limitation in v4.x on how big shortcode content can be. To address that the plugin has to be rewritten.
The
get_site_option
won’t work with v5 as those APIs are not used anymore.For now you can move back to v4.6 and use your changes. https://wordpress.org/plugins/shortcoder/advanced/
I’ll let you know if multi-site shortcode is possible in v5.
Thanks,
AakashJanuary 9, 2020 at 10:57 pm in reply to: Create a file form excel with 3000 shortcodes to import #7171Aakash
KeymasterHi @josegp,
I’ve informed you on the same via email.
Anyways just replying here for all the users.
With v5.0 and above it is possible to import the shortcodes from excel sheet.
You may have to use another the plugin https://wordpress.org/plugins/wp-all-import/
1) In the plugin’s wizard select “shortcoder” as the post type
2) Select the column which has the name in post title and the column which has the code as post content and try importing.Thanks,
AakashJanuary 9, 2020 at 10:48 pm in reply to: After the latest upgrade, the JS script tags have been removed #7170Aakash
KeymasterHi @mihalcea_vla,
Sorry for the delay. Yes it was an issue.
v5.0.4 addresses this issue.
Thanks,
AakashAakash
KeymasterHi 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,
AakashAakash
KeymasterSorry for the late reply.
On which page you saw this error ?
Aakash
KeymasterThe 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,
AakashAakash
Keymasterhmm.. let me check quickly !
Aakash
KeymasterI was debugging the issue and site went down.
Could you please rename the wp-content/plugins/shortcoder plugin folder ASAP ?Aakash
KeymasterEveryone,
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 -
AuthorPosts