nimeshd

Forum Replies Created

Viewing 15 posts - 1 through 15 (of 28 total)
  • Author
    Posts
  • in reply to: Add "Verified Badge" to Geodir Category List (Grid) View #288506

    nimeshd
    Expired Member
    Post count: 29
    This reply has been marked as private.
    in reply to: Add "Verified Badge" to Geodir Category List (Grid) View #287987

    nimeshd
    Expired Member
    Post count: 29
    This reply has been marked as private.
    in reply to: Add "Verified Badge" to Geodir Category List (Grid) View #287856

    nimeshd
    Expired Member
    Post count: 29

    Hello Giri – SORRY. It was error on my end. It is working PERFECTly, EXACTly as I had hoped. Thanks a million.

    in reply to: Add "Verified Badge" to Geodir Category List (Grid) View #287220

    nimeshd
    Expired Member
    Post count: 29

    Wow Giri. It is PERFECT. Thank you. Please see the result in attached screen capture. Exactly what I was trying. The idea of verified text is better than what i was seeking. I replaced the first with second however that option did not work for me. Perhaps error on my end. Do you have my login? Can you take a look?

    in reply to: Add "Verified Badge" to Geodir Category List (Grid) View #286272

    nimeshd
    Expired Member
    Post count: 29

    Hi Guust – Thank you.

    Hi Paolo – I am following up on the Supreme Theme, the add “Verified Badge” to Geodir Category List (Grid) View.

    I believe you were going to ask developer (Kor) who wrote that code snippet. I am patiently waiting, but wanted to check if any progress was made. Thank you.

    in reply to: Add "Verified Badge" to Geodir Category List (Grid) View #285042

    nimeshd
    Expired Member
    Post count: 29

    Hi Guust – To see if “GMap – Home Map” would work on other areas, I added the “GMap – Home Page” on Appearance > Widgets > GD Detail Sidebar (of course i had to reduce the size). Than enabled GeoDirectory > Design > Marker Cluster and that actually worked. I need help to figure out where to change map shown on “geodir-listings-sidebar-right” with “GMap – Home Page”.

    in reply to: Add "Verified Badge" to Geodir Category List (Grid) View #285027

    nimeshd
    Expired Member
    Post count: 29

    Thank you, I appreciate your assistance and will continue to keep a lookout for solution.

    SUPREME related – Is it possible to change the GMAP type? In order to use “Marker Cluster”, Map shown on “geodir-listings-sidebar-right” need to be “GMAP – Home Page”. How or where can I make this change?

    in reply to: Add "Verified Badge" to Geodir Category List (Grid) View #284372

    nimeshd
    Expired Member
    Post count: 29
    This reply has been marked as private.
    in reply to: Add "Verified Badge" to Geodir Category List (Grid) View #284038

    nimeshd
    Expired Member
    Post count: 29

    Hi Paolo – I installed the suggested code-snippet and copied the code posted by Kor. But did not see any changes. I am not sure if I missed any steps.

    in reply to: Add "Verified Badge" to Geodir Category List (Grid) View #283585

    nimeshd
    Expired Member
    Post count: 29

    The request was from Sylvester Vader about month back.

    in reply to: Add "Verified Badge" to Geodir Category List (Grid) View #283582

    nimeshd
    Expired Member
    Post count: 29

    I am not sure, but can you kindly take a look at reply #245610. It appears something similar if I am not mistaking.

    in reply to: Add "Verified Badge" to Geodir Category List (Grid) View #283543

    nimeshd
    Expired Member
    Post count: 29

    Here is mockup of what I am requesting…

    in reply to: Add "Verified Badge" to Geodir Category List (Grid) View #283541

    nimeshd
    Expired Member
    Post count: 29

    I have corrected the credentials.

    in reply to: Add "Verified Badge" to Geodir Category List (Grid) View #283361

    nimeshd
    Expired Member
    Post count: 29
    This reply has been marked as private.
    in reply to: Claim Listings Add-on #282475

    nimeshd
    Expired Member
    Post count: 29

    Hi Kor – I believe posting dated August 12, 2016 at 7:35 am #245610, you suggested Sylvester to try custom code below? I am trying to accomplish something similar if not the same. In category list view (grid view), the geodir post img has a Add to Favorites heart on left hand top corner. I wish to have a claimed listing appear on the right hand top corner (the opposite side). How can I do this? I did install the snippet and added the code below, but am not successful.

    function geodirectory_claim_link_on_listing( $post_id, $post ) {
    global $gd_claim_post_types;
    if ( !( !empty( $post ) && !empty( $post->post_type ) && defined( ‘CLAIM_BUSINESS_OWNER’ ) ) ) {
    return;
    }

    $gd_claim_post_types = !empty( $gd_claim_post_types ) ? $gd_claim_post_types : get_option( ‘geodir_post_types_claim_listing’ );

    if ( in_array( $post->post_type, (array)$gd_claim_post_types ) ) {
    $is_owned = geodir_get_post_meta( $post_id, ‘claimed’, true );

    if ( get_option(‘geodir_claim_show_owner_varified’) == ‘yes’ && $is_owned != ‘0’ ) {
    echo ‘<span class=”geodir-listing-verified”><i class=”fa fa-check-circle” style=”color:orange”></i> ‘ . __( ‘Verified Listing’, ‘geodirectory’ ) . ‘</span>’;
    }

    if ( get_option(‘geodir_claim_enable’) == ‘yes’ && $is_owned == ‘0’ ) {
    $claim_url = add_query_arg( array( ‘gd_go’ => ‘claim’ ), get_permalink( $post_id ) );
    echo ‘<span class=”geodir-listing-claim”><i class=”fa fa-question-circle”></i> ‘ . CLAIM_BUSINESS_OWNER . ‘</span>’;
    }
    }
    }
    add_action( ‘geodir_listing_after_pinpoint’, ‘geodirectory_claim_link_on_listing’, 10, 2 );

Viewing 15 posts - 1 through 15 (of 28 total)