Giri
Forum Replies Created
-
AuthorPosts
-
May 31, 2017 at 10:31 am in reply to: Listing Image problem: sometimes 90 degree anti-clockwise #380919
Hi Billy,
I guess the problem is something to do with your server or the image you uploaded.
This is your image meta data. https://prnt.sc/fe6his
The image on your site has EXIF orientation set. If the image has EXIF orientation set, some browsers will interpret this and automatically rotate the image.
See more here. https://stackoverflow.com/a/31735472/736037
Hope that helps.
Thanks
Hi Ian,
Its not possible. If rating is required then u have to give one start. If it has no start its not considered a review but a comment. So there would be no difference
Thanks
Yes Eric, you are right. we mean the same thing.
Thanks
Showing future events for everyone is a bad idea.
I meant that we should display all events for author. But ofcourse it makes sense to display future events for everyone else.
The patch will be included in next version.
Thanks
Hi Eric,
Showing future events for everyone is a bad idea.
I have changed it to display future events for other users and all events for the author.
Please post your FTP. I’ll apply the fix.
Thanks
Detail page category and tags are coming from this function.
geodir_action_details_taxonomies
https://github.com/mistergiri/geodirectory/blob/master/geodirectory_template_actions.php#L1099
You have to either call that function or create custom code by yourself.
I would go with calling that function. Just place that function where you need those categories. It would print them. Keep in mind it will also print the tags. You may have to use CSS to hide the tags if you don’t need them.
Thanks
I’m glad you fixed it.
Let me mark this thread as resolved.
Thanks
You seem like you add this custom CSS.
Thats what causing that issue.
.gd-cptcats-widget .gd-cptcat-gd_place { width: auto; }
Hi Marcus,
Give me some minutes. I’ll give you the fix.
Hi Atilla,
The code I provided make the author link empty. Which means its empty href tag. So it points to the same page. In your case this is fine.
If you want to completely remove the link, then you need edit the code and remove the html a tags manually.
So your code becomes like this
printf('<div class="author-avatar">%s</div>', $entry_author); printf('<div class="author-link">%s</div>', esc_attr($author_name));
May 26, 2017 at 10:35 am in reply to: My Listings not showing with boddypress loging dashboard #380162This reply has been marked as private.Hi Christopher,
You need to remove the old action and then creation new function and hook it to the action.
Something like this
remove_action('geodir_search_page_title', 'geodir_action_search_page_title', 10); add_action('geodir_search_page_title', 'customized_geodir_action_search_page_title', 10); function customized_geodir_action_search_page_title() { }
Here customized_geodir_action_search_page_title function is an modified copy of geodir_action_search_page_title function. Just copy paste that function contents and then modify it as per your needs.
You are welcome 🙂
Hi Atilla,
GD Business hours is a 3rd party addon. I think its better you give your translation file to Jeff. So he can include that in languages folder.
You are welcome.
-
AuthorPosts