Tiago
Forum Replies Created
-
Yay!!! That not only works as I expected, but now I undestand the conditional placeholders a little bit better 😉
Thank you so much for your help!!
Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] Categories displayNever mind… I just added
twice after the #_CATEGORYLINK section and it works better, I guess 😉Thank you so much again for your help! 🙂
- This reply was modified 6 years, 11 months ago by Tiago.
Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] Categories displayHi!
Thank you so much. I’m getting closer 😉
So I removed some of the code and now I have it in a row.
How can I add a comma in between genres, but not on the last one?
For example: Reggae, Rock, Pop
But not: Reggae, Rock, Pop,Hope it makes sense 😉
Here’s the code I have now, after I removed some of the stuff from the original code:
<?php /* @var $EM_Event EM_Event */ $count_cats = count($EM_Event->get_categories()->categories) > 0; if( $count_cats > 0 ){ ?> <?php foreach($EM_Event->get_categories() as $EM_Category): ?> <?php echo $EM_Category->output("#_CATEGORYLINK"); ?> <?php endforeach; ?> <?php }else{ echo get_option ( 'dbem_no_categories_message' ); }Forum: Fixing WordPress
In reply to: Different Homepage for logged in usersHi Joy!
Thanks for your reply.
Yes, I’m using a plugin to show some menu items to logged in or logged out users only.I guess I will just wait until I can transfer to a whole new framework instead of WordPress. It’s not a big deal anyway. I just wanted to make it look more appealing to the logged out users and then make that “landing page” invisible to logged in users. Not a big deal 🙂
Thanks again! Have a great week! 🙂
Forum: Plugins
In reply to: [Font Awesome] The Font Awesome plugin has experienced a fatal errorHi,
Do you have a way to view the server logs to see if there is any more detailed error output there?
To be honest, I have no idea how to do this… Also, the message went away and I can use the icons without a problem. If you tell me how to get the server logs, I will be happy to send them your way.
Also, can you verify that your server is running PHP 5.6 or later? This plugin definitely requires 5.6 or later.
Yes, I’m using 7.1. Before the update to that version, I wasn’t even able to activate the plugin, but now with 7.1, I could.
Thank you! 🙂
Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] Spacing issueSorry, I had to delete that “test event”, because I was about to launch the final version of the website.
Here’s a new, official event:
http://www.events.wavebix.com/events/3ple-tsunamiz-no-hollywood-spot/Thank you!
UPDATE: for some reason, when I visit the Events tab as an admin, its view defaults to Future Events. By accident I just looked up and saw that we can go through different types of views, one of them being All Events. 😉
Update: found the answer!
Placed the following code inside my functions.php file:
// Tag Cloud Font Size add_filter( 'widget_tag_cloud_args', 'change_tag_cloud_font_sizes'); /** * Change the Tag Cloud's Font Sizes. * * @since 1.0.0 * * @param array $args * * @return array */ function change_tag_cloud_font_sizes( array $args ) { $args['smallest'] = '11'; $args['largest'] = '15'; return $args; }UPDATE: I was able to change the font-family, but the size is not changing, regardless of the value or even the format (px, iem, %)
Here’s my code:
div.tagcloud { font-family: Gill Sans, Helvetica, Arial, sans-serif; font-size: 70px; }I used without “div.”, same results
Thanks for the reply.
This seems to be a bit more “advanced” than I can actually understand, but I will check it later today and see if I can make it work 😉If not, I can work with it for now. It’s not a big deal. It’s just a small detail.
Thank you anyway. Really appreciate your time and help 🙂
Thanks again!
It worked! 🙂Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] Date FormattingFound the solution:
Settings > Formatting > Date/Time > Date FormatOk so I guess it was the theme. I changed it and it doesn’t behave like that anymore… I actually found a way nicer theme, so I’m good to go!
Thank you so much for your time and help, Patrick! 🙂
I was checking and the demo of the plugin behaves the same way (we are using the same theme)
https://demo.wp-events-plugin.com/events/Thank you for the quick reply 🙂
I’m gonna go check that, then.One thing I noticed: if I clear my browser’s cache, it indeed shows me the event’s title (archive page) according to the CSS. Once I click on it, it sends me to the event’s page and if I go back to the main events’ archive, it goes back to being grey and it seems that the CSS is no longer affecting it…
Maybe you can check that and let me know if you experience the same behavior?
http://www.events.wavebix.com/events/Do you know what may be causing this?