Posted - 03/13/2020 : 11:57:53
When I created the site originally I put the entire "store" section (vsadmin, cart.php, categories.php, etc) of the website into a separate sub folder called "store". How can I now connect that with the WordPress site. My first thought is it would be one of two ways:
Add /store/ to all includes - for instance: <?php include "vsadmin/inc/inccart.php";?> would become <?php include "/store/vsadmin/inc/inccart.php";?>
The problem I see with that, is that it might be easy to miss something.
The other option would be to simply move all the files that are currently in the "store" folder to the main folder where the WP files reside.
Is there any problem with moving those files?
|