geylang666
Forum Replies Created
-
Forum: Plugins
In reply to: [Videopack] Folder of Storing ThumbnailHi @kylegilman , can you advise on this? Thanks.
Forum: Plugins
In reply to: [Videopack] Folder of Storing ThumbnailAnd some more test case here:
1. If we click on the “Generate” button manually for the video, the url will be correct as our customization.
2. However, if the thumbnail is generated automatically, it only goes to “/upload”.
Hope these can help locate the issue.Forum: Plugins
In reply to: [Videopack] Folder of Storing ThumbnailHi @kylegilman
I think the issue is due to our custom setting of path.
In the media setting we did not choose “Organize my uploads into month- and year-based folders”
Instead we used the following snippet:function wpcb_upload_dir_filter($uploads){ $y = date('Y'); $m = date('m'); $d = date('d'); if ( is_user_logged_in() ) { $user_dir = wp_get_current_user()->display_name; $uploads['path'] .= '/'.$y.'/'.$m.'/'.$d.'/'.$user_dir; $uploads['url'] .= '/'.$y.'/'.$m.'/'.$d.'/'.$user_dir; }; return $uploads; } add_filter('upload_dir', 'wpcb_upload_dir_filter');
Can we make this snippet effective to VideoPack as well?
Thanks.Forum: Plugins
In reply to: [Videopack] Folder of Storing ThumbnailHi @kylegilman , thanks to your help we resolved our other obstacles with Videopack.
But this specific one is still bothering us, our case is this:
1. when we upload a video, according to our custom path, the video gets stored in a folder like “/upload/2022/09/03/userabc”.
2. then the thumbnail gets generated all well, but it is stored in “/upload”.Please help. Thanks. BR.
Forum: Plugins
In reply to: [Videopack] Problem when Saving Thumbnail URLHi, we tested again.
In fact, whenever the url is a correct thumbnail image url, the error shows. When the url is anything not correct, the error will not show.Forum: Plugins
In reply to: [GEO my WP] Post Location Function Not Working@ninjew some follow-up:
We fixed the Google API Keys and now it works with Google Map.
However, the Leaflet Map (our preferred option) still does not work.
Did the Leaflet option stop providing the service?
Thanks.
BR,
GeyForum: Plugins
In reply to: [GEO my WP] Post Location Function Not Working@ninjew Thank you for quick response!
Just to confirm: we actually chose Leaflet as the “Maps Provider” – would that require to verify Google API as well?
Thanks!
Forum: Plugins
In reply to: [GEO my WP] Post Location Function Not WorkingWe tested a lot, and it shows that even if we want to execute the following
gmw_update_post_location( $post_id, ‘test address’ );
It also does not work.
Forum: Plugins
In reply to: [GEO my WP] Site URL Change@ninjew and we have another question – how do we add a “border: solid” to the map icons? We are using post image ti be the icons, but we need a border to identify them from the map.
Forum: Plugins
In reply to: [GEO my WP] Site URL ChangeHa, the refresh icons worked.
Forum: Plugins
In reply to: [GEO my WP] Site URL ChangeHi @ninjew , we just noticed that, the “Default Location Icon” and “User Location Icon”, are still pointing the old url. How can we update those as well?
Thanks.
GlenForum: Plugins
In reply to: [GEO my WP] Site URL ChangeThanks @ninjew ! It works!
Forum: Plugins
In reply to: [GEO my WP] Inserting Phone Number to GEO My WPHi Eyal, yes you are right
Forum: Plugins
In reply to: [GEO my WP] Integration with ACFHi Eyal,
Thank you for your help! Another follow up question:
We newly noticed that in Google API setting there is this part:“Google Maps API For China”
“Enabled” “Check this checkbox if your server is located in China and Google Maps features are not working on your site.”Does this mean that GEO My WP is functional in China now?
Thanks.
GeyForum: Plugins
In reply to: [GEO my WP] Geo My WP integration with WPUFHi @creatino
I tried your code and it actually works! For post edited from WPUF’s frontend, the GMWP location did update! Thank you so much!
However, as I am not developer, may I ask how can this work for update from admin panel also? Thanks again!