Kiran

Forum Replies Created

Viewing 15 posts - 1,786 through 1,800 (of 6,022 total)
  • Author
    Posts
  • in reply to: Facebook Social Importer doesn't work #498166

    Kiran
    Moderator
    Post count: 7069
    This reply has been marked as private.
    in reply to: Near not working #498159

    Kiran
    Moderator
    Post count: 7069
    This reply has been marked as private.

    Kiran
    Moderator
    Post count: 7069

    Hello Eric,

    That CSS is added via theme from Divi > Theme Options > Theme Options > Custom CSS.

    I have update css that causing issue. Please try now after clearing your browser cache.

    Regards,
    Kiran

    in reply to: Search Issue #498142

    Kiran
    Moderator
    Post count: 7069

    Hello There,

    Admin credentials has not full admin access so not able to check some settings.

    I suspects that theme is using old version(GDv1) of search template(listing-filter-form.php).
    Please check file /wp-content/YOUR-THEME/geodirectory/listing-filter-form.php and compare it to recent one https://github.com/AyeCode/geodirectory/blob/master/templates/listing-filter-form.php#L30

    If you found it old then update to recent one or provide FTP credentials so we can fix it for you.

    Regards,
    Kiran

    in reply to: CPT's Redirecting to details pages #498140

    Kiran
    Moderator
    Post count: 7069

    Hello Amy,

    I checked and found that post slug is generated during post creation by WordPress. Using duplicate slug for location & post may trouble for WordPress rewrite redirect. That’s why it redirect to the post whn it finds ‘newquay’ slug.

    We have already tool to fix duplicate slugs within cities, but post slugs are handled by WordPress. So only easy fix to prevent this issue is to update post slug from ‘newquay’ to ‘newquay-1’ or something else.

    Let us know.

    Best Regards,
    Kiran

    in reply to: Category default image upload #498135

    Kiran
    Moderator
    Post count: 7069

    Changes are included in core plugin, so don’t worry about future updates.

    In case you need patch: https://github.com/AyeCode/geodirectory/pull/861/commits/460363ef0c1aabb3195d09e2ae9532fca4f4fd22

    Kiran

    in reply to: Error when starting GeoDirectory WebSite #498131

    Kiran
    Moderator
    Post count: 7069

    Hello Georg,

    The file /wp-content/plugins/geodirectory/vendor/ayecode/wp-country-database/wp-country-database.php was missing in plugin.

    I have uploaded it and now error disappeared.

    Kiran

    in reply to: Category default image upload #498130

    Kiran
    Moderator
    Post count: 7069

    Hi Vivek,

    I have applied patch on your site to show default category image for post.
    Here is are import image/icon for category is working.
    = New Category
    – If full image path is used then it will download/upload that image via image uploader and set as a category image/icon(if image is valid then no require to upload image at the end of import).
    – If relative path or image name it requires to upload image at the end of import.

    = Edit Category
    – It compares basename of existing category image/icon from database and from csv. If basename are same then it will not update/upload image.
    – If full image path is used then it will download/upload that image via image uploader and set as a category image/icon(if image is valid then no require to upload image at the end of import).
    – If relative path or image name it requires to upload image at the end of import.

    Please check and let us know.

    Kiran

    in reply to: Category default image upload #497963

    Kiran
    Moderator
    Post count: 7069
    This reply has been marked as private.
    in reply to: BB Issue #497956

    Kiran
    Moderator
    Post count: 7069
    This reply has been marked as private.
    in reply to: Geodirectory 2 – add map controls on right #497945

    Kiran
    Moderator
    Post count: 7069

    Hello Tilen,

    Try following snippet to filter map controls for GDv2 maps.

    
    
    /*
     * Position map controls.
     */
    function gd_snippet_190716_map_params( $params, $map_args ) {
    	$map_type = $params['map_type'];
    	$map_canvas = $params['map_canvas'];
    
    	//if ( $map_canvas == 'gd_map_canvas_directory' ) {
    		/* Available positions: TOP, TOP_LEFT, TOP_RIGHT, BOTTOM, BOTTOM_LEFT, BOTTOM_RIGHT, LEFT, RIGHT  */
    		$params['zoomControlOptions']['position']          = 'RIGHT_CENTER'; // Zoom control
    		$params['mapTypeControlOptions']['position']       = 'RIGHT_BOTTOM'; // Map Type control
    		$params['streetViewControlOptions']['position']    = 'RIGHT_CENTER'; // Street view control
    		$params['navigationControlOptions']['position']    = 'RIGHT_BOTTOM'; // Navigation control
    	//}
    
    	return $params;
    }
    add_filter( 'geodir_map_params', 'gd_snippet_190716_map_params', 20, 2 );

    Thanks,
    Kiran

    in reply to: Change to Review/comment Header #497932

    Kiran
    Moderator
    Post count: 7069

    Hello Neil,

    1. add url link to avatar

    Avatar is rendered via WordPress function. Which link url you want to add to avatar?

    2. Add a line stating which language the review was written in

    Not possible without code customization.

    3. Add date when place was visited

    Clarify with more details where you want to add date.

    4. Add date when the review was written

    Try following snippet to display date.

    
    
    /**
     * Show review date.
     */
    function gd_snippet_190716_review_time() {
    	?>
    <script type="text/javascript">/* <![CDATA[ */
        jQuery(function($){
    		$('span.geodir-review-time').each(function(){
    			$title = $(this).prop('title');
    			$date = $(this).text();
    			if ($title && $date) {
    				$(this).prop('title', $date);
    				$(this).text($title);
    			}
    		});
    	});
    /* ]]> */</script>
    	<?php
    }
    add_action( 'wp_head', 'gd_snippet_190716_review_time' );

    In Geodirectory V1 I achieved this by editing the comments_functions.php file which I suppose I could also do in Version 2
    But is there a better way of achieving this?

    You can achieve by doing customization with the use of hooks but don’t modify any core file, otherwise it will break functionality.

    Regards,
    Kiran

    in reply to: I'm using Open Street Maps & Disable set address #497917

    Kiran
    Moderator
    Post count: 7069

    Hello Spencer,

    This has been fixed and it will be available in next release of GeoDirectory & Location Manager plugins.

    Regards,
    Kiran

    in reply to: Widgets still shows listing image after deleting it. #497889

    Kiran
    Moderator
    Post count: 7069

    Please try now after clearing your browser cache.

    Kiran

    in reply to: Custom Sidebars #497886

    Kiran
    Moderator
    Post count: 7069

    Hi Neil,

    Please check and let u know.

    Kiran

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