Naveen Giri
Forum Replies Created
-
AuthorPosts
-
March 2, 2020 at 3:15 pm in reply to: Archive Item Template – using image for background image in CSS #533088
Hi Simon,
Please use following code snippet. It will load featured image of listing as backgroud image of mentioned container.
add_action( 'wp_head', function () { global $gd_post; $upload_dir = wp_upload_dir(); $image_raw = isset($gd_post->featured_image) && !empty($gd_post->featured_image) ? $gd_post->featured_image : ''; ?> <style> .int-div-prac { padding:10px 5px; background-image: url('<?php echo $upload_dir["baseurl"] . $image_raw; ?>'); background-repeat: none; background-size: cover; } </style> <?php } );
Thanks
March 2, 2020 at 2:36 pm in reply to: Screen keyboard on iPhone 7 prevents working with the calendar #533087Hi Alexander,
Yes, I checked on IOS. Please clear site cache and browser cache before checking it.
Let me know how it goes.
March 2, 2020 at 11:49 am in reply to: Screen keyboard on iPhone 7 prevents working with the calendar #533057This is the fix for IOS device.
https://wpgeodirectory.com/support/topic/screen-keyboard-on-iphone-7-prevents-working-with-the-calendar/#post-531836the screenkeyboard should not open now when you click on datepicker field.
Hi susanb,
We have a hooks for customizing it.
$prepared_args = apply_filters( "rest_{$this->taxonomy}_query", $prepared_args, $request );
You can use it like below. make sure to replace the taxonomy name in filter name.
add_filter( 'rest_gd_placecategory_query', 'rest_gd_placecategory_query_callback', 10, 2 ); function rest_gd_placecategory_query_callback( $prepared_args, $request ){ $prepared_args['orderby'] = 'name'; return $prepared_args; }
Thanks
NaveenMarch 2, 2020 at 11:17 am in reply to: BUSINESS HOUR MODULE : just a small translation that doesn't work #533050Thanks for letting us know.
March 2, 2020 at 10:48 am in reply to: Screen keyboard on iPhone 7 prevents working with the calendar #533047I have made some changes. please try above code now.
March 2, 2020 at 8:27 am in reply to: Screen keyboard on iPhone 7 prevents working with the calendar #533030Hi Alexander,
Please use following code snippet. meanwhile I will add permanent fix for event manager addon next release.
add_action( 'wp_head', function () { ?> <script> jQuery(function() { jQuery( ".hasDatepicker" ).datepicker({ }).attr('readonly','readonly'); }); </script> <?php } );?>
Thanks
February 28, 2020 at 7:25 pm in reply to: I can't come back after seeing map on mobile iphone #532833Hi,
Thanks for confirming.
Its will not be mandatory. you can remove it.
I will update you here, once theme got released.Thanks
February 28, 2020 at 5:26 pm in reply to: I can't come back after seeing map on mobile iphone #532810Hi memorex13,
Please use following css in customiser meanwhile I will update code in theme for next version.
@media only screen and (max-width: 992px) { body.geodir-fixed-archive .sd-container .container .entry-content{ -webkit-overflow-scrolling: inherit; overflow-y: auto; } .sd-mobile-search-controls{ overflow: inherit; } }
Thanks
February 28, 2020 at 4:53 pm in reply to: I suggest you align the text vertically in the search fields #532806Please try this
body .geodir-listing-search.gd-search-bar-style .geodir-loc-bar .clearfix.geodir-loc-bar-in .geodir-search .gd-search-input-wrapper .geodir-search-input-label+input { line-height: 38px; }
Thanks
February 28, 2020 at 2:57 pm in reply to: Prevent links from being inserted in the free text field #532778Hi Andreas,
Please use this as a validation pattern for text field.
([A-z0-9À-ž\s]){2,}
It should fulfill your requirements.
Thanks
February 28, 2020 at 2:35 pm in reply to: I can't come back after seeing map on mobile iphone #532768Hi memorex13,
Sorry I lost this ticket.
I notice the issue on iphone. I am on it.
update you soon today with fix.Thanks for your patience.
February 28, 2020 at 2:18 pm in reply to: Get DEFAULT category URL from place category taxonomy) #532767Thanks for confirming, have a Great day.
February 28, 2020 at 10:07 am in reply to: I suggest you align the text vertically in the search fields #532731Please following css in customizer. meanwhile i will add fix for it.
body .geodir-listing-search.gd-search-bar-style .geodir-loc-bar .clearfix.geodir-loc-bar-in .geodir-search .gd-search-input-wrapper .geodir-search-input-label+input { line-height: 1; }
Thanks
February 28, 2020 at 9:59 am in reply to: Some category names are not vertically aligned on the iPhone 7 #532730ok, we will check them and get back to you there.
-
AuthorPosts