Stiofan O'Connor
Forum Replies Created
-
AuthorPosts
-
Hi Stephen,
Please open your own tickets if you have issues.
Please provide wp-admin and FTP details and i will take a look.
Your server does not even seem to be serving static files so it might be something server related.
Thanks,
Stiofan
AGAIN please also provide wp-admin details also…
Can you also provide whm details so i can kill any processes that i need to?
Stiofan
This likely won’t be an issue in GDv2.
Stiofan
3. it is my understanding for the images you do need the owners permission, you should add something to your T&C that states you must have permission to share the info/images.
Stiofan
If you want more than 1 result u need to remove the “LIMIT 1” from the query 🙂
Stiofan
November 29, 2017 at 1:26 pm in reply to: Does Social Importer import – FB Event – Ticket Information? #407397That even does not seem to show ticket link on the page (unless i am missing it, do u have an example with a ticket link?)
Stiofan
non private reply test for alex
This reply has been marked as private.For filtering you would need to use a custom query at the moment, and join the post table with the place_details table instead of the post_meta table.
something like:
` global $wpdb, $table_prefix, $plugin_prefix,$post;
$post_id = $post->ID;
$post_type = $post->post_type;
$table = $plugin_prefix . $post_type . ‘_detail’;$post_arr = $wpdb->get_results($wpdb->prepare(
“SELECT * FROM $wpdb->posts p JOIN ” . $table . ” gd ON gd.post_id=p.ID WHERE p.ID=%d LIMIT 1″,
array($post_id)
));`Stiofan
Hi Josh,
FYI there is a problem with your SSL.
Also for your site no even the default WP sample posts are working, they show 404 so i assume you NGINX server has not been setup to use WordPress permalinks, please ask you host to enable this.
Thanks,
Stiofan
Hi David,
Thanks for your purchases! I have refunded the difference to apply the discounts to the two full price purchases and i can confirm all three are the 12 month packages.
As the payment was with stripe it can take 5-10 days in some cases to show back in the account.If i can help further just let me know.
Thanks,
Stiofan
Hello,
I have never used GravityFlow but anything is possible.
GD does use standard WP CPTs but the only difference being that it saves the custom fields in its own DB table for speed and scale-ability.
In GDv2 we will be using the standard wp_insert_post() and wp_update_post() so it will likely be much easier to integrate then, but would still be possible now with customisations (but would become obsolete in v2)Thanks,
Stiofan
November 29, 2017 at 10:31 am in reply to: GeoDirectory multi-select field cannot handle many select options #407351Hi Steve,
We place no limitations, this could be two things, either a post or url limitation or it could be a DB limitation.
The DB limitation is that a user might store all the option so we need to make the field be able to store them all, but to make search filtering fast it can’t be a TEXT field it has to be something like VARCHAR, but having a large VARCHAR uses up space that is limited to the amount of rows you can have.
There are a few options and i am actually working on this right now, so i’ll try and build them in to the next version.
Do you plan on using filtering in the search with these options or just using them to display info only?
Stiofan
Yes it is used for insert and update. you can look at out dummy data as an example:
https://github.com/GeoDirectory/geodirectory/blob/master/geodirectory-admin/dummy-data/standard_places.phpYou can get all post meta info with https://wpgeodirectory.com/codex/codex/geodirectory_functions/geodir_get_post_info/
For individual fields you can use the GD functions that work the same as the WP ones:
geodir_save_post_meta
geodir_get_post_meta
geodir_delete_post_metaStiofan
FTP details are not working for me, can you double check the details?
Thanks,
Stiofan
-
AuthorPosts