Unable to Update Store Information from Setting Web Page

This topic contains 3 reply and 3 voices, and was last updated by Nayem 9 years, 2 months ago
Viewing 3 Posts - 1 through 3 (of 3 total)
Author Posts
January 4, 2015 at 9:00 am 33366
Nayem Hi, As the Topic indicates, I can't update and of the store information of a test store I have made. That includes not being able to change the "Store Name", phone number, or inputting and saving the social media information. As soon as I hit "update settings" at the bottom of the page I see a spinning icon like it's trying to update but it stays like that forever and doesn't even time out. I'm able to adjust the store name and store information from the wordpress back end but that's it. Looking for assistance on this is happening. Thanks! Kiyoshi
January 5, 2015 at 10:07 am 33387
Nayem Nayem

Hello Kiyoshi,

To fix this error please open wp-content/plugins/wedevs-dokan-plugin/classes/template-settings.php. In line number 99 you will see something like this 'address' => strp_tags( $_POST['setting_address'] ),. You have to write this line as 'address' => strip_tags( $_POST['setting_address'] ),. Please check and let me know.

Thank you 🙂

January 19, 2015 at 11:47 pm 34540
Ryan Ryan

This issue is still present in 1.4.

The problem is the same just a different missing character.

'address' => strp_tags( $_POST['setting_address'] ),
'address' => strip_tags( $_POST['setting_address'] ),

The code now reads:
'address' => stip_tags( $_POST['setting_address'] ),

and should be:
'address' => strip_tags( $_POST['setting_address'] ),

January 20, 2015 at 11:31 am 34568
Nayem Nayem

Hello Ryan,

I am really sorry for this again. Actually we released this update quickly for the pagination problem mainly. This will be updated soon. I have already notified about this our team.

Thank you 🙂

Viewing 3 Posts - 1 through 3 (of 3 total)