Forum Replies Created
-
AuthorPosts
-
Cliff
Member- You could hook into the tribe_events_community_form_before_template action to display something custom below the top links: http://cl.ly/0l032x3F0j3e
- You’d need custom coding to get custom widgets to appear just on the Community Events page.
If you need some coding help, you may want to ask your developer or reference our list of known customizers.
Cliff
MemberHolly, your example.com/events/ link is a WordPress archive view of the tribe_events custom post type.
You’ll need to check with the membership plugin’s author or your own developer to see if it can control access to custom post type archive pages.
Cliff
MemberThis is the source code for that function: https://github.com/moderntribe/the-events-calendar/blob/4.1.1.1/src/functions/template-tags/link.php#L41
Which basically ends up running get_event_link(): https://github.com/moderntribe/the-events-calendar/blob/4.1.1.1/src/Tribe/Main.php#L4083
Which already outputs the
a hrefHTMLI hope this clears things up for you for however you’re wanting to use these functions for your customization. Maybe you should just use get_event_link() directly. I can’t know for sure without writing the code for you.
Cliff
MemberDo you have any caching in place? If clearing your site cache doesn’t work for you, please open your own new support ticket.
Thanks.
Cliff
MemberPlease share your System Information. That will give me a lot of extra information to help diagnose the problem.
April 14, 2016 at 9:37 am in reply to: I want to display event calendar (Calendar View) in BuddyPress Profile #1102542Cliff
MemberSorry, but I’m not sure I understand your question.
Cliff
MemberHi Hani.
Here’s some custom CSS to simply hide the button to avoid users clicking it:
body.post-type-archive-tribe_events .tribe-events-ical { display: none; }There are more thorough solutions available via PHP, but you can easily add custom CSS code via your child theme’s style.css file or via a plugin like Simple Custom CSS or, my favorite, Jetpack. Jetpack supports regular CSS and the LESS and Sass pre-processors.
If you’re not a CSS expert, Jetpack’s Custom Design reference may prove helpful.
Please let me know how it goes for you.
Cliff
MemberHi Nora.
Please reference this plugin to easily redirect to a different page upon adding a new event.
As for the custom HTML being added, you could add this CSS to hide that content on the Community Events form’s page:
body.tribe_community_edit .tribe-events-before-html { display: none; }As for the sidebar/widgets question, here’s a quick way to remove the sidebar via CSS (not the ideal way to do it but doesn’t require any PHP customizations):
body.tribe_community_edit .eltdf-column1 { width: 100%; } body.tribe_community_edit .eltdf-column2 { display: none; }You can add custom CSS code via your child theme’s style.css file or via a plugin like Simple Custom CSS or, my favorite, Jetpack. Jetpack supports regular CSS and the LESS and Sass pre-processors.
If you’re not a CSS expert, Jetpack’s Custom Design reference may prove helpful.
Please let me know how it goes for you.
April 14, 2016 at 7:08 am in reply to: I want to display event calendar (Calendar View) in BuddyPress Profile #1102421Cliff
MemberThat’s funny. Kudos. I hope it’s succeeding for you!
If I’m understanding you correctly, it’d be pretty sweet if we had a shortcode to render each full calendar view… well, that’s on the “someday” list but it will eventually happen.
Until then… I’m afraid you’d be on your own for a customization like this.
Maybe you could use one of our plugin’s existing widgets or shortcodes and add custom styling to make it larger, possibly even adding custom coding to display more information in it.
I hope this helps in some way.
Cliff
MemberHi Riccardo.
This is definitely something that falls into the “custom code” area, which we don’t necessarily support per our Scope of Support / Terms.
That being said, I might be able to help you along a bit:
- tribe_is_event()
- tribe_get_cost(), tribe_get_formatted_cost()
- tribe_get_minimum_cost(), tribe_get_maximum_cost()
If you need some coding help, you may want to ask your developer or reference our list of known customizers.
Cliff
MemberNo problem at all. Have a great one!
Cliff
MemberEmily, if there is, it’d be a 3rd party implementation, not something we provide.
I searched and came across https://wordpress.org/plugins/reveal-ids-for-wp-admin-25/ and https://premium.wpmudev.org/blog/display-wordpress-post-page-ids/
I hope you get things sorted out.
April 14, 2016 at 6:09 am in reply to: how can I remove this sentence: how can I remove this sentence: #1102385Cliff
MemberPatrick, I’ll copy and paste that link’s response for you here:
I didn’t see a filter to remove that via PHP so here’s some CSS to hide it so users shouldn’t see:
body.single-tribe_events tr.tribe-tickets-attendees-list-optout { display: none; }You can add custom CSS code via your child theme’s style.css file or via a plugin like Simple Custom CSS or, my favorite, Jetpack. Jetpack supports regular CSS and the LESS and Sass pre-processors.
If you’re not a CSS expert, Jetpack’s Custom Design reference may prove helpful.
Please let me know how it goes for you.
Cliff
MemberHi. Sorry you’re experiencing this.
Could you please make sure all your Modern Tribe plugins (and WordPress core) are at their latest versions?
Once you verify you’re on the latest versions, please test to see if the issue is still happening for you.
If it is, please follow our Testing for Conflicts Guide and see if that helps narrow down the cause of this.
If it doesn’t, please share your System Information.
Let us know what you find out.
Thanks.
Cliff
MemberPatrick, please check out the paragraph below the CSS code in my prior reply.
-
AuthorPosts
