Alexandre
Forum Replies Created
-
Forum: Plugins
In reply to: [User Specific Content] show user specific posts to currenlty logged in userDid you find a solution? I’m looking for the same thing too.
Forum: Plugins
In reply to: [Gust] Looking for just the editor portionThanks, I tried it and it works very well. Bravo for that.
I can’t help but notice that it converts MD to HTML on save (and keeps the Markdown syntax in the post_content_filtered column of wp_posts). I’m looking for a pure Markdown experience where all the posts are kept as MD inside post_content and nothing inside post_content_filtered.
Is this a planned feature?
Thanks!
Forum: Plugins
In reply to: [BackWPup – WordPress Backup & Restore Plugin] ERROR: Aborting creation.Hi Daniel,
What if I do want to keep it all inside a >2GB file? My backup is currently running at 5.2GB (targizipped) and I would like to keep it in one single file (easier to manage).
How can I do that?
Forum: Plugins
In reply to: [upPrev] Option to have or not theWhen you select to have a post thumbnail, the PHP adds a < br > (sorry it was filtered and I did not realize).
If you handle your margins and customize the CSS, this BR is getting in the way ??
Great news! Looking forward to this new version!
Forum: Plugins
In reply to: [BulletProof Security] 403 for utm_campaign with "bad" wordHi,
Actually I just realized that BP was uninstalled and I still had an old 46.something version of the htaccess.
I have rinstalled, updated all my htaccess and I don’t get the error anymore. The page works.
Sorry for all the trouble!
Forum: Plugins
In reply to: [BulletProof Security] 403 for utm_campaign with "bad" wordHi,
I just removed the word “drop” and it works, no more 403 ??
Here’s the exact URL:bloguedegeek.net /2013/01/22/mega-dropbox-killer-ou-le-successeur-de-megaupload-les-details/?utm_source=rss&utm_medium=rss&utm_campaign=mega-dropbox-killer-ou-le-successeur-de-megaupload-les-details
Thanks!
Forum: Plugins
In reply to: [SEO Ultimate] Feature suggestion: Exclude List for Most Popular WordsHi,
Here’s a real example from my blog:
Actualités,3d,imprimante,indiegogo,numériseur,photon,de,sur,high tech,techno,tests,bancs d’essai,technologie,geek,web,mobile
So I have:
Category: Actualités
Tags: 3d,imprimante,indiegogo,numériseur,photon
Most popular words: de,sur
Blog Keywords: high tech,techno,tests,bancs d’essai,technologie,geek,web,mobileYou think it would be harful to not have “de, sur” which means “the, on” from this list and get them remplaced perhaps with “printer, 3d” or any other 3rd or 4th popular word that is not already in the list?
I would envision this as being Category, Tags, Most popular words (not in Category, Tags, Blog keywords), Blog Keywords. Would that make sense?
Thanks!
I ended up using the MailChimp provided HTML to add the email in the sidebar.
Look here (right column): https://bloguedegeek.net
Forum: Plugins
In reply to: [WP Super Cache] [Plugin: WP Super Cache] Compatibility with PHP 5.4 ?Hmm. Not much in there, only this:
Premature end of script headers: php54.cgi, referer: https://xxxxxx/wp-admin/index.php
Do think it’s the PHP 5.4 implentation on the server that is wrong?
I discovered that I can append the following to my URL:
But it does not seem to be the most effective way of doing so since it has to do a redirect….
Yup, replying at the moment.
Sure Curtis! contact (@) bloguedegeek.net
Hey,
I did it myself. Here’s the code
google-analytics-popular-posts:378
$titleStr = get_the_title($getPostID); $post = get_post($getPostID); $thumb = ""; if(function_exists("woo_get_image_html")) { $thumb = woo_get_image_html('image',48,48,'thumbnail',90,$post->ID,'img'); } $dateStr = mysql2date('Y-m-d', $post->post_date); $contentStr = strip_tags(mb_substr($post->post_content, 0, 60)); $output .= '<ul>'."\n"; $output .= '<li>'."\n"; $output .= '<div class="popular_post"><a href='.$postPagepath.'>'.$thumb.$titleStr.'</a><br />'."\n";
You just need to use a more standard function than the woo_get_image_html I customized. ??
But it works pretty well for me.
https://i55.tinypic.com/ir575g.pngForum: Plugins
In reply to: How to give WordPress Plugin absolute top priority?I have the same kind of question. How to make one add_filter before/after/first/last of another. :S