Forum Replies Created
-
AuthorPosts
-
Barry
MemberHi Lori,
It’s probably better not to add that code to Events Calendar PRO but rather to set it up as a custom stylesheet. This is very much the domain of custom development, but why not check out the following resource from the WordPress documentation and see if that gets you on track:
http://codex.wordpress.org/Function_Reference/wp_enqueue_script
Thanks!
Barry
MemberHi mbarnes!
I’m not sure if code is missing from your post or you simply wanted to provide the CSS selectors only, but as a general rule it’s best to share code using a service like Pastebin or Gist (as the forum can and does drop code when it’s pasted into a post directly).
We wouldn’t recommend editing core plugin files directly, even CSS files. Please take a look at the Themer’s Guide for an overview of how to do things here.
Hope that helps!
Barry
MemberHi!
You would need to familiarize yourself with the process of customizing both our templates (see the themer’s guide) and those of WooCommerce first of all. Basically though you can obtain the ID of an event related to a particular product with:
$event_id = get_post_meta($product->id, '_tribe_wooticket_for_event', true);Where you already have a reference to the current WooCommerce product object, of course. You can then load the event post itself with:
$events = tribe_get_events(array('p' => $event_id));
$event = $events[0]; // safety check advisable!And access items like the event title with:
$title = $event->post_title;Hope that helps!
October 7, 2013 at 2:45 pm in reply to: Category Feed Lost After Viewing Single Event & Going Back To Category #69720Barry
MemberHi! Looks like a bug. It may be we have to wait until an upcoming maintenance release to get this one resolved but if we can provide some sort of workaround in the interim we’ll definitely drop it in here.
Thanks – and apologies for the inconvenience 🙂
Barry
MemberIt could be you/your host are in fact referring to disk space rather than memory (in the sense of RAM) since that is rarely going to be anything like unlimited, whereas disk space may indeed be unlimited to all intents and purposes.
In current PHP releases the memory_limit setting is set to 128M by default, but some hosting providers will reduce this (nor is 128M strictly necessary for most WordPress installations, but if it is less than 64M that could pose a problem).
Hope that helps!
Barry
MemberI definitely agree and will add that detail to the bug report just to ensure it is quashed. Thanks!
October 7, 2013 at 1:28 pm in reply to: Events Calendar is not up-to-date w/ event cal addon + no reocurring event optn #69701Barry
MemberExcellent!
October 7, 2013 at 1:27 pm in reply to: permalink error and calendar map view // recurring event #69700Barry
MemberI can appreciate your frustration – but for problems with specific add-ons like Community Events it is best to post on the relevant forum (the Community Events forum can be found here and our expert for that add-on can then help you).
Similarly, if the 404 issue is quite separate from the map view problem please do post a new thread to avoid confusion.
Regarding that original issue – we’ve got this on the radar and will get a fix out as soon as we can (in one of our next few maintenance releases, hopefully). There’s not too much more we can do about that one right at this moment, I’m afraid, and so I’ll close this thread – but please do create new threads for your other issues 🙂
Thanks!
Barry
MemberOK, so what are you actually experiencing – no change at all or is some other problem occurring? Without being able to see the problem it can as I’m sure you appreciate be hard to troubleshoot.
Barry
MemberOK, so it looks like you’re currently using the Default Events Template – I’m not sure what you mean when you say it, “Overrides every page of the standard wordpress page setting system.” Can you clarify? (Not being familiar with your theme it can be hard to rapidly pick out the problems that you’ve already identified.)
For the second issue, could I ask you to post that on the Community Events forum? That way our expert for that particular add-on can assist.
Thanks!
Barry
MemberHi felixagosto,
Do you happen to have the include events in main blog loop setting activated and does deactivating this solve the problem?
Thanks!
Barry
MemberHi Lisa, can you try adding this snippet to your theme’s functions.php file? Thanks – and let me know if that doesn’t work for you 🙂
October 4, 2013 at 4:16 pm in reply to: Events Calendar is not up-to-date w/ event cal addon + no reocurring event optn #69427Barry
MemberHi Bart,
Sorry for the disruption and inconvenience, first of all.
The Events Calendar: v3.0.1
Can you try updating The Events Calendar to 3.1? It also needs to be updated for Events Calendar PRO 3.1 to run successfully.
Thanks!
Barry
MemberI do appreciate your point – and we definitely want you to feel confident in using our plugins. We are aware of a couple of issues that cropped up in 3.1 already and will hopefully nail them ASAP – can you describe what you’re experiencing, though? Then I can see if it’s already in the radar.
Your support genuinely is appreciated as is the fact that you take the time to relay your concerns, we’re absolutely listening and want to help as best we can 🙂
Barry
MemberExcellent, glad we could help 🙂
-
AuthorPosts
