Forum Replies Created
-
AuthorPosts
-
George
ParticipantNice! Thanks for confirming Spencer!
Have a good weekend 🙂
George
ParticipantHey Emilie,
This is indeed possible, though it is a customization that is beyond the scope of our support forums. So you will have to take the reins on getting it to look like you want and such, but we did write the following code for you just to help get you a head start 🙂
Add the code in this Gist here to your theme’s functions.php file and it should work nicely → https://gist.github.com/ggwicz/fd141fd53c3645bd0592
PLEASE NOTE: after the next update, you will need to change both instances of ‘TribeEvents’ to ‘Tribe__Events__Events’, like in this version of that Gist here → https://gist.github.com/momnt/40518ee690547b687801
I’m sorry if that’s confusing, but it is required because of some major code improvements in the next update. So please stay on top of this so you don’t break your site!
Here’s how this customization looks on my local testing site → https://cloudup.com/c59PjTJghnS
We cannot offer any more specific code help beyond this, but this should be a great head start on things. You can use CSS to customize the appearance of those links.
Cheers!
George-
This reply was modified 10 years, 7 months ago by
George.
George
ParticipantHey ,
There are a few potential places where odd extra characters like this could come from.
First, have you made any customizations to core code within The Events Calendar, or any Pro add-ons? If so, look there, and look for any stray “K”s that might be in the files where you were editing.
Next, head to your Events Settings page, and look at the Date Format settings (like in this screenshot → https://cloudup.com/c8jCCxdyNeT) – do you notice any “K”s in any inputs here? If so, try removing them and seeing if that helps at all.
Let us know what you find!
GeorgeGeorge
ParticipantHi Ociel,
As you mentioned by your testing, this is a problem coming from your “Smartbox Clean & Elegant” theme, so to fully resolve this issue, you’ll need to contact the theme support team for help with this.
However, one way to get you started to hopefully get things a little better is to try adding the following CSS to the bottom of your theme’s style.css file:
.datepicker-dropdown { background: #fff !important; margin-left: 8% !important; width: auto !important; }Let us know if this helps – although still, to fix this issue your best course of action is to contact your theme provider’s support team.
Thanks!
GeorgeGeorge
ParticipantHey Bianca (and Ross),
At this time, doing something like this would require a lot of custom coding beyond the scope of our forums here. However, we do have a plugin called Ticket User Meta coming out publicly some time in the not-too-distant future – I don’t have a specific release date to share with you, unfortunately.
So basically, at this moment if you need this functionality, then yes, it is indeed possible but would require a lot of custom coding. If you need this urgently and are interested in hiring someone to build this featureset for you, you can email us at [email protected] and we can share a list of freelancers that we recommend.
But if you can wait a few months, then we have an official solution coming for this soon.
Sorry if any of this information is a disappointment – let us know if you have any other questions or concerns!
Cheers,
GeorgeGeorge
ParticipantNo worries Spencer – did the code I shared help you here?
George
ParticipantHey Erika,
Hm, that is quite a nasty functions.php file – there are a few things to be concerned about here.
First of all, not to be too obvious, but are all your customers indeed adding their phone numbers at checkout?
Next – what do you see when you add the code I shared? Does the “Phone:” label get added to the attendees list, and just no actual phone number displays? Or does nothing get displayed altogether?
Finally, for now – there’s a lot going on in your theme and there’s a lot of things that according to best practices really should not be in the functions.php file – so I’m curious if you’d be willing to do a theme test here. Basically, what this would mean is that you temporarily activate a default theme like Twenty Twelve on your site, and then once it’s active, try adding my original code to that theme’s functions.php file – this would be an incredibly helpful test to do, so if you can do it, you definitely should!
Let us know what you think, and if you can do the Theme Test above, let us know what you find!
Thanks for your patience,
GeorgeGeorge
ParticipantHey James!
Sorry for the delay in response here, we normally try to get to replies in less than 24 hours and I made a dumb mistake with my queue management that led to me missing a few tickets – like yours! Sorry about that James.
Now, as for your issues, do you mean that you tried the exact code from this Knowledgebase Article → https://theeventscalendar.com/knowledgebase/changing-the-word-events-to-something-else/?
If so, how did you add this code on your site? If you added it to your theme’s functions.php, can you copy and paste the entire, un-edited file into a Gist at http://github.com and share a link to that Gist here?
Thanks James!
George
ParticipantNice! Best of luck with your project Colin, cheers.
George
ParticipantHey @prebenjensen,
A Gist account is not needed to create a Gist, you can create them anonymously there and it’s indeed recommended to do so.
However, just by reading through the code here, I think the problem is that you need to add all of the woo_ actions to your copy of the Events Calendar files if you’re trying to get WooCommerce sidebars and such to display and function properly.
This is more than just get_sidebar() – there seems to be a lot of other actions there like woo_content_after(),woo_main_before(), etc.
Since this is fundamentally a customization question, I’m afraid your best bet is to contact WooCommerce/WooThemes’ support team and ask for assistance on how to go about doing this. They may have some simple recommendations here that can help, as we’re simply not familiar enough the specifics of the Canvas theme and don’t have the resources to devote to testing this customization manually.
I’m sorry if this is a disappointment Preben.
Let us know what you think and if you have any other separate questions/concerns here.
Thanks,
GeorgeGeorge
ParticipantHey Soosie,
This is technically possible, but is a customization that you’d mostly have to implement on your own.
However, we can definitely help you get started. The first step would be to check out our official Themer’s Guide here → https://theeventscalendar.com/knowledgebase/themers-guide/
Using those principles, make a file in your theme that is a duplicate of the /views/pro/widgets/modules/single-event.php file in your copy of Events Calendar PRO.
Then, add the month name somewhere in that file by making this function call somewhere you’d like:
<?php echo date_i18n( 'M', $postDate ); ?>Here’s an example of how I added that in my test version of this (note the single line of code I added around line 25/26) → https://gist.github.com/momnt/f98317f5ed55a99b3cf7
Once you get the month name added there, use a little bit of custom CSS to make it look how you want on your site. For example, I personally used this CSS:
.list-monthname { color: #fff; display: inline-block; width: 100%; clear: both; padding: 6px 0px; }Here’s how it all looked on my site after making these customizations → https://cloudup.com/crzVydXsXlp
Play around with these ideas, read through that Themer’s Guide, and I’m sure you’ll be able to come up with something nice for your site!
Let us know if this helps,
GeorgeApril 9, 2015 at 9:16 am in reply to: Compatibility of Facebook Events plugin with older version of Events Calendar #954358George
ParticipantHey Vipul,
I’m really sorry for the delay in reply! We normally get to all tickets within 24 hours, I assigned this ticket to myself only a few hours after you posted it but I missed it in my queue!
Really sorry about that Vipul – especially since there is unfortunately some bad news here: version 2.0.10 even without customizations likely would not work with our Facebook Importer plugin, or indeed any other add-on here. It’s not guaranteed, and it might work in many ways but there would likely be lots of other issues arising as you went about using the plugins together.
Let us know if you have any other questions or concerns!
Thanks,
GeorgeGeorge
ParticipantHey Viktor,
Sorry to disappoint, but at this time there is no functionality like this in any of our plugins.
Let us know if you have any other questions or concerns!
Thanks,
GeorgeGeorge
ParticipantAwesome! Thanks for the update Lars – best of luck with your project, and be sure to keep good backups of your site and database 🙂
I’ll close up this ticket for now, but if other issues or questions arise, come back and open a new ticket at any time!
Cheers,
GeorgeGeorge
ParticipantAwesome! I wish you the best of luck playing around with things, and with your project in general 🙂
I’ll close up this issue for now, but if other questions or concerns arise, don’t hesitate to come back and open a new ticket.
Cheers,
George -
This reply was modified 10 years, 7 months ago by
-
AuthorPosts
