Kiran

Forum Replies Created

Viewing 15 posts - 3,211 through 3,225 (of 6,022 total)
  • Author
    Posts
  • in reply to: — Map + Individual Page Tweaks Needed — #462864

    Kiran
    Moderator
    Post count: 7069

    Hello Jason,

    Divi Powerful Child Theme is replacing footer tag and insert the custom footer there. GeoDirectory templates are using the footer tag in listing-listview.php & widget-listing-listview.php.
    This is the reason behind this footer problem.

    To fix this issue:
    – Create directory “geodirectory” under your child theme like /wp-content/themes/Divi-Powerful/geodirectory/.
    – Copy listing-listview.php & widget-listing-listview.php from /wp-content/geodirectory/geodirectory-templates and paste/upload at /wp-content/themes/Divi-Powerful/geodirectory
    – Open file /wp-content/themes/Divi-Powerful/geodirectory/listing-listview.php in editor and replace “footer” tag with “div” tag.
    – Open file /wp-content/themes/Divi-Powerful/geodirectory/widget-listing-listview.php in editor and replace “footer” tag with “div” tag.

    This will fix issue.

    Let us know.

    Thanks,
    Kiran

    in reply to: v2 GD shortcodes not working #462859

    Kiran
    Moderator
    Post count: 7069

    Hello,

    Let us know where and for which purpose you have used those functions? In GeoDirectory v2 we are using shortcode to display post images(single/slider).

    Kiran

    in reply to: Edit listing – cannot add images and change logo #462856

    Kiran
    Moderator
    Post count: 7069
    This reply has been marked as private.
    in reply to: Custom repeats with different time bug #462852

    Kiran
    Moderator
    Post count: 7069

    Hello Scott,

    Are you sure is this same site? Because screenshot taken from different site.
    I can’t replicate even on this site.

    Let us know.

    Thanks,
    Kiran

    in reply to: Edit listing – cannot add images and change logo #462850

    Kiran
    Moderator
    Post count: 7069

    Hello Martin,

    We have already fixed image upload issue during edit listing. This will be in next release.

    Kiran

    in reply to: Backend and Front-end Image Upload not working #462849

    Kiran
    Moderator
    Post count: 7069

    Hello David,

    While debugging during uploading image it founds following error.

    cURL error 60: SSL certificate problem: unable to get local issuer certificate

    Please contact with your host or server admin to check if curl works fine on the server. Also contact with the SSL provider and the person who setup the certificate on your server.

    Here are some solutions that may help you.
    https://security.stackexchange.com/questions/176596/openssl-unable-to-get-local-issuer-certificate-even-when-passing-in-the-certif
    https://confluence.atlassian.com/bitbucketserverkb/ssl-certificate-problem-unable-to-get-local-issuer-certificate-816521128.html
    https://stackoverflow.com/questions/24372942/ssl-error-unable-to-get-local-issuer-certificate

    Thanks,
    Kiran

    in reply to: Custom repeats with different time bug #462841

    Kiran
    Moderator
    Post count: 7069

    Hello Scott,

    Please provide site admin credentials to look into your site, i can’t replicate similar issue on my test site.
    Please mention in which timezone you are.

    Thanks,
    Kiran

    in reply to: Problem with 404 and permalinks #462722

    Kiran
    Moderator
    Post count: 7069

    Thanks for letting us know 🙂

    in reply to: Events map #462716

    Kiran
    Moderator
    Post count: 7069
    This reply has been marked as private.
    in reply to: Problem with 404 and permalinks #462714

    Kiran
    Moderator
    Post count: 7069

    Hello Marc,

    The issue has been fixed.

    I have also applied that solution to you live site. Now the listing with translated post type slug is working fine.

    Please check on both sites(live & test) and let us know.

    Thanks,
    Kiran


    Kiran
    Moderator
    Post count: 7069
    This reply has been marked as private.
    in reply to: Backend and Front-end Image Upload not working #462693

    Kiran
    Moderator
    Post count: 7069

    Hello David,

    Please provide FTP credentials to look into more.

    Kiran

    in reply to: Upgrade to GDv2 #462691

    Kiran
    Moderator
    Post count: 7069

    Hello,

    Another issue is, when you go to Add listing, it opens the login page, which is fine, but there is no Registration link for new users. It used to show both – login and registration. Please let me know how this is going to be fixed.

    This has been fixed already and it will be in next release. From next release it will show login & register link instead of form.

    To fix search form overlapping the map, add following style snippet.

    
    
    .sd-location.geodir_advance_search.gd-google-maps .featured-area.type-location > .header-wrap {
    	z-index: 81;
    }

    Also, the login/My account widget is not working. As you will see on the home page, I have added the My account widget in the right sidebar. When you enter your credentials and click the login button, it opens the login page where you have to again enter your credentials. This should not be happening. Please advise.

    Another issue…the Register page from BuddyPress has a sidebar that should not be there. I changed the page template to Full page, and disabled the sidebar from Appearance>Customize>Body>Sidebar, but the sidebar is still there. What am I missing?

    Please provide FTP credentials to look into above two issues.

    Kiran

    in reply to: change search order #462672

    Kiran
    Moderator
    Post count: 7069

    Hello Oscar,

    We are sorting searched results based on priority rank. It calculates rank by sum of title match, featured, exact title, description match etc. See https://github.com/GeoDirectory/geodirectory/blob/master/geodirectory-functions/listing_filters.php#L476 in function geodir_posts_orderby()

    Matching & calculation for fields here: https://github.com/GeoDirectory/geodirectory/blob/master/geodirectory-functions/listing_filters.php#L290 in function geodir_posts_fields()

    You can use hooks to achieve that you are asking.

    Thanks,
    Kiran

    in reply to: Price package problem #462669

    Kiran
    Moderator
    Post count: 7069

    Hello Kerrin,

    This could be PHP session issue, here is similar issue resolved in part https://wpgeodirectory.com/support/topic/listings-disappear-3/#post-448398

    Please add following lines in wp-config.php file in your WordPress root directory. If adding these lines fix the issue then it is sure that problem due to PHP session not supported. To fix session ask your server admin to enable PHP session support.

    
    
    /* PHP SESSION TEMPORARY FIX */
    if ( !defined( 'GEODIR_USE_PHP_SESSIONS' ) ) {
       define( 'GEODIR_USE_PHP_SESSIONS', false );
    }
    if ( !defined( 'WPINV_USE_PHP_SESSIONS' ) ) {
       define( 'WPINV_USE_PHP_SESSIONS', false );
    }
    /* PHP SESSION TEMPORARY FIX */

    If this not resolves issue then provides us FTP credentials to look into more.

    Thanks,
    Kiran

Viewing 15 posts - 3,211 through 3,225 (of 6,022 total)
20% Discount Offer
Hurry! Get your 20% discount before it expires. Get 20% Discount