Zack Tollman
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Teaser headlines bolded when viewed on a Mac, but not on a PCAdd
font-weight: bold;
to any of those classes and it should do the trick.Forum: Fixing WordPress
In reply to: Teaser headlines bolded when viewed on a Mac, but not on a PCI’m looking at it now on a Mac and PC and it does not appear to be bold in either. Looking at the CSS, there are no rules that are instructing it to be bold and it does not appear to be bold. One of the most difficult issues when designing websites is getting the text to look consistent across browsers. It’s possible that these differences are making the rendering of font look bold on your mac and not bold on the PC.
Forum: Fixing WordPress
In reply to: Teaser headlines bolded when viewed on a Mac, but not on a PCWhich headlines are you referring to? I’m not sure which ones are the “teasers”.
Forum: Fixing WordPress
In reply to: WP 3.2 Thickbox & JQuery-UI-Tabs ConflictNot a bug. Looks like you forgot to add the
class="thickbox"
to your modal window link. I just tested it on a WP 3.2 install and it works flawlessly.The full line should be:
<p><a href="#TB_inline?height=155&width=300&inlineId=hiddenModalContent" class="thickbox">Show hidden modal content.</a></p>
EDIT: also, the thickbox document says the you should add the
&modal=true
argument to the call, but this doesn’t seem to have an effect on anything.Forum: Fixing WordPress
In reply to: stylesheet missingIs this a free publicly available theme? Is it one you created? Is the style sheet there?
Forum: Fixing WordPress
In reply to: Php wp-get question related prdocues bullet pointsThis changes requires that you make a change to the CSS. The code I provided will not necessarily work. It will only work if the CSS selector is correct. Can you paste the HTML that the
wp_get_archives
produces. I can help you with the selector then.Forum: Fixing WordPress
In reply to: Titlte UppercaseYou need to use
wp_title()
at that point in the code. You can only usethe_title()
within the loop.<html> <head> <title><?php echo strtoupper(wp_title('', false, '')); ?></title> </head> <body> </body> </html>
For more about the
wp_title()
function, see: https://codex.www.ads-software.com/Function_Reference/wp_titleForum: Plugins
In reply to: Plugin last updated time not getting updatedOtto…I wonder if I can get some assistance here. I did not do things exactly as you said, but in theory, I think my format should work (or at least I would like it to work).
Here’s what I did with regard to my plugin (https://www.ads-software.com/extend/plugins/custom-taxonomy-sort/) :
1) After finding a bug, I created a branch and labelled it “RB-1.0.1” and intended to use this to complete my bug fix in order to produce a quick fix. I did this because I had previously branched “RB-1.1” in preparation for my next big feature release.
2) After branching “RB-1.0.1”, the first thing I did was update the readme.txt with a new stable tag and the version information in the header information of the main plugin file. I did this first so I would not forget to do it when I released it.
3) I made all of the changes and did my testing and committed the changes to the “RB-1.0.1” branch folder.
4) Finally, I tagged the “1.0.1” release from my branch.I thought this would work, but my release is not showing up. It’s been about an hour at this point. Note that the trunk contains the same contents as my “1.0” release as I’ve simply branched from that point in order to not corrupt the trunk. I’ve yet to merge the “1.0.1” release back to the branch…not sure if that would have any bearing on this issue or not.
I totally get that I did not do as you suggested earlier, but shouldn’t something like this work? I obviously would not have done it in this order had I not seen this first, but it seems odd to me that the release would not be based purely on what’s in the tags folder. It seems to defeat the purpose of having things laid out this way.
Thanks for the feedback!
Forum: Fixing WordPress
In reply to: Custom taxonomy – sorting by something other than alphabeticallyYou can give my new plugin a try: https://www.ads-software.com/extend/plugins/custom-taxonomy-sort/. It’s aimed at automatically sorting taxonomies, including custom taxonomies, by a user specified order.
EDIT: Actually, my plugin will not work with this just yet. I need to make a slight change so it will work in this context. I should have an update up in a day or so.
Forum: Fixing WordPress
In reply to: Php wp-get question related prdocues bullet pointsBy default the
wp_get_archives
function outputs an unordered list of the items. Default styling of unordered list items usually included a bullet point. To remove said bullet point, you can modify your CSS with something like:#content li { list-style: none; }
Depending on your theme, this code may or may not work. You need to find the right selector for your list and it should do the tricl.
Forum: Fixing WordPress
In reply to: Titlte UppercaseThe following should do the trick.
<html> <head> <title><?php echo strtoupper('This is the title to be uppercase'); ?></title> </head> <body> </body> </html>