postrophe
Forum Replies Created
-
Forum: Plugins
In reply to: [Query Posts] [Plugin: Query Posts] I would like a query-comments insteadHi,
For me, my goal is to have ” random comments ” in my sidebar. And have the control to show or not the basic metadata.
Author name (full name or not) – link to the comment ( title ) – excerpt –
Pierre dans Jour 47
Rebonjour Yves, Je fais […]With the control of formating the divers data. Be abble to include/exclude category /posts.
But poeple will surely want more complex meta – grabing,
I use HERE “Post-lister“, but the author stop it’s development, For me it’s half working, I can not grab the name of the comment author and choose categories.
Important thing for me is : ORDER BY RAND()
Pierre
Forum: Fixing WordPress
In reply to: How can I display a random comment from a PAGE on my site on home?Hi,
I’m not seeing a lot of information regarding ” random comment “.
On a site I’m using the “recent comments widget”, and would like to have “random comments” from a ” category “, instead. I would like them formated as the same way as the WP widget ( author + post name link )
Is there already a widget doing this, or would I need to use a text widget with a modified code snippet.
Thanks for any cue.
Pierre
Forum: Fixing WordPress
In reply to: Change wp-contentYou got me there. I didn’t digg enough.
Hummm… I guess its a “first impression” of security, then.
Thanks, I’m waking up, now.
Pierre
Forum: Fixing WordPress
In reply to: Change wp-contentEverything else located in your themes, plugins, and uploads folders are as plain as day in your source code.
Yes
They are web accessible directories that display your theme and uploaded content.
No
( well, I’v left one directory of PDF’s to be accessible )
Pierre
Forum: Fixing WordPress
In reply to: Change wp-contentHi,
Sorry I missed that ” source code “.
I’v seen some tread on the net about that. Can not remember where.
Good luck.
Pierre
Forum: Fixing WordPress
In reply to: Change wp-contentForum: Fixing WordPress
In reply to: Change wp-contentHi,
How about making a copy of your invisible ( .htaccess ) file, and moving it to the root of your site. ( /public_html/your site name )
Pierre
Forum: Fixing WordPress
In reply to: Top level menu highlightingHi,
I use the Thesis Theme. Currently there are ( “current background color” and “current parent background color” ) that works with Thesis 1.8 menu and WP-menu(3.x) for the top level Tabs
For my test site I have achived that using the ” WordPress(3x) nav menu ” and 6 lines of CSS.
First (1) level highlighting ( white ). Second (2) level highlighting ( yellow ). Third (3) level highlighting ( orange )
1 – Highlighting the ( top categories Tabs ) while on a “single post” of my top categories.
.current-post-ancestor a {background: #FFFFFF;border-bottom-color:#FFFFFF;}
2a – Highlighting the ( subcategories ) while on a “single post” of my child/subcategories.
.sub-menu .current-post-ancestor a {background:#F0EEC2;}
2b – Highlighting the ( parents and child/subcategories ) while on a child/subcategories. ( need to define a category for the appropriate posts )
.cat_galerie-2010 .current-menu-parent a {background:#F0EEC2;}
.cat_galerie_2011 .current-menu-parent a {background:#F0EEC2;}3 – Highlighting the ( parents and child/subcategories ) while on a “single post” of my child/subcategories. ( need to define a “CSS Class” (post edit) for the appropriate posts ) – here I target a “CSS Class” and it’s appropriate menu-item created by WordPress )
.postgalerie2010 .menu-item-776 a {background:#FFD596;}
.postgalerie2011 .menu-item-785 a {background:#FFD596;}This does not play well with IE.
Hope that will help you.
Pierre