Edward Caissie
Forum Replies Created
-
By nothing I meant the widget no longer displayed on the public facing pages; and, yes, upon further review (and if I may suggest, note it in your readme/FAQ) it appears the widget does need to be re-added to the sidebar.
PS: There appears to still be a clearing issue as I have also noted in the past … adding
echo '<div style="clear: both;"></div>';after line 163 (echo "</div>\n";) is one possible solution.The plugin (still in its early development stages) currently adds:
- .theme-< template-name >
- .child-theme-< stylesheet-name >
- .plugin-bns-body-classes
At version 0.2 I added an option to allow the end-user to add custom classes … with more ideas and options to follow.
PS: Thanks for the FAQ idea, I will add this information there shortly.
Forum: Themes and Templates
In reply to: [Suffusion] [Theme: Suffusion] Dangerous Architecture hereAbout the only WordPress theme I can stomach is Starkers, i.e. one that doesn’t get in my way.
… just curious why you would choose to use Atahualpa on your “profile” site if Starkers is your theme of choice?
Forum: Fixing WordPress
In reply to: Hide Page in Clear Line ThemNo worries, I’m glad you sorted out the issue. There are any number of ways a Theme author may use to write the code for their theme, I only suggested the article as a generic guide.
Forum: Themes and Templates
In reply to: Removing Author line & Tags on Sticky PostTrying being a bit more specific with your CSS element, this may help:
.sticky div.postauthor p {display: none;}A ‘search.php’ template could be added, possibly with a future release. I’ll add it to the Project To-Do List for review.
Thanks for the feedback, and thank you for choosing Desk Mess Mirrored.
Forum: Themes and Templates
In reply to: I accidently changed my panels.php in the EditorAs this appears to be theme related the simplest fix may be the following:
- Under the Appearance menu, change to the default theme
- Delete the theme that you were using
- Re-install the theme from the repository (or wherever you have access to it if not from Extend
- Re-activate the theme
See if that sorts out the issue, it will essentially remove all edits you may have made accidentally … and those you may have made on purpose, too.
Forum: Fixing WordPress
In reply to: Hide Page in Clear Line ThemTry this article: http://buynowshop.com/2009/07/hide-a-menu-page/
@angelazou – First let’s clean up this shortcode a bit:
[bnsfc title="Notes" cat_choice="1" show_count="5" show_cats="true" only_titles="true"]‘use_thumbnails=”false”‘ is not needed when you set ‘only_titles=”true”‘
Now, let’s break down the shortcode. The shortcode essentially takes what is displayed in your theme’s standard widget area(s) and places it inline in a post.
From your specific example: “Notes” is the same as what you would see in the title of the widget block in your sidebar, again for example; you have selected category “1”, which unless modified from the default installation would be those posts in the ‘uncategorized’ category; you are showing five (5) posts and displaying any and all categories associated with the particular post; and, last you are only showing the titles (no content/excerpt).
Now, to your question … you are correct with setting ‘show_cats=”false”‘ (or simply leave it out of the shortcode call) will not display the “in Notes” part, but setting the title to be a link to the specific category is not currently possible with the plugin as it is written.
Can the plugin be modified, yes I imagine so; and, I will add the idea for review with future releases, but at this time I do not see that functionality being a “Five-Minute-Fix”.
@kavp – Currently displaying the “Featured Image” is tied to displaying some part of the content of the posts involved; and the logic of setting the words to display as zero makes sense, it is part of the reason I offer the option to only show post titles.
As it is, I will take these ideas into consideration … thank you for the feedback.
Forum: Fixing WordPress
In reply to: My blog in IE appears with a white box over postAlthough I found this post from an unrelated search, I truly do not appreciate this statement:
Well, it is a free theme and I don’t think it is supported too much anymore.
… especially as I am preparing Desk Mess Mirrored 2.0. See the GitHub repository for the latest RC candidate here.
@rahmama, if you are still having issues please contact me directly of via the Contact Us page at http://BuyNowShop.com/
Thanks!
Forum: Plugins
In reply to: FormBuilder 0.89 php errerChange formbuilder.php on line 881 from this:
foreach($formbuilder_formDisplayArray as $formID=>$result)… to this:
foreach($formbuilder_formDisplayArray as $formID->$result)Looks like a minor typo of a “=” versus a “-” … worked for me hope it helps.
The plugin uses the basic functionality offered by
the_post_thumbnailto handle the images. The function is described here:
http://codex.wordpress.org/Function_Reference/the_post_thumbnailAlthough you have said you “regenerated” your thumbnails, it appears the “default” size (possibly set by your theme?) is 250px from your description. If your thumbnails are set to 250x250px then what you are describing is what I would expect the results to be.
This is a rather interesting case although I am not certain what more I can suggest at this time.
The plugin’s dimension option utilizes HTML re-sizing on the images. The images that are being re-sized are being taken from the Featured Image of the post and would have those “source dimensions”. Also to note, the Featured Image option takes advantage of
the_post_thumbnailfunction; and since the 150×150 exist it should be calling that first.That is what I suspect is going on, I will add this to the plugin’s TO-DO list for further review.
Thank you for using BNS Featured Category; and thank you for the feedback, too!
http://core.trac.wordpress.org/
Lots of good links and information on that page … make sure to read through most of them.