Stiofan O'Connor
Forum Replies Created
-
AuthorPosts
-
You are welcome! 🙂
The way we have it “types: [‘geocode’]” returns the most consistent addresses, in some areas other options miss out region info, this is why we have it this way.
In next release you will be able to use this filter to remove or change it
goedir_lm_autofill_address_types
example
remove (which sets to all)add_filter("goedir_lm_autofill_address_types","__return_empty_string");
or set a specific one
add_filter("goedir_lm_autofill_address_types","_my_lm_address_type"); function _my_lm_address_type($type){ return "types: ['establishment'],"; }
Thanks,
Stiofan
Hi Martin,
Please add this CSS to your customiser CSS:
/* Left align search titles */ .geodir-filter-container .customize_filter-in span{ text-align: left; display: block; } /* Make search filters 5 columns */ .geodir-filter-container .geodir-filter-cat{ width: 20%; }
Thanks,
Stiofan
Hello,
If you don’t have access to all the addons you need then you should downgrade to v1, there is a button there to do that (and re-save permalinks after).
If you don’t need the required plugins there is a way to force it through, but make sure u don’t need them. (its checking for old version numbers stored in the options table)
Stiofan
The vertical tabs is caused by using the “shortcodes” block in the details page template, for some reason the shortcodes block converts line breaks to p tags which breaks a lot of stuff, its stupid i know but its the way they decided to implement it… I have moved your shortcodes to a “custom html” block which works much better.
Thanks,
Stiofan
I forget what this topic was even about? Workaround for what?
Stiofan
This has been fixed and released now, please update GD core to 2.0.0.57 to fix.
Thanks,
Stiofan
May 1, 2019 at 11:12 am in reply to: Waited for Whoops v2, now says License expired despite one more day? #483922Well there is good news and bad news….
It looks like your membership did expire yesterday.
However, Whoop! v2 will be free, it is currently in the wp.org review queue (this can take weeks) and we will be releasing a beta on the forums here later today 🙂You can take a sneak peek at it here: https://wpgeo.directory/whoop/
Thanks,
Stiofan
Again i can see the page is only half loading, if you can either provide the error logs or cpanel access i will fix it.
Thanks,
Stiofan
May 1, 2019 at 10:44 am in reply to: Array( [error] => Sorry, this file type is not permitted for security reasons #483916The importer is not designed to work that way (we are in the process of building a converter, what platform are u migrating from?)
Either you:
1. Manually create he cats in the DB with those exact IDs and then use the importer to update them with the correct info.
2. Import them fresh and then do a search and replace for the now/old ids on the listing category columns.Thanks,
Stiofan
Hello,
This is a strange bug in relation to the recently viewed widget and the post slider, i am working on a fix now and will release a fix shortly.
Thanks,
Stiofan
May 1, 2019 at 9:44 am in reply to: Array( [error] => Sorry, this file type is not permitted for security reasons #483909I see from your CSV that there are already IDs in there, maybe you are importing from another site? To import NEW listings/categories remove the IDs, if you want to update categories in bulk via CSV you would include IDs (from an export from the same site).
Let me know if you have any issues.
Thanks,
Stiofan
April 30, 2019 at 6:23 pm in reply to: Array( [error] => Sorry, this file type is not permitted for security reasons #483769Lets move forward…
As i mentioned there are many different reasons it might be showing so without details we can’t provide a specific solution.
You can simply add the plugins code to your theme functions file or use the plugin “code snippets” to add it.
function wp39550_disable_real_mime_check( $data, $file, $filename, $mimes ) { $wp_filetype = wp_check_filetype( $filename, $mimes ); $ext = $wp_filetype['ext']; $type = $wp_filetype['type']; $proper_filename = $data['proper_filename']; return compact( 'ext', 'type', 'proper_filename' ); } add_filter( 'wp_check_filetype_and_ext', 'wp39550_disable_real_mime_check', 10, 4 );
Thanks,
Stiofan
April 30, 2019 at 5:35 pm in reply to: Array( [error] => Sorry, this file type is not permitted for security reasons #483755This issue has been caused as a result of a WP security change and it could be happening on your site for a number of different reasons (WP version, PHP extensions, Multisite rules, the program used to make the CSV file), none of which are as a result of any of our code, there are several WP bugs as a result of this
https://core.trac.wordpress.org/ticket/45615
https://core.trac.wordpress.org/ticket/45633
(and many many more)Almost every plugin that accepts CSV uploads was affected by this, you will find plugins such as WooCommerce and Easy Digital downloads docs mention how to fix it and many reference that plugin.
At this point from your WP.org review and its multipel changes, i think you might have realised this?
We treat our customers as they treat us, you be nice and we will be nice.
Stiofan
This reply has been marked as private. -
AuthorPosts