Paolo
Forum Replies Created
-
AuthorPosts
-
The only way would be to edit them before uploading them.
Thanks
Hi,
please provide a link and admin credentials and the name of the script that you are trying to exlude from combine.
We’ll have a look.
Thanks
Hi,
I’m not sure I understand what you want to do with CSS. Please explain better.
For the rest I’ve flagged this for the developers.
Let us know,
Thanks
Hi,
it will take a while before Stiofan can spare any time on assisting developers for 3rd party integrations.
We have been really really busy in this period and it doesn’t seem to be getting any quieter.
Thanks
Thanks for letting us know 🙂
Hi,
code for the preview page and detail page is different. This because on the preview page the data isn’t saved in the Database yet.
You can see the difference quite clearly here: https://wpgeodirectory.com/remove-tabs/
For example the args for the map are completly different.
Detail page:
$map_args = array(); $map_args['map_canvas_name'] = 'detail_page_map_canvas'; $map_args['width'] = '600'; $map_args['height'] = '300'; if ($post->post_mapzoom) { $map_args['zoom'] = '' . $post->post_mapzoom . ''; } $map_args['autozoom'] = false; $map_args['child_collapse'] = '0'; $map_args['enable_cat_filters'] = false; $map_args['enable_text_search'] = false; $map_args['enable_post_type_filters'] = false; $map_args['enable_location_filters'] = false; $map_args['enable_jason_on_load'] = true; $map_args['enable_map_direction'] = true; $map_args['map_class_name'] = 'geodir-map-detail-page';Preview page:
global $map_jason; $map_jason[] = $post->marker_json; $address_latitude = isset($post->post_latitude) ? $post->post_latitude : ''; $address_longitude = isset($post->post_longitude) ? $post->post_longitude : ''; $mapview = isset($post->post_mapview) ? $post->post_mapview : ''; $mapzoom = isset($post->post_mapzoom) ? $post->post_mapzoom : ''; if (!$mapzoom) { $mapzoom = 12; } $map_args = array(); $map_args['map_canvas_name'] = 'preview_map_canvas'; $map_args['width'] = '950'; $map_args['height'] = '300'; $map_args['child_collapse'] = '0'; $map_args['maptype'] = $mapview; $map_args['autozoom'] = false; $map_args['zoom'] = "$mapzoom"; $map_args['latitude'] = $address_latitude; $map_args['longitude'] = $address_longitude; $map_args['enable_cat_filters'] = false; $map_args['enable_text_search'] = false; $map_args['enable_post_type_filters'] = false; $map_args['enable_location_filters'] = false; $map_args['enable_jason_on_load'] = true; $map_args['enable_map_direction'] = true; $map_args['map_class_name'] = 'geodir-map-preview-page';The same is true for any other function.
Hope this helps,
Thanks
That is the problem, the function for the preview part is missing. You must have the elseif part…
You are welcome 🙂
You are welcome 🙂
They are there, just very light if no review has been left yet.
See image attached.
Thanks
You are welcome and thanks for sharing this info, it could be useful for other members too in the future 🙂
Hi,
for the videos please see: https://wpgeodirectory.com/support/topic/embedding-multiple-videos/
The rating description not showing seems to be a bug that comes up when fontawesome icons are used to replace stars. I’ll let the developers know and ask them to fix it.
Thanks
Hi,
no because the system must be multilingual compatible and it’s impossible to exclude common words for any language.
You can find an option in: GD >> General >> serach >> Individual word search limit
That is the extent of it.
Thanks
custom fields like telephone can be called like this anywhere in your templates:
global $post; if(isset($post->geodir_contact) && $post->geodir_contact){ echo '<a href="tel:'.$post->geodir_contact.'"><i class="fa fa-phone-square"></i> : '.$post->geodir_contact.'</a>'; }To get all other fields variable names you can add this to your template below the global $post; part:
print_r($post);For the send enquiry form and send to friend please see: https://wpgeodirectory.com/support/topic/moved-send-enquiry-button-not-working/#post-34926
Digging in the forum you will find plenty of other examples of how to customize the details page.
Let us know if this helped.
Thanks,
Hi,
please provide a link and admin credentials and I’ll alert Stiofan to have a look.
Let us know,
Thanks
-
AuthorPosts