filipfek
Forum Replies Created
-
Forum: Plugins
In reply to: [The Events Calendar] “Add to calendar” – placing in another locationI understand, I just need to change the position of the hook – I didn’t think that was responsible for it. This solution works – thank you 🙂
Forum: Plugins
In reply to: [The Events Calendar] “Add to calendar” – placing in another locationHi!
Unfortunately, it just doesn’t work—the button doesn’t appear in the new location.
Forum: Plugins
In reply to: [The Events Calendar] “Add to calendar” – placing in another locationHi!
Yes, I have practically completely overwritten my template for the event page – there is practically nothing left from the default template. I divided the main part of the event into two parts to achieve the content and sidebar effect – I want to add the calendar button in the second column. In my child theme, I have my own single-event.php file, and I would like to manually add the PHP code there, where I need 🙂
Tried something like that:
<?php echo tribe_get_template_part( ‘v2/components/subscribe-links’ ); ?>
but it doesn’t wok 😅Great, thanks for the information, and I’d be grateful if you could post any updates here 🙂 Best regards!
Should it be unchecked or checked? Currently, I have it unchecked.
Hi!
I use Gutenberg and the Neve theme 🙂
Forum: Plugins
In reply to: [Posts Like Dislike] Likes dynamic refreshingHi @regankhadgi
would you be able to suggest what Cache plugin in this context would be best to use? I would be very grateful 🙂
Great, thanks! 🙂
Forum: Plugins
In reply to: [Posts Like Dislike] Likes dynamic refreshingHello Regan!
Thank you very much for your reply. To be honest, I’m currently not using any cache plugin at all.
If you are able to recommend a lightweight, non-bloated, and free cache plugin that would work well in the context of “Post like and dislike,” and which I can easily configure to refresh the like data (and how to do that in the easiest way), I’d be more than happy to test it out 🙂
Thanks again!
FilipForum: Plugins
In reply to: [The Events Calendar] Custom Taxonomy Integration and Calendar FilteringBut I also need to filter all events and all trainings – as if it needs two parameters category 🙂 I can’t use the category and sub-category functions for this, no matter which direction. That’s why I considered a new taxonomy parameter, but it’s quite tedious. Maybe my own additional field but Events Calendar?
Can I create my own custom-field that would work, for example, like the Venue attribute? I.e. that I can open a calendar page for my custom-field (just like a Venue page)? Maybe custom-field setup will be easier than WP taxonomy?
Forum: Plugins
In reply to: [The Events Calendar] Custom Taxonomy Integration and Calendar FilteringHi!
thanks for the suggestion. However, I need a category such as Archiecture, when enabled both events and trainings will be visible. I would not want to divide the category into two.
Forum: Plugins
In reply to: [The Events Calendar] Custom Taxonomy Integration and Calendar FilteringThe easiest way, maybe I could just use a series on it? 🙂
Forum: Plugins
In reply to: [The Events Calendar] Custom Taxonomy Integration and Calendar FilteringThanks!
ok, I understand, perhaps it will be too difficult for me unfortunately…
Maybe I’ll ask it another way and you’ll tell me if I’m able to achieve this, even assuming I buy the Pro version, which I am able to do
I post information about general civil engineering events on my site. I use categories because of the scope, e.g. Achitecture, Construction, etc. I use tags as a link to a software program. However, I have to divide my events into two types – events and trainings. I just wanted to use WP Taxonomy to divide into events and trainings. Am I able to achieve this another way?
That is, as if I needed two category splits. On the one hand I would like to be able to easily display all trainings, on the other hand by selecting a native category such as Architecture I am able to display all events and trainings.
Perhaps, instead of using WP taxonomy, I can create a custom field for Events Calendar? I would like to be able to open the calendar as url /events and /trainings with RSS feed available 🙂
I don’t need a detailed solution, just hints and direction (articles) on how best to do it 🙂
Forum: Plugins
In reply to: [The Events Calendar] Publish a post via APIHi!
I very much appreciate your will to help, but to be honest I gave up, because I lost too much time on it… I just add by API Call custom post type which is tribe_event and I can’t save it, as tribe_event. I have decided that the safest solution is to have everything saved correctly as tribe_events, just manually publishing in WP Admin….
Forum: Plugins
In reply to: [The Events Calendar] Publish a post via APIHi @d0153
thank you for your reply. I understand the idea, however I still can’t figure it out. I replaced the code from wp_update_post to tribe_events, but it is still not saved as Event…. 🙁
FROM
wp_update_post([
'ID' => $post_id,
'post_status' => 'publish'
]);
CHANGED TO
tribe_events()
->where('post_id', $post_id)
->save();