ivovic
Forum Replies Created
-
Forum: Everything else WordPress
In reply to: Pinging and tagging – I have a questionUnfortunately this is one of those things that if you have to ask about, you probably can’t do yourself.
Tagging involves extending your cms to support additional keywords related to your content, and then building a mechanism to exploit that relationship based on those keywords.
As for the pinging part, it depends on whether your cms supports public notes being associated with your content… like comments for example.
If you can do the comments part, then “all” you need to do is build a system which reacts to pings from other sites and posts those as related notes/comments in your database, and displays them beneath your content.
Of course you’d also need to extend your content creation system to send pings or trackbacks to others, by scanning your content for links and contacting the target websites with a properly formed ping.
Sounds easy?
Good luck.
Forum: Plugins
In reply to: exclude a category from get_the_categoryyes, quite possible.
<?php foreach((get_the_category()) as $cat) { if ( $cat->cat_name!=='one' || $cat->cat_name!=='two' || $cat->cat_name!=='three' || $cat->cat_name!=='four' ) echo $cat->cat_name . ' '; } ?>note the lack of the logical ‘or’ || on the last category.
Forum: Fixing WordPress
In reply to: How to assign user post wise / page wiseDo you understand the concept of “fitness for purpose”? Certainly everyone should be praised for pushing the envelope with the tools they use, but there’s a point at which it becomes ridiculous.
You’re playing tennis with a slice of cheese, do you not see that?
You need to be looking at much lighter ways of achieving your directory concept, than wordpress, or at least something with a little user security already built into it.
You’ve already posted half a dozen threads about your new project… it’s as if you’ve found wordpress, now the rest is up to us to do for you. Go, break new ground, forge a new path if you think you can, just don’t make it our problem.
Forum: Fixing WordPress
In reply to: Blacklistis this hosting free, or are you actually paying for this shit? 😉
Forum: Your WordPress
In reply to: Reflecting cloudswell, the first thing that jumps out at me, is that your header image needs a little adjustment.
Given that it fades to black, consider aligning the image to the right hand side so that it works on all resolutions. Right now, it just stops dead on screen widths bigger than you anticipated.
I’m on a laptop at 1680×1050, so I’m a LONG way from what’s considered high-resolution these days.
Forum: Fixing WordPress
In reply to: Accessing a custom capabilitylets try to iron this out for you…
what do you think the “current_user_can” function does? It’s gotta do something right? otherwise it wouldn’t exist.
If you can cover that for me, that’ll be a great starting point from which to explain the process. I’m sure I’m going to be covering stuff you already know, but we need to start somewhere.
Forum: Your WordPress
In reply to: My review of $25 logo from gotlogos.comWebmeba, your inability to follow the brief with your initial design is indicative of the quality of your critical opinions here.
If you can’t follow rules, then you have no business complaining about the designs of those who CAN follow the rules, no matter how stupid you think those rules are.
Naturally, as your first design didn’t follow the brief, it’s disqualified.
Now lets look at the second one.
Here’s yours: http://webmeba.com/images/chris-ranes2.jpg
here’s the original you complained and beat your chest about: http://myfitnesswithchris.com/images/myfitnesswithchris_larger_trans-1.gifThe breakdown:
1) your logo is infinitely more boring than the original, making use of only a very basic sans-serif font and some really poor use of whitespace between your two lines of “design” which could have been done in MS word.
2) what does “ertified” mean? what does “hris” mean? Oh I get it, that big-ass C was supposed to fit with both of them, even though its miles away and doesn’t really flow into either line… I get ya now.
3) Please tell us why the copyright symbol has become your biggest design influence here? Maybe I’m wrong, perhaps you’re just sponsored by the letter C, and the numbers 4 and 6.
4) What does a HUGE letter C have to do with fitness and personal training?
5) The big bold C looks like your attempt at rating your own work Unfortunately it’s quite generous. The OP could have done a better job himself in a word processor. Awful.
Even you would have to admit that your second attempt here is worse than the original.
I do agree that some human figure is called for, albeit cliche, but that wasn’t in the brief. Instead of complaining about the design the guy got for $25, maybe you should be complaining about the OP’s brief?
Anyway, if you want all that money to retire on, you’ll have to do a much better job of a logo than that.
Forum: Your WordPress
In reply to: My review of $25 logo from gotlogos.comwow “proved you wrong…”
you can’t get a good dinner for $25, but you can certainly eat for $25… he got a logo for $25, did he get a good one? no, the Gordon Ramsay of logo design this guy aint.
Your swoosh argument is a strawman. We can argue all day about how stupid Carolyn was, or we could sit here trying to find your “meaning” in that one, or we could just agree that it wasn’t Carolyn that made the swoosh = nike, it was the several hundred million (or more) in advertising dollars which built the association in your mind.
Again, bullshit designed to lead us away from the point and tie us up in irrelevant stuff = strawman.
…
lets put the argument to rest… I’ll give anyone who posted before me $25 to blow me away with their artistic brilliance and design the guy a much better logo, if you think it’s worth the cash. Please follow his brief as posted.
Clock’s ticking, make it fast the client’s in a hurry… no, I don’t have time for you to go to design school. Best entry gets the prize, I’ll even sweeten it for the losers if they’re better than the original.
I’d be glad for the OP if I’m proven wrong, but don’t expect me to be gentle with my criticism.
Forum: Fixing WordPress
In reply to: HOW To Go From Login DIRECTLY to SITE VIEWlook under settings, instead of options, the plugin was designed for a previous version of wordpress.
you could maybe look around for a minute…
Forum: Fixing WordPress
In reply to: HOW To Go From Login DIRECTLY to SITE VIEWno, it’s not what you wanted… you don’t want the “VIEW SITE” you want what comes when you CLICK “view site” —>> end result = FRONT PAGE.
when you’re hungry do you say “I want flour and water and pieces of pig”
no… you say “I want a ham sandwich”
PS: I just gave you assistance up there^^^^ do you want to argue with me, or try that plugin I linked for you?
Forum: Fixing WordPress
In reply to: Accessing a custom capabilityyou’re not pulling this straight from the DB are you? – that’s completely unnecessary.
you don’t “check it against” anything… the current_user_can function does the checking for you.
so, once you’ve created the capability, you assign that capability to a user, and current_user_can checks whether this user has that capability.
that’s all… no custom queries into the database, no nothing.
Forum: Fixing WordPress
In reply to: HOW To Go From Login DIRECTLY to SITE VIEWyes, your reference to view site was confusing… because that’s not what you wanted.
if you want the main page, say the main page.
the plugin you were given does something extremely similar to what you want. Is it not working for you?
have you tried to google for other plugins?
try this one http://wordpress.org/extend/plugins/weasels-login-redirection/
Forum: Fixing WordPress
In reply to: switching to php 5lots and lots of people are using wordpress on php5… it… just… works.
Do keep an eye out for any of your obscure plugins. Anything coded by a monkey should work, but some humans aren’t quite that smart.
Forum: Fixing WordPress
In reply to: Title reads “Home Page at Your Site Name”theme design is not for you… please choose another theme.
Forum: Fixing WordPress
In reply to: How to handle large databasehave you asked this question on cooking forums, and pregnancy forums too? While not quite as bad as those, this is certainly not the best place for questions about specialised database concerns.
Your question has nothing to do with wordpress. I suggest you ask on a mysql forum.