Edward Caissie
Forum Replies Created
-
The Desk Mess Mirrored theme would work very well for this. Your easiest method to accomplish the navigation goals you are describing is to simply create a new “Custom Menu” that has no items in it and use it in the “Top Menu” placeholder.
For the sidebar, simply create a second Custom Menu with the pages you wish to use, or possibly use the default “Pages” widget to list them.
Forum: Themes and Templates
In reply to: Desk Mess theme | page tabs missingVersion 1.8.7.1 is a reversion to version 1.8.6.1 … problems with the menu sticky notes should be corrected; or, if they still exist are inherited from any issues with version 1.8.6.1
Version 1.9 is in the Theme Review queue and addresses a few additional menu-related issues as well.
Forum: Themes and Templates
In reply to: Need help editing post template@rahma – Unfortunately I do not generally test for any browser prior to the most current (especially in the case of IE) but from what I am seeing the “white box” may be another plugin that is possibly conflicting … WP_FB_Like_Button. Have you tried looking at the site in IE8 with that plugin deactivated? Also, you appear to be using another plugin that does basically the same thing, generally you only need one.
As to the issue with the other plugin, I would suggest reporting that issue to the plugin author; and, if you find the above “white box” issue resolves when deactivating the “like” plugin you should also let that plugin author know.
I would be more than happy to work with them if there is a specific Theme/plugin conflict to resolve, please feel free to pass that along if you do find the plugins are the root cause.
… and thanks for the compliments, it seems Desk Mess Mirrored reminds a lot of people of their desktops. 🙂
Forum: Themes and Templates
In reply to: Need help editing post template@rahmama – Sorry for the delays, I will add a note to my TO-DO list to review possible solutions to this issue.
@theotherleboski – Thanks for the comments.
@chip – Thanks for tagging this, it may have been much longer before I found it otherwise.
PS: The error message was generated by a plugin, it is most likely not Theme related.
Forum: Fixing WordPress
In reply to: How to incorporate a page inside a pageYou might consider widgetizing an area within the content of the page and then using a text widget or some other widget to include “static” text within that area.
Forum: Themes and Templates
In reply to: Huge background image – slow loadingPS: A new version (1.7.1) of the Ground Floor Theme, using a much smaller background image, has been submitted to the WordPress Theme Review Team.
I would expect this should sort out the OP issues brought forward. Thank you!
Forum: Themes and Templates
In reply to: Huge background image – slow loadingThe best feedback for a theme is almost always with the Theme author; at least in my case I much prefer to have end-users send their issues directly to myself or post a comment on the appropriate page at http://buynowshop.com as I may not always notice these posts in a timely fashion.
… or, drop me a note with a link to the post in these forums is also very helpful for others to benefit from.
As it is, I will add this issue to the Theme’s TO-DO list as I do recognize the background image is very large and can be slow loading in many situations.
Forum: Plugins
In reply to: [BNS Inline Asides] [Plugin: BNS Inline Asides] Hardcoded plugin pathThanks for the feedback! Glad this update fixed the issue you were seeing, too. I’ll be porting similar updates to my other plugins as well.
Forum: Plugins
In reply to: [BNS Inline Asides] [Plugin: BNS Inline Asides] Hardcoded plugin path@mike – have a look at version 0.4.1
It adopts your suggestion of usingwp_enqueue_style()Thanks!
Forum: Plugins
In reply to: [BNS Inline Asides] [Plugin: BNS Inline Asides] Hardcoded plugin pathThanks, Mike;
I’ll take a look at this …
Forum: Plugins
In reply to: My custom widget think it needs to be updated to version 1.2.1.20070210bNo worries … it was just a suggestion to share the code itself. A fresh set of eyes may have the issue just pop off the screen.
Forum: Plugins
In reply to: My custom widget think it needs to be updated to version 1.2.1.20070210bIf you built your “custom widget” by copying another and re-working its functionality then the issue is within the header section of the widget primary code file.
Changing the version number to something excessively high is one method. Giving the “new” widget a unique name will also accomplish this … and is perhaps a more future-proof solution to the issues you are seeing.
You could “copy&paste” the widget code to http://pastebin.com/ for more help with this …
Forum: Themes and Templates
In reply to: Linking to wp list categoriesCategory templates work by default when you choose the specific category.
If you have a category called “featured” and you want those posts to be shown differently than when you look at other category posts via the archive template then you would create the category-featured.php template and let it do its thing.
To accomplish the same thing on a “page” would typically require writing the code as a page-template.
Try this (un-tested) as the basis for your page template:
get_header(); get_template_part( 'category', 'featured' ); set_sidebar(); get_footer();Forum: Plugins
In reply to: Make most recent posts members onlyYou could try using a couple of conditional:
- test if the viewer is logged in
- test if so x time has passed since the post was published
If the above meets your criteria show the post; else show message to subscribe.
Might only be a few lines of code to add, but it could also be theme dependent as to how much and in how many places the modifications will need to be added.
Forum: Plugins
In reply to: My custom widget think it needs to be updated to version 1.2.1.20070210bHave you tried setting your plugin version number to something very high such as 9999?