Review widget

Discussion in 'GeoCraft WordPress Theme' started by aciocan, Jan 28, 2017.

  1. aciocan

    aciocan New Member

    Joined:
    Jan 12, 2014
    Messages:
    23
    Likes Received:
    0
    I just upgraded to 2.0.9.

    1. How do I remove the posted date from the review widget?
    2. I have a message at the top of the page, how do I remove it?: There are no listing locations. Please go to Admin panel-> Business Listings-> Listing locations and add your locations.
    3. How do I remove Listing locations?
    4. When I click on a listing it takes me to the review section as opposed to the listing itself.
     
    Last edited: Jan 28, 2017
  2. Naveen

    Naveen Guest

    Joined:
    Aug 8, 2014
    Messages:
    1,739
    Likes Received:
    64
    Hello,

    1) You can hide the comment meta (Posted date from review section) using following custom CSS in Dashboard->GeoSettings->Theme Options-> Custom CSS
    Code:
    ol.commentlist li.comment a.comment-meta {
         display: none;
    }
    2) It seems you haven't configured the home page Map and Listing locations in the theme, kindly refer the updated theme documentation available in your members area and configure it.
    You will be able to turn it off from theme options panel.

    3) You can remove the listing locations from backend itself, just follow the instructions provided in the documentation.

    4) I didn't get your issue, could you please share some screenshots of the concerned areas of your site. I will check and let you know the solution.

    Warm Regards!
    Naveen Kolhe
    InkThemes.com
     
  3. aciocan

    aciocan New Member

    Joined:
    Jan 12, 2014
    Messages:
    23
    Likes Received:
    0
    Thank you, this worked.

    1. Another question related to reviews. In the listing view they are sorted from the oldest at the top to the newest at the bottom, how do I reverse the sort order, to newest to oldest?
    2. How can I remove the review posted time (keep the date) from the listing page?
    3. I have upgraded from 1.8.4, and the listings in the slider were 30% smaller. Is there a way to make the slider smaller?
    4. The distance between the top menu and the slider seems too big, how would I go about removing the empty space (www.rateed.com)
    5. In the listing view I would like to replace the phone number with a Click here to view phone number message (similar to what I did for the website link)
     
    Last edited: Jan 31, 2017
  4. Naveen

    Naveen Guest

    Joined:
    Aug 8, 2014
    Messages:
    1,739
    Likes Received:
    64
    1) Just add below code at the end of the functions.php file of your theme (you can access your theme files via FTP), all reviews will start appearing in reverse order.
    Code:
    if (!function_exists('iweb_reverse_comments')) {
        function iweb_reverse_comments($comments) {
            return array_reverse($comments);
        }   
    }
    add_filter ('comments_array', 'iweb_reverse_comments');
    2) It is not possible, for this, we will have to customize the source code.

    3) I have just checked your site and it can be resolved easily by applying below custom CSS code in the custom CSS field under theme options panel
    Code:
    .flexslider .slides img {
        width: 100%;
    }
    4) I am afraid to say that, I was unable to locate the area in the theme...

    It would be better for us to understand your query with the help of edited screenshot.
    Create your screenshots using screenpresso (http://www.screenpresso.com).

    So that I can deliver you an exact and appropriate solution to you,

    5) I hope you have edited the source code for the website URL, you can do the same for phone number field as well, if you need our help then let us know.

    Thanks & Regards!
    Naveen Kolhe
    InkThemes.com
     

Share This Page