fabiopwl37
Forum Replies Created
-
Forum: Plugins
In reply to: [Smart WooCommerce Search] Custom tax_query not working for search resultsThe result filter worked like a charm, thanks.
Forum: Fixing WordPress
In reply to: WordPress site URL domain naming with AWS Route 53Turns out changing the Site Address in Admin>settings>general to the correct address and refreshing my browser cache solved the issue. I still have the WP Rocket error, but the .htaccess file is properly configured so it’s working anyway.
Forum: Plugins
In reply to: [Smart WooCommerce Search] Short description instead of long description?Hey thanks!
Your answer pointed me toward the right direction. Here is the working code I am using now to insert the short description in place of the long description in the search results for anyone who comes across this needing the answer.
function insert_short_desc_in_search($text){ if(is_search()){ $text = the_excerpt(); } return $text; } add_filter('the_content', 'insert_short_desc_in_search', 9999, 1);
Hmmm very interesting. Well, the server log isn’t showing anything significant. I just tried deactivating all of my plugins except for yours and WooCommerce, but the same thing happened.
Here is a link to part of the plugin error log I put on google docs:
https://docs.google.com/document/d/1RlYm5I4tDdgM97ZCCIhx8czBNv1RQSMkrwCINsFk-QM/edit?usp=sharing
Maybe you guys can find something that’s escaping me. The only errors I am noticing are the ones for the images. I made a folder in my uploads folder and stored the images there. The file paths are directed to that folder in the csv correctly and it is pulling them. We had 15000 products and only 5000 images so the ones that are getting errors in the log are because the images simply don’t exist.
- This reply was modified 7 years, 6 months ago by fabiopwl37.
- This reply was modified 7 years, 6 months ago by fabiopwl37.
I am using v.1.3.8
here is the link:
https://docs.google.com/spreadsheets/d/19i65PJaI0hRTe3caT5X3hRm9tUtSWnKv7h-MVtMppmQ/edit?usp=sharing
The log has a few entries that look like this:
2017-08-28T21:04:02+00:00 DEBUG Finished processing products.
that occur after each interval of 10 products has been completely imported. Everytime the import has froze, it happened right after one of those logs.
There are no ‘out of memory’ indicators in the log either. The PHP memory is at 256 MB. Is this typically enough?
The entries on the CSV where the import freezes do not differ from any of the rest either.
- This reply was modified 7 years, 6 months ago by fabiopwl37.
- This reply was modified 7 years, 6 months ago by fabiopwl37.