Kiran
Forum Replies Created
-
AuthorPosts
-
This reply has been marked as private.September 2, 2019 at 8:19 am in reply to: Customizing How Places look on BuddyPress Profiles #506040
Hi lilmisslanna,
Name of the tab “Listings” can be changed two ways:
1) Via PHP snippet
Try following PHP snippet./** * Change "Listings" label in profile tabs. */ function gd_snippet_20190902_buddypress_nav_listings( $nav ) { $search = 'Listings'; // Old tab label $replace = 'Directories'; // New tab label if ( ! empty( $nav['name'] ) ) { $nav['name'] = preg_replace( '/\b' . $search . '\b/', $replace, $nav['name'] ); } return $nav; } add_filter( 'geodir_buddypress_nav_listings', 'gd_snippet_20190902_buddypress_nav_listings', 20, 1 );2) Via .po file language translation.
Try to translateListings <span class="%s">%s</span>from geodir_buddypress-en_US.po file.
Kiran
Hi Matthias,
Please check now.
Kiran
Hi Dave,
You can achieve by using post badge feature.
Try following post badge shortcode in Pages > GD Archive Item template.
[gd_post_badge badge="more dates available" key="recurring" condition="is_not_empty" link="%%post_url%%" bg_color="#0073aa" txt_color="#ffffff" css_class="gd-custom-recurring-event"]Kiran
This reply has been marked as private.August 31, 2019 at 1:06 pm in reply to: How can I reset the search filter when changing languages? #505847This reply has been marked as private.This reply has been marked as private.August 31, 2019 at 9:58 am in reply to: How can I reset the search filter when changing languages? #505834This reply has been marked as private.Hi Steve,
Author archives page is disabled from SEO > Search Appereance > Archives > Author archive settings. Enable it to allow user to access authors page.
Kiran
Hi merileads,
Please try to import listing with valid CSV file as Alex explained.
If you are not sure about custom fields available to import listings then do following:
– Create one listing manually from admin by filling all fields.
– Export CSV from GeoDirectory > Settings > Import/Export
– Now you can add more entries to CSVLet us know.
Thanks,
KiranHi Vlad,
Try now #9 after clearing your browser cache.
Let us know.
Regards,
KiranThis reply has been marked as private.August 30, 2019 at 2:09 pm in reply to: How can I reset the search filter when changing languages? #505719This reply has been marked as private.1) Patch applied on your site.
2) We have considered your suggestion and opened a task to implement in future.
Thanks,
KiranThis reply has been marked as private. -
AuthorPosts