paralosreg

Forum Replies Created

Viewing 15 posts - 1 through 15 (of 15 total)
  • Author
    Posts
  • in reply to: Add Place Name in Detail Page #41809

    paralosreg
    Free User
    Post count: 15

    Ok. It was a problem with my theme (Avada), I’ve solved it. But I need to change the Main page title, it shows “Blog”. I cant find this page in Pages section.

    in reply to: Add Place Name in Detail Page #40107

    paralosreg
    Free User
    Post count: 15

    Re-upload image

    in reply to: Translation poblem #40092

    paralosreg
    Free User
    Post count: 15

    Yes! That was the problem. Thx.

    in reply to: Translation poblem #39806

    paralosreg
    Free User
    Post count: 15

    Hello.
    Please, I still need help. I have problems to tanslate the string “Recurring Dates”, in the right of the Event detail page.

    in reply to: Translation poblem #39499

    paralosreg
    Free User
    Post count: 15

    Sorry about my english. The first problem is solved. Thx. But I have other translation problem in the right column of a event page. The image capture is attached in the second post.

    in reply to: Translation poblem #39305

    paralosreg
    Free User
    Post count: 15

    Okey. I can not change that. In the event page

    in reply to: Translations #38742

    paralosreg
    Free User
    Post count: 15

    Ups. Clear information already published. Sorry.
    Thx

    in reply to: Events linked to a place are not listed #36915

    paralosreg
    Free User
    Post count: 15

    Made! Thx

    in reply to: Events linked to a place are not listed #36909

    paralosreg
    Free User
    Post count: 15

    Ok. I have made a fresh installation to avoid problems because the necessary pages deleted. I’ve added events, and again I have problems to see it in the map. I’ve set “All” in Default event filter. I can see it in the events page like a list, but not in the map. I think if “All” is set, I’d have to see all events independently of the start date.

    in reply to: Events linked to a place are not listed #36858

    paralosreg
    Free User
    Post count: 15

    Okey. I`ll use the translation file then. Many Thanks.

    in reply to: Events linked to a place are not listed #36787

    paralosreg
    Free User
    Post count: 15
    This reply has been marked as private.
    in reply to: Events linked to a place are not listed #36768

    paralosreg
    Free User
    Post count: 15
    This reply has been marked as private.
    in reply to: Link events to places #36066

    paralosreg
    Free User
    Post count: 15

    Great!
    can the admin create a event for any place?

    in reply to: Disable Multi-Category #36061

    paralosreg
    Free User
    Post count: 15

    Great! Thx

    in reply to: Show button "Open in Google Maps" #35568

    paralosreg
    Free User
    Post count: 15

    Great!!!

    I change a little, following this:

    Here’s the info on Google’s URL:

    http://maps.google.com/maps?z=12&t=m&q=loc:38.9419+-78.3020

    z is the zoom level (1-20)
    t is the map type (“m” map, “k” satellite, “h” hybrid, “p” terrain, “e” GoogleEarth)
    q is the search query, if it is prefixed by loc: then google assumes it is a lat lon separated by a +

    And this is my code to help who need it

    
    
    <?php
    
    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>";
    } 
    
    
Viewing 15 posts - 1 through 15 (of 15 total)