All Good Things Must Come To An End

As you all know, I have been doing WordPress plugins and supporting it for the past 6 years. These 6 years of my life, I have been through my polytechnic education, my national service as well as my university education.

I just graduated from university in December 2009 and have been looking for full-time jobs. I am offered a full-time job and will be starting work on 1st February 2010.

I regret to say that I am NOT ABLE to provide support for my plugins anymore due to my full-time job commitment. I will leave this forum open and let the community help one another.

However, I WILL still update my plugins whenever I can and you still can report bugs to me via email and I will try to fix it.


Author Topic: WP-Email popup keeps showing my background template and I don't want to  (Read 1613 times)

0 Members and 1 Guest are viewing this topic.

Offline fabriciovasselai

  • Newbie
  • *
  • Posts: 4
    • View Profile
Dears,

What I am trying to do is just to leave WP-Email popup screen all without my blog's template.

And for now, I was not able to make the popup windows of WP-email to show up without the background picture that I use in my header.

How could I?

(you can see it by yourselves in: politicando.blog.br)

Please, any help would be very important!!

Offline GaMerZ

  • lesterchan.net
  • Administrator
  • *****
  • Posts: 11,536
    • View Profile
  • WordPress Version: WordPress 2.9.x
  • Theme Name: lesterchan.net v3.4
It uses the same stylesheet as your main site style.css. You can create a stylesheet and link it manually in email-popup.php.

If not don't use a popup window.

++ lesterchan.net - Lester Chan's Website

I regret to say that I am not able to provide support for my plugins anymore due to my full-time job commitment. I will leave this forum open and let the community help one another.

Offline fabriciovasselai

  • Newbie
  • *
  • Posts: 4
    • View Profile
Thanks for the fast reply.

Let me see if I understood it well.

Should I just create, for instance, another CSS file and assign it, al right?

But how can I manually link WP-email popup to that new CSS?

Thanks very much!

Offline GaMerZ

  • lesterchan.net
  • Administrator
  • *****
  • Posts: 11,536
    • View Profile
  • WordPress Version: WordPress 2.9.x
  • Theme Name: lesterchan.net v3.4
email-popup.php

Find:
Code: [Select]
<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" />
Replace:
Code: [Select]
<link rel="stylesheet" href="http://www.path.to/stylesheet" type="text/css" media="screen" />

++ lesterchan.net - Lester Chan's Website

I regret to say that I am not able to provide support for my plugins anymore due to my full-time job commitment. I will leave this forum open and let the community help one another.

Offline fabriciovasselai

  • Newbie
  • *
  • Posts: 4
    • View Profile
Fanstastic.

Simple and powerfull.

Thanks again!

Offline lauramac

  • Newbie
  • *
  • Posts: 17
    • View Profile
Hi, just following along because I'm having the same issue. I'm stoked that I finally got it working, but the template is using a background color of dark grey in the email template, and i just want to change that one color. Is there any way to do that without creating a whole new file?

thanks,
Laura
www.positiveattitudequotes.com

Offline GaMerZ

  • lesterchan.net
  • Administrator
  • *****
  • Posts: 11,536
    • View Profile
  • WordPress Version: WordPress 2.9.x
  • Theme Name: lesterchan.net v3.4
You can duplicate the css and just modify the background attribute. I don't think there is a way around it. That is what I did as well for my own site.

++ lesterchan.net - Lester Chan's Website

I regret to say that I am not able to provide support for my plugins anymore due to my full-time job commitment. I will leave this forum open and let the community help one another.

Offline lauramac

  • Newbie
  • *
  • Posts: 17
    • View Profile
Hi there,
what file is that code in? The code that needs to be replaced?
thanks,
Laura

Offline GaMerZ

  • lesterchan.net
  • Administrator
  • *****
  • Posts: 11,536
    • View Profile
  • WordPress Version: WordPress 2.9.x
  • Theme Name: lesterchan.net v3.4
What are you talking about? This thread is for email popup, look at reply #3

++ lesterchan.net - Lester Chan's Website

I regret to say that I am not able to provide support for my plugins anymore due to my full-time job commitment. I will leave this forum open and let the community help one another.

Offline lauramac

  • Newbie
  • *
  • Posts: 17
    • View Profile
Sorry, I posted in the wrong spot, Ididn't mean to make a new discussion...

Yes I was talking about this code

<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" />

I'm sorry I'm just learning...

I created a email-popup.php file with this code:

body {
   font-color: #25383C;   
   background:#CC9999;
}

I put the code in the header.php but nothing changed?

Any suggestions?

Laura
www.positiveattitudequotes.com

Am I supposed to totally duplicate the CSS file? I think that's what you wrote, so I'm not sure if I understand...


Offline lauramac

  • Newbie
  • *
  • Posts: 17
    • View Profile
Ok, major misunderstanding...
I'm looking in the wp-email/wp-email.php file that comes with your plugin.

Am I supposed to replace code in that file?

Thanks,
Laura

Offline GaMerZ

  • lesterchan.net
  • Administrator
  • *****
  • Posts: 11,536
    • View Profile
  • WordPress Version: WordPress 2.9.x
  • Theme Name: lesterchan.net v3.4
The only file you need to modify is email-popup.php.
In email-popup.php

Find:
Code: [Select]
<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" />
Replace:
Code: [Select]
<link rel="stylesheet" href="http://www.domain.com/wp-content/themes/THEME_NAME/email-popup.css" type="text/css" media="screen" />
Modify http://www.domain.com/ and THEME_NAME respectively

Create a new CSS file called email-popup.css and place it in your theme folder

And the you can code your email-popup.css as per normal.

I do not provide support for css, that is for you to figure it out.


++ lesterchan.net - Lester Chan's Website

I regret to say that I am not able to provide support for my plugins anymore due to my full-time job commitment. I will leave this forum open and let the community help one another.