Stiofan O'Connor
Forum Replies Created
-
AuthorPosts
-
Hello,
Thanks for reporting this, i have fixed this and it will be in the next release.
Stiofan
When i disabled the password protected setting i was able to connect my test user account (now disconnected). You will need to disable that to get connected.
Thanks,
Stiofan
This has not been fixed yet, i have given them another nudge now, but their fix keeps being delayed…
Stiofan
This reply has been marked as private.Hi Glenn,
You should be logging into the AyeCode Connect site with your GD details, maybe that is the issue?
Stiofan
April 21, 2020 at 10:37 am in reply to: Elementor Pro – Issues with GD Archive, languages etc #541578There is an issue with the archive item, a fix will be released later today.
Stiofan
Hi Fernando,
We used to use nonces and we had to remove them, we had lots of problems with caching, we don’t control users cache. If you set a nonce then the rest API deals with authentication automatically and if its expired then it will reject it.
The nonce in WP REST API just checks for the cookies, i guess you could manually check the cookies.
Thanks,
Stiofan
Hello,
Nonces there would prevent caching and as we show logged in and logged out users the same results then there is no need for them. Do you have a specific need for this?
Stiofan
Hi Gary,
There is no option for this but u can use this filter to edit the query
geodir_widget_listings_query_argsNot tested but it might look something like this:
add_filter('geodir_widget_listings_query_args','_my_tags_filter',10,2); function _my_tags_filter($query_args, $instance){ if(!empty($query_args['post_type']) && is_singular('post') ){ $tags = array('tag1','tag2','tag3'); $tag_query = array( 'taxonomy' => $query_args['post_type'] . '_tags', 'field' => 'name', 'terms' => $tags ); $query_args['tax_query'] = array( $tag_query ); } return $query_args; }
In the above example, you would need to set the tags yourself, you could split the post title into an array of elements but it might be better to use the post tags?
Stiofan
Hello,
This was an issue from our side, i have fixed this and updated your site, this change will be in the next release.
Thanks,
Stiofan
There were two issues, the normal archive page was again set to a different template and the Elementor archive page was only set to show on the places archive and not on categories or tags (you can also set it for search if u want).
The custom image size does not seem to be working, i think it is related to jetpack.
Thanks,
Stiofan
Hi Berto,
Thanks for spotting, it seems Elementor needs no more than one decimal place so i have adjusted this to meet its requirements, this will be in the next release.
Thanks,
Stiofan
Hi Nick,
The issue is our embed script used Font Awesome 5 and the sites are using Font Awesome 4, in these cases we will fall back to unicode stars. I will release a new ver (2.0.5) of our embeds addon shortly, please update it and it should work better.
Thanks,
Stiofan
April 16, 2020 at 10:55 am in reply to: Elementor integration hide field is blank using list widget? #540574Hello,
Unfortunately Elementor does not have a native way to do this so we have had to create our own workaround.
In the next GD core release, you will be able to set the fallback item to “#hide” which will cause the item to be removed if the dynamic value is empty.
Thanks,
Stiofan
The page to install things is on your website. See image
-
AuthorPosts