Forum Replies Created
-
AuthorPosts
-
Brook
ParticipantHowdy,
Since this thread has gone for a while without any response, I am going to archive it. If you are still in need of assistance please open a new thread, we will be happy to help. Thanks!
– Brook
September 24, 2014 at 10:29 pm in reply to: Seems a default has taken over every event in Pro Calendar? Or something… #765272Brook
ParticipantHowdy,
Since this thread has gone for a while without any response, I am going to archive it. If you are still in need of assistance please open a new thread, we will be happy to help. Thanks!
– Brook
Brook
ParticipantAhh. That’s odd. At any rate, if you use the code from my second comment I think it is both more applicable and should restore your data. Just delete the code from my first one. Make sense?
– Brook
September 23, 2014 at 12:47 pm in reply to: Filterbar not working when using WordPress rewrite rules #762235Brook
ParticipantHowdy Kyle,
I think you are on the right track there. What is not working on /clubland/ page that is working on /calendar/?At the moment they appear equally broken to me.
Once you get the site integrated and working, at least the bugs I found should go away. Do you need help with that? I am noticing the following error in the browser console when trying to open the filters “TypeError: jQuery(…).innerHTML is not a function – calendar:3812”. That is probably a good place to start.
I am not sure we are on the same page here. In short, I think your code is fine and not the source of your problems. But, I could be wrong there. Would you mind elaborating a bit? Thanks!
– Brook
Brook
ParticipantHowdy gotomyrtlebeach,
There is no feature for events that currently does this. đ We are working one though! In the mean time, I recommend creating two separate recurring events for Dec 25th. You can link them to each other in the event description.
Does that answer your question? Let meknow if I can be of further help. If not, mind marking this resolved? Thanks!
– Brook
Brook
ParticipantHowdy minemindmedia,
That is no fun! We are all freelancer here at Tribe, we know what it is like to have an imminent client deadline.
Just want to confirm, are you using the latest version of our plugin? We fixed a bug like this almost 8 months ago.
If you are running the latest version, can you test something out? Go to WP Admin > Events > Settings > General, and change “Number of events to show per page” to a smaller number like 3. Does that fix it?
– Brook
Brook
ParticipantThis reply is private.
Brook
ParticipantHowdy smazzoni,
Good call on checking your SQL limits. I would have wondered that too. Sometimes this happens because of our APM filters at the top. Here are some common troubleshooting steps for that problem. In particular #3 might fix things for you.
Have a look at this screenshot of my Events Admin area. I have highlighted 4 things.
- When you click Screen Options in the upper right of the admin area, you will see this box. Is this set to a high enough value, something like 20 or more events?
- You can ignore this, you already answered that question.
- What happens when you click the Clear button. Does that fix the problem?
- Is this box empty? Can you try typing in a keyword that should appear in one of your events. Do they show up?
If that does not work, I want to clarify something. Are the events showing up on the front end and not the back end, or vice versa?
Please let me know if you have any further questions. If not, mind answering the above? Thanks!
– Brook
Brook
ParticipantFollowing up on my last post, I forgot that will disable the recurring info sitewide, even on the event details pages. If you simply want to hide it from the widget alone, some CSS will be more appropriate. Add this to one of your (child) theme’s CSS files:
. tribe-events-adv-list-widget .recurringinfo{ display:none; }– Brook
Brook
ParticipantHowdy knausevino,
That should be very easy to accomplish. Paste the following at the top of your theme’s functions.php file, underneath the first line “<?php”. If your theme does not have a functions.php file, go to your theme folder, create a new text document file called “functions.php”, and paste this text in the first line of the file “<?php”. On line 2 or 3, paste this:
TribeEventsPro::instance()->disable_recurring_info_tooltip();
Does that make sense? Will that work for you? Please let me know. Cheers!– Brook
Brook
ParticipantI will certainly do my best! Fair warning, it is never a bad idea to make backups if you are making changes, particularly if it is your first time.
The best way to do this is to create a child theme. You will want to add your own custom CSS file in that child theme, as discussed in brief at the bottom of that link. Putting this bit of code in that custom CSS stylesheet might be all you will need to align the image to the right:
.tribe-events-event-image { float: right; }You will want to test it pretty thoroughly, preferably in a variety of common browsers, just to make sure it is working properly. If not, that is where hire a developer truly becomes necessary. There are so many intricacies that sometimes you just need a pro to handle that part of it. You can easily undo this change by switching from the child theme back to the parent one, in case it does not work.
There you go! That might be all the *code* you need, in which case awesome! Let me know if there is anything else. Thanks funniteart.
– Brook
Brook
ParticipantHowdy funniteart,
It is easy to see why you would want to align those images on that theme, especially considering the small size of your featured image.
Unfortunately there really is not an easier way to make that change. It is going to require a small bit of coding. Wp has a lot of tools to make this as easy as possible, but there is still a fair initial learning curve in the way. Most themes support the CSS class align-left and align-right. In which cast, it might be as simple as adding that in the proper place. Buuuut there are a million variables that can get in the way. For example, it might not look good in mobile, or IE8, or when you add a certain widget, etc. There are so many things to watch out for, that is why it is usually necessary to hire a dev for a anything but a run of the mill stock looking site.
We do keep a list of knowledgeable developers on hand. Some of them even specifically cater to smaller tasks like this one. If you would like a copy of the list, email pro @ this website url.
Does that make sense and answer your question? Anything else I can help you with. Please let me know. Cheers!
– Brook
September 23, 2014 at 9:04 am in reply to: Changing Slug on Individual Events Gives 404 Instead of Redirecting #761858Brook
ParticipantHowdy Eric,
That is odd. Our plugin uses standard WordPress functionality there, that is something WP does for all post types. I just confirmed that it is working fine for me running the latest version of our plugin.
If you are the sort of gent who does not mind diving into the database, try running something like this query
SELECT * FROM wp_postmeta WHERE meta_key LIKE '%_wp_old_slug%'. Are you seeing your old slugs in there? If so, WP should be redirecting. If not, something is interfering with the plugin.Eitherway I think the best first step here is to do some conflict testing. Since it is working for me and not for you, there is obviously a difference between our two setups. Let us try and isolate what that difference is so we can troubleshoot further. Would it be possible for you to test if this is one of the customizations to your site that might be conflicting. This guide will help you test if something is conflicting. If something is, it then walks you through identifying what is conflicting. Once we know that we can work towards a fix.
Also, you might give our 404 tutorial a look through. Perhaps that will help you with your other issues?
Does that make sense? Anything I can clarify or help with along the way? Please let me know. Cheers!
– Brook
September 23, 2014 at 8:50 am in reply to: Making my own Venue list page – how to display venue data #761830Brook
ParticipantHowdy multiflora,
It sounds like you might need to pass in the post ID to these functions. For instance check out the docs for tribe_show_google_map_link(). As you can see it accepts a postid as the parameter. Pass that in and it should echo the result.
It could also be a bug in your code. It might not hurt to give it a second go over. For example, on the first line of the code you pasted I noticed you will get unexpected results:
<h3><a>â title=â<?php printf( esc_attr__( âPermalink to %sâ, âtwentytenâ ), the_title_attribute( âecho=0Ⲡ) ); ?>â rel=âbookmarkâ><?php the_title(); ?></a></h3>Notice that there are two closing braces for the opening h3 tag.
What you are trying to accomplish should be super doable with our API though! Let me know if I can answer any more questions or offer some further guidance on how to implement our API. Thanks!
– Brook
Brook
ParticipantHowdy phatwp,
Good question. This snippet allow you to change the <title> for any page. You can delete and of the (else)if blocks that you do not want to change. Paste it at the top of your theme’s functions.php file, underneath the first line “<?php”. If your theme does not have a functions.php file, go to your theme folder, create a new text document file called “functions.php”, and paste this text in the first line of the file “<?php”. On line 2 or 3, paste that snippet.
Does that make sense? Will that work for you? Please let me know. Cheers!
– Brook
-
AuthorPosts
