mihu
Forum Replies Created
-
Forum: Plugins
In reply to: [Sermon Manager] [sermon_sort_fields] select dropdown redirect to same pageIs there a way I can make action point to sermons/ instead of the same page?
Forum: Plugins
In reply to: [SAML 2.0 Single Sign-On] Custom role update & custom user attributesHi Piotr,
Do you have any luck w/ your 2nd request? I am actually looking for the same thing.
Thanks,
RayForum: Plugins
In reply to: [Plugin: MyBlogLog: Reader Roll] Please update for WordPress 2.8.1.I guess this was because of the new feature, multi-widgets.
The right way to fix this issue maybe rewrite the widgets by 2.8 way.One solution is take out (yes/no) panel toggle feature, and it will looks bad from end user.
The other way is change the following code.1. add the code below before this function “function mbl_e(id)”
function getElementsByStyleClass(className) { var all = document.all ? document.all : document.getElementsByTagName('*'); var elements = new Array(); for (var e = 0; e < all.length; e++) if (all[e].className == className) elements[elements.length] = all[e]; return elements[elements.length - 1]; }2. Within ” function toggleView(view)”, you need to replace 6 “mbl_e” with the new function we created above, “getElementsByStyleClass(className)”.
For example,
mbl_e('mybloglog_rr-simple').style.display='none';
became
getElementsByStyleClass('mybloglog_rr-simple').style.display='none';Please let me know if this quick fix works for you guys or not.
Best,
Forum: Fixing WordPress
In reply to: need advice on hacking attemptmy blog won’t allow none register user to post comment; however, the hacker success post one (waiting for approve).
I am using the latest version 2.6.2, and got the attach at the same point.
… “POST /wp-trackback.php?p=xx HTTP/1.0” 200 78 “-” “-“How can I prevent this in the future?
Is this a security issue?Forum: Fixing WordPress
In reply to: How to display links categories like post categoriesThere is some similar capability I found out a while back. Check the default template come with latest wordpress. You can select “page template”.
Forum: Fixing WordPress
In reply to: add_action passing parameterschrismou explained the question well.
Could someone help to answer this question?
I got the same issue too.Thanks in advance.
Forum: Fixing WordPress
In reply to: How to create a page for plugins?I just found there is a “Page Template” option under write -> page when I use the default template.
That’s is what I am looking for, “the special page contains special date”.
My question is “Is there a way to to insert such template for the plugins”.
I would like to create a sidebar plugins contains list of hyperlinks, which will link to that “special page”.I hope this time I make it more clear.
π
Thank you again … You are a nice person. πForum: Fixing WordPress
In reply to: How to create a page for plugins?I felt bad I can’t explain what I need well, but really thanks for the reply.
Forum: Fixing WordPress
In reply to: How to create a page for plugins?nope .. I just want plugins to create a special page to display special data I collect from plugins.
For example, I would like “about me” page instead of “about me” sidebar
or
I would like to display information from other place as a page.I hope this makes my question more clear.
Forum: Fixing WordPress
In reply to: Client did not pay… Any way in the back door?I agree with “whooami” which you shouldn’t sneak in via backdoor; however, I think you can use your legal right to get money from them.
If you got any sort of contract or written agreement and prove the work you have done for them, you should be able to get money from them.
It is indeed a learning curve, and things always happened. If you google it, you shouldn’t be only one.
I would highly suggest you contact with them to ask for payment. If you “complete” your job upon agreement, you should be fine.
Next time, demand a partial payment while you are working on the project. Of course, you need to mention this before the project start, and one more thing, make sure both of you guys write it down.Forum: Requests and Feedback
In reply to: browser, css issuesI am not sure what’s exactly wrong.
I am gussing maybe it’s becasue of your banner background image is reapted or … too much bug.one suggestion ..
background:url(“personalheader.jpg”) no-repeat;
reference: http://www.htmldog.com/guides/cssintermediate/backgroundimages/