Simone
Forum Replies Created
-
AuthorPosts
-
disregard the first block of code, this will work
add_action('geodir_after_social_sharing_buttons' , 'buttonmap', 10); function buttonmap(){ global $post, $wp_query, $preview, $geodirectory; $postid = $wp_query->post->ID; $address= geodir_get_post_meta($postid,'post_address',true); //address $e_add = str_replace(' ', '+', $address); // + in space eg road+street+23 $lat= geodir_get_post_meta($postid,'post_latitude',true); //lat $lon= geodir_get_post_meta($postid,'post_longitude',true); //lon //echo $e_add.$lat.$lon; echo "<a href="http://maps.google.com/maps?z=12&t=m&q=loc:".$lat."+".$lon."" target="_blank"> Mostra en Google Maps</a>"; }
in Geodirectory you can find the custom css in Design/Script (but it isn’t black as you recall 🙂 )
The quick code is in the GDF settings (it is the theme) you can find it in the GDF Options not in the Geodirectory settings
Cant see the screenshot, however a Live website will be better (you can post it in a private reply)
hi, you mean in the GDF Options? I can still see the quick code box in wp-admin/admin.php?page=_options
Hello, it is an host thing, you have this error
[Error] XMLHttpRequest cannot load http://acrossba.com/wp-admin/admin-ajax.php?action=geodir_ajax_action&geodir_ajax=map_ajax&ajax_action=info&m_id=3809&small=1&_=1434117785517. Origin http://staging3.acrossba.com is not allowed by Access-Control-Allow-Origin. (staging3.acrossba.com, line 0)
here for more info and solution
http://stackoverflow.com/questions/10143093/origin-is-not-allowed-by-access-control-allow-originThis has been fixed and will be available in the next GD-Framework release.
Hi, are you talking about the Popular post view widget? In that case, there is a sorting by AZ.
You can also play in the post type settings, in the Sorting option, you can add Title and made it the default sorting (asc/desc)June 12, 2015 at 12:22 pm in reply to: Login details for GeoDirectory failed! Please check GeoDirectory>Auto Updates an #42345Hello, try using the username/password (from the forum) and not your email as username.
In your case, use uakix and then your passwordHello, in the settings (Geodirectory/ General) you can disable a physical location in a given post type
Hi Tom,I tried with Safari and Chrome, and it works fine. What I did:
– home page
– clicked on Members
– Clicked on the username “site admin”
– clicked on the tabs “Groups”
– clicked on the group “M3 T.E.A.M.”
all works fine, please try to delete the cache in your browser.
A run with the GD Tools wouldn’t be bad either 🙂It could also be due to a wrong configuration/permission in your .htaccess
You had something weird on the wp-config.php
I tried to clean it up and now the errors are gone, however there is some internal server error, due to some plugin. I have reset your plugins so you can login in the backend and try to update all the plugins (and activate them onebyone) and see what’s causing the error.Hello, you can use the following code to display the get directions in the sidebar
add_action('geodir_after_social_sharing_buttons' , 'buttonmap', 10); function buttonmap(){ global $post, $wp_query, $preview, $geodirectory; $postid = $wp_query->post->ID; $address= geodir_get_post_meta($postid,'post_address',true); //address $e_add = str_replace(' ', '+', $address); // + in space eg road+street+23 $lat= geodir_get_post_meta($postid,'post_latitude',true); //lat $lon= geodir_get_post_meta($postid,'post_longitude',true); //lon //echo $e_add.$lat.$lon; echo "Get Directions"; }
this will go after the sharing buttons on the right, put the code in the functions.php inside your child theme’s folder
Hmm, I maybe be misunderstanding your question but, have you tried mixing GD+Buddypress+Woocommerce? All the things an user (GD) sell (woo commerce) will be in the activity stream (buddypress)
-
AuthorPosts