Kiran
Forum Replies Created
-
AuthorPosts
-
Hello,
I have added [width_css] & left sidebar class at GeoDirectory > Theme Compatibility, now it showing left sidebar with 25%.
Kiran
This reply has been marked as private.This reply has been marked as private.Hello,
Seeing Author Widget when Not Signed. I tried on various browsers, browsers that have never been to the site, and in private browsing and for some reason this listing is showing author widget in the side bar.
I checked and found that there is no author assigned to listing “Pipe Fitter”. Because of this author widget shows even for non-logged user. All listings must have any author assigned to them. Please assign any author to that listing.
We will also fix from our side so it also validate empty author to show/hide author action widget.
I went to my other site https://thingstodoinnc.com/add-listing/?listing_type=gd_place with V2 installed that hasn’t been updated to today’s most recent version. I noticed if I click on Add Listing it does show the login form but that doesn’t work. When trying to sign in it just goes straight to the next login page, the UWP login page where I have to enter login credentials again and this page works.
Please explain more with some example/steps how to replicate issue.
Kiran
Hello Lise,
The function geodirectory_franchise_add_listing_header() contains 3 parameters( $title, $post_type & $post ), so in filter you should use 3 instead of 2 in
add_filter( 'geodir_franchise_add_listing_header', 'geodirectory_franchise_add_listing_header', 10, 2 );.
Corrected snippet:
function geodirectory_franchise_add_listing_header( $title, $post_type, $post ) { if ( $post_type == 'gd_place' ) { $title = __( 'Manage School Campuses', 'geodir-franchise' ); } else if ( $post_type == 'gd_website' ) { $title = __( 'Manage Branch Locations', 'geodir-franchise' ); } return $title; } add_filter( 'geodir_franchise_add_listing_header', 'geodirectory_franchise_add_listing_header', 10, 3 );Thanks,
KiranThis reply has been marked as private.Hello,
Please provide a link and admin credentials in a private reply and we will check.
Also provide a particular event url that shows “Missing field “startDate”” error.Thanks,
KiranHello Emlyn,
Have you checked after updating GeoDirectory plugins? We just have released plugins for GeoDirectory v2.
If you have not updated then please update first and let us know how it goes.
If you have already updated plugins then provide us site link & admin credentials in private reply. We will take a look. Provide us FTP credentials as well and let us know where is the custom code to generate a report CPT post.Thanks,
KiranHello Andrea,
You are using Directory Starter v1.1.10 theme with GeoDirectory v2. For GeoDirectory v2 you need to use Directory Starter v2.x.
For temporary solution i have fixed JavaScript error and now all working fine.
Thanks,
KiranHello,
We have checked BP register full page width and it happening with WordPress default theme as well. It seems something from BuddyPress that not assigning template selected from page settings.
Use following snippet to fix the BP Register full width page problem.
/** * Force to use assigned Page template with BuddyPress Register page. * FIX: BP Registration page loads sidebar even if set to full width. */ function gd_snippet_bp_register_template_fix( $template ) { if ( function_exists( 'bp_is_register_page' ) && bp_is_register_page() ) { $bp = buddypress(); $template_slug = get_page_template_slug( $bp->pages->register->id ); if ( $template_slug && ( $located = locate_template( array( $template_slug ), false ) ) ) { $template = $located; } } return $template; } add_filter( 'template_include', 'gd_snippet_bp_register_template_fix', 100 );Thanks,
KiranHello Jordan,
Customize header & footer via Elementer looses the original id & class used by Directory Starter/Supreme Directory theme. It is breaking the original layout from theme.
I checked current header via Elementor and it does not have id=site-header & class=site-header, so it does not work as expected.
Kiran
This reply has been marked as private.In v2 we have more simpler templating system, so it is easy to do customization. We are using own template page for each Gd page. See https://wpgeodirectory.com/docs-v2/geodirectory/page-design/#settings
In v2 the page layout for GD pages can be set from Pages > Page.
For listings page Pages > GD Archive.
For search page Pages > GD Search.For listings pages the template part files are \geodirectory\templates\content-archive-listing.php & \geodirectory\templates\content-listing.php
For listing-filter-form.php template part file is \geodirectory\templates\listing-filter-form.php
Kiran
January 17, 2019 at 4:46 am in reply to: Imported listing now showing default image, but default CPT image #463645Hello,
In GeoDirectory v2 we have used shortcodes/widgets to make customization more simpler.
To show user actions like “Edit, Upgrade etc”, use Widgets > “GD > Author Actions” widget.
To show favorite link, use Widgets > “GD > Post Favorite” widget.
To show claim listing link, use Widgets > “GD > Post Claim” widget.
To show listing sidebar fields, use Widgets > “GD > Output Location” widget & select “Location: Details page sidebar”.Kiran
January 17, 2019 at 4:30 am in reply to: FlexSlider on single listing page not working in Chrome. Works in Safari and IE. #463643Thanks for letting us know 🙂
-
AuthorPosts