Posted - 02/19/2018 : 20:41:58
Hello, hope you can help. My customers are unable to download the digital files. When they click on the download link (latedownload), they get this error:
"Error thrown Call to undefined function accesspress_parallax_breadcrumbs()"
My old website was using accesspress_parallax theme. I am now using ECT WP ICE. I have re-installed php3digidownloads (6.8) and it uploaded successfully.
This is what I have in includes: //Digital Downloads $GLOBALS['orderstatusemail']="Hello %ordername% %nl% Your order id %orderid% from %orderdate% has been updated from %oldstatus% to %newstatus% on %date% and the additional comments are %statusinfo%"; $GLOBALS['orderstatussubject'] = "Your KennyKreations Order has been updated"; $GLOBALS['alwaysemailstatus']=TRUE; $GLOBALS['digidownloads']=TRUE; $GLOBALS['digidownloadmethod']="filesystem"; $GLOBALS['digidownloadpattern']="/home/kennykre/downloads/%pid%.zip"; $GLOBALS['digidownloadsecret']="lk192merllouiniswamau49grk83ckt"; $GLOBALS['digidownloadwarn']=TRUE; $GLOBALS['digidownloademail']="Your products can be downloaded for the next 10 days by clicking on the <a href='http://www.kennykreations.com/latedownload.php?ordid=%orderid%&pass=%password%'>download link</a>. Thank you for your order. We hope you enjoy stitching our designs. Please visit our website again soon.%nl% %nl%"; $GLOBALS['digidownloaddays']=10;
This is what I have in htaccess: <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^category/([^/.]*)/?$ /categories.php?cat=$1 [QSA,nc,L,B] RewriteRule ^product/([^/.]*)/?$ /products.php?cat=$1 [QSA,nc,L,B] RewriteCond %{REQUEST_URI} !/sample-post/ RewriteRule ^([^/.]+)$ /proddetail.php?prod=$1 [QSA,nc,L,B] </IfModule>
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule>
# END WordPress
Thank you, Lyn
|