Site logo

Archived topic

Theme Appearance Conflict

12 replies · Started by Jay on August 24, 2017

Viewing posts 1–13 of 13

Hi Guys,

So I have this weird conflict going on. I think it is happening between GeneratePress and WooCommerce. If I go into the Customize area of WordPress to make an appearance change to my site I can make the change, then when I click Save & Publish, it does nothing. This issue isn't occurring on a site that I am running that doesn't have WooCommerce running, but is running GP and all the same plugins as the site which is running WooCommerce. In addition, I have noticed that if you go to my store layout page (https://jaygoodrich.com/photographystore/current-inventory/), the product names are not showing up now either even though I have the option to display them checked in GP premium options. One more notice is that if I add a new product to WooCommerce, it will publish the product but the screen goes blank and the page won't refresh. Any advice would be appreciated.

Cheers,

Jay

Hi there,

I doubt there it's a conflict with GP + WooCommerce - we would be getting a lot of support topics already :)

Try disable all plugins except GP and WooCommerce. It can also be a caching plugin problem as well.

I had WP Super Cache running on the site that was NOT effected. All of my sites are running in multisite but none of the effected sites had WP Super Cache running and Super Cache was not activated across the network. Weird...

So this part of the problem is not fixed...this page: https://jaygoodrich.com/photographystore/current-inventory/ is displaying the product titles as white #ffffff even though I have my H2 titles set to #222222 in both my theme colors and my GP WooCommerce settings. Any advice here?

Cheers,

Jay

Where did you set the colors?

Should be Customizer > Colors > WooCommerce.

Let me know.

Yes. That is where. Product Title is set to #222222 but it is displaying as #ffffff.

You have this CSS added:

h2 {text-align:center;
       color:#ffffff;
}

Not in my additional CSS...

I have that in the GP header that is attached to that page to make the the title and subtitle white? Guessing I need to make an adjustment?

So I have this in the Content area of the header...

<head>
<style>
h1 {text-align:center;
color:#ffffff;
}
h2 {text-align:center;
color:#ffffff;
}
</style>
<h1>Jay Goodrich Photography Store</h1>
<h2>Complete Product Listing</h2>
</head>

Guessing I need to adjust so it only affects the title on the page and not all the h1 and h2 tags?

Ahh yeah we need to be more specific. Try this instead:

.page-header-content h2 {
    text-align: center;
    color: #ffffff;
}

Fixed! Thanks for working through that with me!

No problem! Glad I could help :)

This archived topic is closed to new replies.