Cezar Ayran
Forum Replies Created
-
Forum: Plugins
In reply to: [Advanced Media Offloader] Bulk Offload stucked@kovinet ohh man that’s bad… wondering if you have to increase anything on the php.ini like PHP memory limit etc…
Forum: Plugins
In reply to: [Advanced Media Offloader] Bulk Offload stucked@kovinet you have to delete the row, I tried changing it to 0 but no success. Thanks for the domain advice, it worked!!!
- This reply was modified 1 month ago by Cezar Ayran.
@ianchamba I found some data in the wp_options table like
advmo_bulk_offload_media_process_status
advmo_bulk_offload_cancelledBoth with value 1, I just changed them to 0 but still same issue lol
Forum: Plugins
In reply to: [Advanced Media Offloader] Bulk Offload stuckedIt seems to be an issue with advmo_bulk_offload_cancelled where in the database is this option?
I am running into the same issue, it failed when I try to bull offload then I clicked on Cancel, nothing got sent to S3… it is being over 24hrs and it is still trying to cancel it…
I checked the console and this is what I got:
{“success”:true,”data”:{“processed”:0,”total”:50,”status”:”cancelled”,”errors”:0}}
But the plugin is still “Canceling the bulk offload process…”
Forum: Plugins
In reply to: [Advanced Media Offloader] Bulk Offload stuckeddefine(‘ADVMO_AWS_KEY’, ”);
define(‘ADVMO_AWS_SECRET’, ”);
define(‘ADVMO_AWS_BUCKET’, ‘public’);
define(‘ADVMO_AWS_REGION’, ‘us-east-1’);
define(‘ADVMO_AWS_DOMAIN’, ‘s3.amazon.com’);How to add https:// ?? Thumbnails are being displayed without http in the back-end.
URL looks like public.s3.us-east-1.amazonaws.com
- This reply was modified 1 month ago by Cezar Ayran.
@masoudin the var ADVMO_AWS_DOMAIN can’t have https:// or https:// because when the URL is built the region is added before that… can you please be more specific on HOW to setup the URL so the thumbnail is displayed properly? What a customer support…
define(‘ADVMO_AWS_KEY’, ”);
define(‘ADVMO_AWS_SECRET’, ”);
define(‘ADVMO_AWS_BUCKET’, ‘u-public’);
define(‘ADVMO_AWS_REGION’, ‘us-east’);
define(‘ADVMO_AWS_DOMAIN’, ‘s3.amazon.com’);Where am I supposed to add the https???? Final URL is: u-public.s3.us-east.amazonaws.com
Forum: Plugins
In reply to: [Advanced Media Offloader] Bulk Offload stuckedI also noticed the media gallery is not displaying the file already sent to S3… I checked the source code and “could not load the image” even though the URL is correct but it doesn’t have https:// or https:// before it… the file was offloaded to S3 but the back-end doesn’t display the thumbnail… how to fix that too?
Forum: Plugins
In reply to: [Social Feed Gallery] Account being disconnectedJust found this https://quadlayers.com/documentation/instagram-feed-gallery/api/tokens/
- Personal tokens that have not been used in 60 days expire upon non-renewal.
How is it being determined if it is being used or not? When loaded on the website?
- In the case of personal tokens, our plugin will try to perform an automatic renewal ten days before the expiration date.
I do see the PERSONAL type in the connection but none of the websites are being renewed automatically and it keeps getting disconnected… Please clarify it.
Forum: Plugins
In reply to: [Store Hours for WooCommerce] Store closed but order went throughJust checked all of this. No cache enabled, Actions tab matches your suggestions.
We are using Stripe and the options “Express checkouts” which enables Apple Pay and Google Pay are not checked so they are not being used. Any other suggestion?
Forum: Developing with WordPress
In reply to: add_post_meta not saving line breakGot it, tk u!
Forum: Plugins
In reply to: [Google Analytics for WooCommerce] Wrong purchase DATA@simplysaru what’s the plugin name on woo.com? Can’t find “Google Analytics for WooCommerce”
Forum: Plugins
In reply to: [WooCommerce] Filtering Variable and Simple Products using get_posts()I figured this out. Just had to check the price from that table for simple and variable products and for the custom product types I just used the regular price field. This won’t be achievable if you don’t use custom SQL Query, in this case I used get_results();
Forum: Developing with WordPress
In reply to: Custom Query on wp_postmeta tableJust found a solution that I have to add multiple INNER JOINs… is this the only and good solution?
inner join wp_postmeta m1 ON wp_posts.ID = m1.post_id AND m1.meta_key = 'event_type' AND m1.meta_value = 'Race' inner join wp_postmeta m2 ON wp_posts.ID = m2.post_id AND m2.meta_key = 'venue_title' AND m2.meta_value = 'Blue Ridge'
Forum: Plugins
In reply to: [WooCommerce] Filtering Variable and Simple Products using get_posts()UPDATE: I just found out that the fields I am looking for are on this table
wp_wc_product_meta_lookup
how can I add min_price and max_price to my get_posts filter?