<action type="catalog/convert_adapter_product" method="load">
<var name="store"><![CDATA[0]]></var>
</action>
<action type="catalog/convert_parser_product" method="unparse">
<var name="store"><![CDATA[0]]></var>
<var name="url_field"></var>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| TRUNCATE TABLE `catalog_product_bundle_option`; | |
| TRUNCATE TABLE `catalog_product_bundle_option_value`; | |
| TRUNCATE TABLE `catalog_product_bundle_selection`; | |
| TRUNCATE TABLE `catalog_product_entity_datetime`; | |
| TRUNCATE TABLE `catalog_product_entity_decimal`; | |
| TRUNCATE TABLE `catalog_product_entity_gallery`; | |
| TRUNCATE TABLE `catalog_product_entity_int`; | |
| TRUNCATE TABLE `catalog_product_entity_media_gallery`; | |
| TRUNCATE TABLE `catalog_product_entity_media_gallery_value`; | |
| TRUNCATE TABLE `catalog_product_entity_text`; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * Debugging WordPress things. | |
| * | |
| * All of this belongs in your wp-config.php file. | |
| * | |
| * This will make sure that the code you release is, at a minimum, | |
| * relatively free of PHP notices and warnings. | |
| * | |
| * - WP_DEBUG: This turns on debugging mode. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** To use this just: | |
| 1. put in your api information at the top | |
| 2. store/retreive your API token in the specified locations | |
| 3.store your api calls | |
| Ex: $jet->uploadFile($feed_type, $path); | |
| $jet->processOrdersByStatus('ready'); | |
| $jet->apiPUT("/orders/".$JET_ORDER_ID."/acknowledge", $data); | |
| **/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| find . -type f -exec chmod 644 {} \; | |
| find . -type d -exec chmod 755 {} \; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| namespace App\Models\Concerns; | |
| use Illuminate\Database\Eloquent\Casts\Attribute; | |
| use Illuminate\Http\UploadedFile; | |
| use Illuminate\Support\Facades\Storage; | |
| use Illuminate\Support\Uri; | |
| trait HasPhoto |
OlderNewer