Edward Caissie
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: how do add a point to address topicAhh … I see what you are referring to. WordPress is replacing the “dot” with a hyphen in the URL.
In its default formats this will always happen … I tried testing with the encoded HTML value %2E (dot) and ran up against a serious redirect fail.
Forum: Themes and Templates
In reply to: Help I am stuck with this one.Not that I have an immediate solution, but may I suggest disabling the “right-click” is only a minor inconvenience if you are trying to hide the “source code”.
For example, simply open any site with Firefox and then press <Ctrl>-U and you will get a new window with the page’s source code … no mouse required 🙁
I would suggest a simple unobtrusive “watermark” for images your friend wants to “protect”.
Forum: Fixing WordPress
In reply to: how do add a point to address topicYou mean like a “bullet” point similar to list items?
Forum: Themes and Templates
In reply to: changing font size on a wordpress pageYour headings are currently styled via:
div.post div.entrytext p strong { ... }Which does not happen to have any properties defined at this time.
You might try adding to the end of your style.css file something like the following:
div.post div.entrytext p strong { font-size: 150%; }Forum: Fixing WordPress
In reply to: Link sequenceSometimes a link to your web site and current theme can be useful to sort out issues like this. In this case the theme is probably the key detail.
Also, you mentioned “list.php” which is not a standard WordPress theme template file, have you asked the theme author for their input on this matter?
Forum: Plugins
In reply to: Alignment of ButtonsI managed it in Firefox using Firebug … it should be possible. Sometimes it can be difficult to get your “custom” CSS to have more specificity than the plugin’s CSS.
Forum: Fixing WordPress
In reply to: How to rename function by plugin?If I am understanding you correctly, you want your code to re-write the core WordPress code?!
I would say its strongly not recommended but good luck if you have your heart set on it.
Forum: Fixing WordPress
In reply to: Multiple domains, but only one admin?I should have pre-pended my suggestion with “soon to be released”, as @andrea_r noted one of the key upgrade points in the next release.
Forum: Fixing WordPress
In reply to: Multiple domains, but only one admin?WordPress MultiSite with Domain Mapping plugin?
Forum: Fixing WordPress
In reply to: How to rename function by plugin?I’m just wondering why you need to rename the function … wouldn’t simply having another function call the make_clickable() function work just as well and essentially accomplish the same thing?
Forum: Plugins
In reply to: Alignment of ButtonsThe AddToAny has its own CSS class that can be found in the plugin’s files.
You may be able to add the following to the end of your theme’s style.css and get results you are looking for.
.addtoany_share_save_container { margin:-20px 0; position:relative; top:7px; }Adjust the value of the top and margin parameters to taste … depending on how and where the plugin is writing the call to its own spreadsheet will determine if the margin parameter will have any effect.
Forum: Fixing WordPress
In reply to: Link sequenceHave you looked at this function: http://codex.wordpress.org/Template_Tags/wp_list_bookmarks
If it is the one used in your theme, then you should be able to edit the parameters to suit your needs.
Forum: Fixing WordPress
In reply to: calling a plugin in a php sidebarLooking at the code to the plugin it does not lend itself well to being used via the_widget() function. Sorry for the confusion.
Forum: Fixing WordPress
In reply to: calling a plugin in a php sidebarThe “Easy Sign Up” plugin may be adaptable for use in this function: http://wordpress.org/search/the_widget …
Have you considered using an RSS feed widget?
The default RSS widget that is part of core should work but has a default refresh of 12 hours if I recall correctly.