Taher Atashbar
Forum Replies Created
-
Forum: Plugins
In reply to: [Easy Listings Map] Shortcode output positionHello,
Thank you for installing and using Easy Listings Map and your feedback.
I fixed this issue in dev version of the plugin, please download it from This link and let me know could it fixed issue.
Also if you saw any other issues please let me know about them.
Regards.
Forum: Plugins
In reply to: [Easy Listings Map] Map shortcode not working on pagesHi,
Thank you so much for rating it.
Best Regards.
Forum: Plugins
In reply to: [Easy Listings Map] Map shortcode not working on pagesThank you for testing and your feedbacks.
If this plugin helped you please rate it.
Best Regards.
Forum: Plugins
In reply to: [Easy Listings Map] Map shortcode not working on pagesHello,
Please download development version of the plugin from this link
I hope that it can fix issue of not loading 2 properties in all listings map.
Also please let me know about this issue after using dev version of the plugin.
Regards.
Forum: Plugins
In reply to: [Easy Listings Map] Map shortcode not working on pagesPlease provide me coordinates of listings that doesn’t shown in the all listings shortcode. Those 2 listings that doesn’t appears in all listings shortcode, after I will check it.
Regards.
Forum: Plugins
In reply to: [Easy Listings Map] Map shortcode not working on pagesPlease give coordinates of rental listings that doesn’t shown in the all listings shortcode.
Regards.
Forum: Plugins
In reply to: [Easy Listings Map] Map shortcode not working on pagesNew version of the plugin released that makes maps responsive and fixes title issue in the shortcode.
First check your property coordinates and sure that it’s coordinates right because Easy Listings Map uses coordinates for making map loads as fast as possible. If you enter your property coordinates rights map will show them in right position. I am sure that your property coordinates is not right.
Unfortunately Easy Property Listings, address section of the property is not as good as possible and you can not change coordinates of the property by changing marker position, so you can use Google Maps by clicking on the view larger map and finding right coordinate of the property and using right coordinates. For more information please read How plugin works
Regards.
Forum: Plugins
In reply to: [Easy Listings Map] Map shortcode not working on pagesIf you want to adjust zoom in shortcode, first disable auto zoom feature of it and choose desired zoom from select box as explained in Easy Listings Map Shortcodes
Regards.
Forum: Plugins
In reply to: [Easy Listings Map] Map shortcode not working on pagesHello Bam Bam,
Thank you for your response,
I found this issue is related to title of the shortcode so for quick fix you can use shortcode without any title for example:
changing below code:
[elm_google_maps post_type="property,rental" status="current,sold,leased" map_types="ROADMAP" limit="-1" map_style_height="500" map_style_width="600" auto_zoom="0" zoom="3" cluster_size="-1" order="DESC" default_latitude="39.911607" default_longitude="-100.853613"]Properties[/elm_google_maps]
To
[elm_google_maps post_type="property,rental" status="current,sold,leased" map_types="ROADMAP" limit="-1" map_style_height="500" map_style_width="600" auto_zoom="0" zoom="3" cluster_size="-1" order="DESC" default_latitude="39.911607" default_longitude="-100.853613"][/elm_google_maps]
As you can see I removed Properties title from shortcode, And this will fix this issue.I will fix this issue as soon as possible in the next release.
Regards.
Forum: Plugins
In reply to: [Easy Listings Map] Map shortcode not working on pagesHi,
Thank you for your feedback and installing Easy Listing Map and excuse for delay in support because WordPress didn’t notified me in email about support ticket!, maybe WordPress doesn’t notifies with email!
1: Did you read about how to adding Easy Listings Map shortcode to pages from Easy Listings Map Shortcode if yes please give me your page url for checking it. Adding your shortcode code here can help.
2: About responsive I should say that at this version map is not responsive so I will consider it in next release. But you can add some css to making it responsive, I will let you know when I made it responsive.
Best Regards.
Forum: Plugins
In reply to: [Simple Pagination] URL Problem : #038; replaces & and breaks the navigationA solution for this issue that fixed my problem with pagination is:
$big = 999999999; // need an unlikely integer $search_for = array( $big, '#038;' ); $replace_with = array( '%#%', '&' ); echo paginate_links( array( 'base' => str_replace( $search_for, $replace_with, esc_url( get_pagenum_link( $big ) ) ), 'format' => '?paged=%#%', 'current' => max( 1, get_query_var('paged') ), 'total' => $the_query->max_num_pages ) );