Support

Home Forums Event Espresso Premium Background color for events

Background color for events

Posted: March 5, 2015 at 8:05 am

Viewing 13 reply threads


Chris DeMunbrun

March 5, 2015 at 8:05 am

Hey guys, I am a recent owner of Event Espresso and I have just run into my first roadbump. I am using the Divi theme.

This maybe basic wordpress, but I have never done this before, but for the life of me can’t figure out how to make the http://www.site.com/events customized with a different background color other than white. I also want to remove the side bar. I tried to create a custom page, but it doesn’t give me options to change it in the plugin anywhere.

I have successfully changed the critical pages which are generated by the plugin for registration and payment processing, but can’t wrap my head around how to change the events themselves.

I am off to work, but I put the website online so you can see the problems.

http://www.bladetactical.com/classes and http://www.bladetactical.com/events

The first thing I am trying to do, is remove the text under the event itself on the ‘classes’ page. The text reads ‘Featured Speakers this year: Robert Gusentine United St{..]” I believe I have ‘no description checked and it is still trying to describe it.

The second thing I am trying to do is change the background color on the actual event page itself to match the darkness of the theme. I also want to remove the side bar. I also want to do this for the rest of the events created.

I have to go to work, but any help with this will be much appreciated!

thanks in advance

-Chris


Chris DeMunbrun

March 5, 2015 at 8:06 am

Also, the view details button send you to

http://bladetactical.com/events/dhs-symposium-2/

I would like this page changed too. Again, I am sure I just need another set of eyes on this, but it is driving me crazy lol.

-Chris


Lorenzo Orlando Caum

  • Support Staff

March 5, 2015 at 1:02 pm

Hi there Chris,

You can inspect any element on a page using a free tool like Chrome Developer Tools (available with Google Chrome) or Firebug (available as a web browser extension).

This will show you the CSS that is handling the styling including the file and line number. Then you can add new styling to your child theme’s stylesheet or through a plugin like Reaktiv CSS builder or My Custom CSS.

Try this CSS:

.single-espresso_events #main-content, .single-espresso_events .et_pb_section {
    background-color: black; 
}

.post-type-archive-espresso_events #main-content, .post-type-archive-espresso_events .et_pb_section {
    background-color: black; 
}

Could you confirm that the background color changes when those lines of CSS are used?

I did not see the featured text that you mentioned. Did you want to hide the ellipses and the posted by author on the classes page?


Lorenzo


Chris DeMunbrun

March 6, 2015 at 10:08 am

That worked great bro, thanks!

The only thing that I need help on is removing the side bar on the event page and the individual event pages.

http://bladetactical.com/events/dhs-symposium-2/

&

http://bladetactical.com/events/

Then I should be good to go for now!

Thanks again for your time

-Chris


Lorenzo Orlando Caum

  • Support Staff

March 6, 2015 at 11:45 am

Hello again Chris,

Add this additional CSS below the existing CSS that I shared in my earlier reply:

.single-espresso_events.et_right_sidebar #left-area {
    float: left;
    width: 100%;
    margin-right: 0;
}

.single-espresso_events.et_right_sidebar #sidebar {
    display:none;
}

.single-espresso_events .container::before { 
	display:none; 
}

.post-type-archive-espresso_events.et_right_sidebar #left-area {
    float: left;
    width: 100%;
    margin-right: 0;
}

.post-type-archive-espresso_events.et_right_sidebar #sidebar {
    display:none;
}

.post-type-archive-espresso_events .container::before { 
	display:none; 
}

If you would also like to remove the post meta information such as the author name and posted by date, then also add these styles:

.single-espresso_events .post-meta {
	display:none; 
}

.post-type-archive-espresso_events .post-meta {
	display:none; 
}

Let us know if that helps.

Thanks!


Lorenzo


Chris DeMunbrun

March 8, 2015 at 10:09 pm

Lorenzo,

Thanks so much for all of this. It has addressed everything except one thing (also, sorry for the late reply to this, was traveling).

In the link below, there is text that appears when you link the event individually through a text widget. I have no decription enabled in the admin panel for your plugin. How do I make this go away?

http://i47.photobucket.com/albums/f154/chrisatrice69/SS.png

Thanks again in advance and once I solve this, I should be gtg.

-Chris


Dean

March 9, 2015 at 3:19 am

Hi,

That looks like the Short Description (word count determined by the theme). You can disable it by going to Event Espresso > General Settings > Templates tab > and change Display Description to None > then Save settings.


Chris DeMunbrun

March 9, 2015 at 9:45 am

Good Morning Dean and thanks for the Reply.

I have the setting set to none, and it still displays this text. Any other ideas on how to get rid of it?

Thanks

-Chris


Chris DeMunbrun

March 9, 2015 at 9:58 am

Also,

the receipt a weird path error that the payment gateway never gave.

http://i47.photobucket.com/albums/f154/chrisatrice69/error%20on%20reciept.png

and for pdf

http://i47.photobucket.com/albums/f154/chrisatrice69/pdf.png

Now, other than the free pdf receipt and short description text, I should be gtg lol

-Chris


Tony

  • Support Staff

March 9, 2015 at 11:16 am

Hi Chris,

Can you confirm the full shortcode you are using for the upcoming events page please?

The issue with the Invoice/Receipts is due to your sever disabling fopen() or more specifically it is usually allow_url_fopen that is disabled.

This is used by DOMPDF which is the library Event Espresso uses to generate the PDFs. You’ll need to contact your host and have them enable fopen on your site.


Chris DeMunbrun

March 9, 2015 at 11:21 am

I am using

[ESPRESSO_EVENTS]

In a text box right now.

I just sent an email to the host, I will report back on this specific issue. Any luck figuring out the detail description in the event even when it is turned off?

thanks

-Chris


Tony

  • Support Staff

March 9, 2015 at 11:50 am

I have managed to reproduce this and have issued a ticket with our developers to investigate.

If you add this custom CSS to your site:

.type-page .espresso_events .event-content p {
  display: none;
}

Which ‘should’ only target the event content on a page listing Event Espresso events and not effect any other listings.

We recommend using either the or Reaktiv CSS Builder plugins to add custom styles such as these.

*To note, this is a temporary work around whilst we wait for a fix from the developers, once this is fixed within Event Espresso I would recommend removing that custom CSS.


Chris DeMunbrun

March 9, 2015 at 4:35 pm

Tony,

Thanks so much, this worked perfectly. I usually use My Custom CSS plugin for all my theme, so the suggestions here on this thread worked perfectly.

I am still waiting on a reply from the web host, but cosmetically, it is looking the way I want it and I appreciate your time in helping.

-Chris


Chris DeMunbrun

March 10, 2015 at 12:19 am

And Solved. Thanks guys for your help and diligence!

-Chris

Viewing 13 reply threads

The support post ‘Background color for events’ is closed to new replies.

Have a question about this support post? Create a new support post in our support forums and include a link to this existing support post so we can help you.

Event Espresso