tyCoon Media
Forum Replies Created
-
Resolved over email
Hi Khan, I have the update ready and I’m trying to release it as soon possible but there is an outage at CircleCI preventing me from deploying it.
Hopefully it will be available later today!
Hi Khan!
Thanks for reporting, I’m aware of the issue and rolling out an updated version later today (2.2.28) which should fix this problem!
– Koen
Forum: Plugins
In reply to: [Post to Google My Business (Google Business Profile)] Video TutorialsHi there, I’m currently working on expanding the knowledge base with tutorials and videos.
Until then, here’s a couple of tutorials for the premium features:
https://tycoonmedia.net/blog/how-to-post-to-multiple-google-my-business-locations-at-once/
https://tycoonmedia.net/blog/how-to-schedule-google-my-business-posts/If you need help with something specific, let me know!
Good, I’m assuming I can mark this as resolved then.
Forum: Plugins
In reply to: [Polylang] Domain mapping not working with multisiteNope, we’re on Apache. You could “fix” the CORS issue by just adding a wildcard to allow all domains to access those resources. But that’s not very good/safe practice in my view.
Or just manually add the domains in question to the CORS whitelist. But that wouldn’t be very dynamic. I think the best way would be to automatically whitelist newly added aliases somehow, but we haven’t come that far yet.
Forum: Plugins
In reply to: [Polylang] Domain mapping not working with multisiteHi @appscaptain
Yes, we did get it to work, using the Mercator domain mapping plugin: https://github.com/humanmade/Mercator
We did however run into Access-Control-Allow-Origin issues with Javascript, font files etc.
Forum: Plugins
In reply to: [Pronamic Domain Mapping] www. redirects to main siteApparently it took a while for the DNS to work, so navigating to the www. subdomain now redirects to the domain page with www. in front of it.
So now I have two domain pages, one to serve https://www.mydomain.com and one to serve mydomain.com.
Of course I could duplicate the original page for both variants but this is not preferred
Forum: Plugins
In reply to: [Disqus Conditional Load] Can’t save settingsHi Joel,
Any updates regarding this issue? I installed the plugin on two more websites, one of which also has the same problem.
Forum: Plugins
In reply to: [Disqus Conditional Load] Can’t save settingsThis time it did not, but most of the time #adv is appended to the url.
Forum: Plugins
In reply to: [Restrict Author Posting] Conflicting with new user password generatorThanks for the quick fix!
Forum: Reviews
In reply to: [CBX Custom Taxonomy Filter] Doesnt actually filterThanks for the response! Hope you can get it fixed soon. Will revise my rating!
Forum: Fixing WordPress
In reply to: Archive page for custom post type and taxonomyManaged to “fix” this with a plugin called Custom Post Type Permalinks
Edit:
actually it doesnt work, it now shows every item in that same taxonomy, no matter what custom post type is set in the url.
Forum: Plugins
In reply to: [Polylang] 404's when translations are disabled on custom post typeFixed! Great work, thanks for the fast support.
Forum: Plugins
In reply to: [Polylang] 404's when translations are disabled on custom post typeIt does however create a new error, im not sure if it is related. The whole author page is filled with errors like this one:
Notice: Undefined index: post_type in /var/www/vhosts/<sitefolder>/httpdocs/<sitefolder>/wp-content/plugins/polylang/include/model.php on line 817 Notice: Undefined index: post_type in /var/www/vhosts/<sitefolder>/httpdocs/<sitefolder>/wp-content/plugins/polylang/include/model.php on line 818
My author page loops through a list of items (of the untranslated post type) connected to a certain author via ACF.
This is my query:
$args = array( 'numberposts' => -1, 'post_type' => 'agencies', 'meta_key' => 'export_manager', 'meta_value' => $author->ID );
The page will probably work properly when wordpress debug mode is disabled, but the notice should be caught in the code i think.