VT

Forum Replies Created

Viewing 15 posts - 1 through 15 (of 61 total)
  • Author
    Posts
  • in reply to: Launching Google Maps from detail page for V2 #468991

    VT
    Full Member
    Post count: 65

    Perfect, thanks!

    in reply to: FB App API Update #383244

    VT
    Full Member
    Post count: 65

    Excellent, thank you!

    Have a great day. 🙂

    in reply to: update to Version 1.6.11 issues #321669

    VT
    Full Member
    Post count: 65

    I reauthorized Google analytics and received the same error as above, but navigating back to the dashboard clears the error.

    Looks like everything is working normally. I’ll keep an eye on it for a while to make sure all is well.

    in reply to: update to Version 1.6.11 issues #321660

    VT
    Full Member
    Post count: 65

    Okay, extracted and uploaded the updated core plugin. I can get back to the dashboard, but now i receive the following error:

    (cas:72) GeoDirectory was unable to authenticate you with Google using the Auth Token you pasted into the input box on the previous step.

    This could mean either you pasted the token wrong, or the time/date on your server is wrong, or an SSL issue preventing Google from Authenticating.

    Tech Info 400:Error fetching OAuth2 access token, message: ‘invalid_grant: Code was already redeemed.’

    What do I need to update now?

    in reply to: update to Version 1.6.11 issues #321656

    VT
    Full Member
    Post count: 65

    I am not sure how to update the plugin as I can not get into the dashboard.

    Any thoughts?

    Can I just extract the zip file and then send the files up via FTP?

    in reply to: update to Version 1.6.11 issues #321544

    VT
    Full Member
    Post count: 65
    This reply has been marked as private.
    in reply to: update to Version 1.6.11 issues #321540

    VT
    Full Member
    Post count: 65

    The error is now showing up on all back end dashboard pages. 🙁

    in reply to: Listing Page H1 #306267

    VT
    Full Member
    Post count: 65

    That worked! Thank you. 🙂

    in reply to: Listing Page H1 #305780

    VT
    Full Member
    Post count: 65

    I think found the issue within the functions.php file of our child theme. We have added the following code to change titles of category archive pages. When I remove the code, listing page titles works as expected.

    I am not sure how to modify it prevent overwriting the Geodirectory listings page titles, but I suspect it is the last else line that outputs Get_the_title() ? Maybe?

    Can you help me with the lines needed to be added? Please?

    function kleo_title()
    {
    $output = “”;
    if ( is_category() )
    {
    $output = __(”,’kleo_framework’).” “.single_cat_title(”,false);
    }
    elseif (is_day())
    {
    $output = __(‘Archive for date:’,’kleo_framework’).” “.get_the_time(‘F jS, Y’);
    }
    elseif (is_month())
    {
    $output = __(‘Archive for month:’,’kleo_framework’).” “.get_the_time(‘F, Y’);
    }
    elseif (is_year())
    {
    $output = __(‘Archive for year:’,’kleo_framework’).” “.get_the_time(‘Y’);
    }
    elseif (is_search())
    {
    global $wp_query;
    if(!empty($wp_query->found_posts))
    {
    if($wp_query->found_posts > 1)
    {
    $output = $wp_query->found_posts .” “. __(‘search results for:’,’kleo_framework’).” “.esc_attr( get_search_query() );
    }
    else
    {
    $output = $wp_query->found_posts .” “. __(‘search result for:’,’kleo_framework’).” “.esc_attr( get_search_query() );
    }
    }
    else
    {
    if(!empty($_GET[‘s’]))
    {
    $output = __(‘Search results for:’,’kleo_framework’).” “.esc_attr( get_search_query() );
    }
    else
    {
    $output = __(‘To search the site please enter a valid term’,’kleo_framework’);
    }
    }
    }
    elseif (is_author())
    {
    $curauth = (get_query_var(‘author_name’)) ? get_user_by(‘slug’, get_query_var(‘author_name’)) : get_userdata(get_query_var(‘author’));
    $output = __(‘Author Archive’,’kleo_framework’).” “;

    if(isset($curauth->nickname)) $output .= __(‘for:’,’kleo_framework’).” “.$curauth->nickname;

    }
    elseif (is_tag())
    {
    $output = __(‘Tag Archive for:’,’kleo_framework’).” “.single_tag_title(”,false);
    }
    elseif(is_tax())
    {
    $term = get_term_by( ‘slug’, get_query_var( ‘term’ ), get_query_var( ‘taxonomy’ ) );
    $output = __(”,’kleo_framework’).” “.$term->name;

    } elseif ( is_front_page() && !is_home() ) {
    $output = get_the_title(get_option(‘page_on_front’));

    } elseif ( is_home() && !is_front_page() ) {
    $output = get_the_title(get_option(‘page_for_posts’));

    } elseif ( is_404() ) {
    $output = __(‘Error 404 – Page not found’,’kleo_framework’);
    }
    else {
    $output = get_the_title();
    }

    if (isset($_GET[‘paged’]) && !empty($_GET[‘paged’]))
    {
    $output .= ” (“.__(‘Page’,’kleo_framework’).” “.$_GET[‘paged’].”)”;
    }
    return $output;
    }

    in reply to: Listing Page H1 #304473

    VT
    Full Member
    Post count: 65
    This reply has been marked as private.
    in reply to: Listing Page H1 #304471

    VT
    Full Member
    Post count: 65

    Sorry, I had updated everything on our development site and still saw the issues. I had not gotten around to updating the main site yet, so we could complete the testing on the dev site.

    Anyway, Everything is updated now and I did turn off all other plugins on the dev site and still saw the issue.

    in reply to: Listing Editor link options #304418

    VT
    Full Member
    Post count: 65

    Thank you for getting back with me.

    The first two images are how we create the issue. First, click the link and then click the pencil to “edit”. Next step is to click the cog for “link Options”.

    The last image is the expected result when clicking on the link options cog.

    Currently for listings, there is no link options pop-up where we can select “open in new tab”.

    in reply to: Listing Editor link options #303773

    VT
    Full Member
    Post count: 65
    This reply has been marked as private.
    in reply to: Listing Page H1 #303755

    VT
    Full Member
    Post count: 65
    This reply has been marked as private.
    in reply to: Map zoom level on custom post listings pages #269982

    VT
    Full Member
    Post count: 65
    This reply has been marked as private.
Viewing 15 posts - 1 through 15 (of 61 total)