Bring Your Business to Life › Support › WordPress: Popular Widget Plugin 100K downloads
Forum Replies Created
- AuthorPosts
- Van HalenParticipant
Just to confirm this is a bug.
We have the same problem and have not found any solution yet, it seems the email header gets broken (faulty line breaks?) after “Content-type: text/html; charset=utf8” at line 412 in /_inc/cart.php
The rest of the code seems the be interpreted as the body of the email or ignored completely, same thing happens with the download and conformation email send to the customers.
Van HalenParticipantWe had te same problem, setting the ‘Sort direction’ to ‘Custom order’ solved it for us.
Galleries > Settings > Gallery > Sort direction
Van HalenParticipantThe problem is fixed, we’ve removed: sanitize_file_name() not sure if this will cause any new problems, but it works for the time being.
in /image-store/_inc/galleries.php:
$this->galpath = “/” . trim( sanitize_file_name( $_REQUEST[‘folderpath’] ), “/” );
to:
$this->galpath = “/” . trim( $_REQUEST[‘folderpath’] , “/” );
- AuthorPosts