JPecsenyicki
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Storefront] Variable Product images not displayingI just changed to the standard Storefront theme & the variation photos are still not loading.
As you can see from this image, the variation photos have indeed been populated with photos of color swatches:
https://wp.skatingdesigns.com/wp-content/uploads/2018/01/VariableProductsSnapshot.jpg
(It’s a little hard to see, but the “Enabled” boxes have also been checked.)
Just to let you know, the new version isn’t recognizing Dreamweaver sync files.
After the update and a scan, it’s showing 80 warnings (about various filepaths) on my installation:
Unknown file in WordPress core: filepath/_notes/dwsync.xml
Forum: Plugins
In reply to: [Xorbin Analog Flash Clock] Top & bottom of clock clipped in several browsersSince yesterday, I’ve used an online resource to de-minify the JavaScript in the
swfobject.v2.2.js
file, and hard-coded Line 613 so that the Flash object’s height will be 145 px instead of 130 px:aj.height = "145";
Not the most elegant solution, but it seems to work for the gold watch background skin that I’m using.
Forum: Plugins
In reply to: [WP Google Fonts] Noob need helpOK. If you’ve got Google Chrome, please use it now. Log into your blog admin in one tab, and get the public blog in another.
(Not to badmouth other browsers, but I find Google Chrome is very intuitive in CSS troubleshooting.)
Position your pointer over some element you’d like changed, and right-click the mouse. It gives you a little menu. Choose
Inspect Element
.(Follow along by doing this for your post headline, [Giveaway] The Ultimate Google Nexus 7 Accessory Pack)
A large window now shows up at the bottom of the screen. The left side shows the HTML element you were pointing at (probably the anchor tag for the title).
The right side shows the CSS associated with that element and related elements. If you scroll down the CSS section, you’ll notice a font-related rule:
.post-loop h2 { font-family: ProcionoRegular,Georgia,serif; font-weight: normal; font-size: 1.2em; }
Now you know the class to target (
.post-loop h2
).Go back to your dashboard and click
Settings > Google Fonts
.If, for example, you want this to be
Roboto Condensed
, click onShow Options
beside this font. Now go to3. Custom CSS (Optional)
and type:.post-loop h2 { font-family: "Roboto Condensed", sans-serif; }
Click
Save All Fonts
, and all your post headings should now be changed toRoboto Condensed
. (You can verify that by refreshing your public blog page.)Repeat for any other elements you want to change.
Forum: Plugins
In reply to: [WP Google Fonts] Noob need helpOK Steve, sounds like you’ll need custom CSS for those parts that aren’t changing.
Please leave a link to your blog here and try to describe as best you can what parts you’d like changed. That’ll help us figure out what classes need to be targeted.
Forum: Plugins
In reply to: [WP Google Fonts] Noob need helpHi Steve,
You might be able to get away without doing anything with the custom CSS (assuming you haven’t changed fonts with your CSS previously).
Once you’ve set up the plugin, click
Settings > Google Fonts
on your dashboard. Your screen should read,Select Fonts
, followed byFont 1
,Font 2
,Font 3
…For
Font 1
, chooseRoboto
, and forOption 2: Elements you want to assign this font to:
, clickAll
. Then click the blue button,Save All Fonts
.At this point, open a new browser tab, and enter your blog URL to verify that Roboto is being applied to everything on the page.
If all’s well, then set up
Font 2
on your dashboard. ChooseRoboto Condensed
, and forOption 2
, assign the font toHeadline 1 (h1 tags)
,Headline 2 (h2 tags)
andHeadline 3 (h3 tags)
.(Maybe even
Headline 4-6
as well, depending how you want them to look.)Click the blue button,
Save All Fonts
, and you should be done.Hope this helps.
-Joseph
Forum: Plugins
In reply to: [WP Google Fonts] W3C Validation ErrorSorry, the line I tried to fix should look like this:
$query .= "& amp;subset=" . implode(",", $subsets);
(With no space between the
&
and theamp;
)