fxbodin
Forum Replies Created
-
Forum: Plugins
In reply to: [Aesop Story Engine] aesop-cover-imgI understand. Sorry to bother you about an unsupported sample theme.
I was just that before upgrading, the front page (a standard WP feature that allow to set up any page as front page) worked perfectly. Just like yours at https://playground.aesopstories.com/
Just trying…
Thanks anyway.Forum: Plugins
In reply to: [Aesop Story Engine] aesop-cover-imgOK, but for https://emmroques.com/wordpress/emmanuelle_roques there’s nothing to scroll. I have a quick loader then blank.
With the previous version of the sample theme, I had the grid generated by [aesop_collection]Forum: Plugins
In reply to: [Aesop Story Engine] aesop-cover-img404: its a work in progress ??
Featured:
Yes, for https://emmroques.com/wordpress/forces-naturelles/ it woks well
I understand: “no featured image prevents all the content to load”. Correct?But for https://emmroques.com/wordpress/emmanuelle_roques that is a page (not a post), no result.
Forum: Plugins
In reply to: [Aesop Story Engine] aesop-cover-imgHi Nick. Thanks for your commitment.
No changed the folder name. Just erased the previous, then uploaded the just unzipped new one.Weird:
this post works:
https://emmroques.com/wordpress/road-movie/
this one, doesn’t:
https://emmroques.com/wordpress/forces-naturelles/
neither does the page designed as home, that contains only a featured image and a [aesop_collection]:
https://emmroques.com/wordpress/emmanuelle_roquesAny help?
Thanks.Forum: Plugins
In reply to: [Aesop Story Engine] aesop-cover-imgHi Nick and thanks for your quick answer. Actually I didn’t manage to notice the update (same version number).
So I just replaced my previous version of Aesop Sample Theme by the corrected one and… the site doesn’t work anymore ?? Blank pages and posts. I’m aware the sample theme is not supported. Anyway, if you previously met this behavior, I’d be glad to have a trick shared.Forum: Plugins
In reply to: [Aesop Story Engine] aesop-cover-imgHi Nick and thanks for your quick answer. Actually I didn’t manage to notice the update (same version number). It works. Thanks again.
EDIT : read furtherForum: Plugins
In reply to: [Aesop Story Engine] aesop-cover-imgHi.
I kind of resolved the same issue.
In the sample theme, functions.php contains a single function “class ASTFunctions” that is supposed to call “add_theme_support( ‘post-thumbnails’ );” that is the function that make the featured image selector viewable in the post / page admin.
It didn’t work.
So I moved add_theme_support( ‘post-thumbnails’ ); outside the class ASTFunctions.
Now it works.
I have to guess that class ASTFunctions is somehow buggy, but can’t figure out why, since I’m not a developer ??
Hope that helps.
Bests
—
Fran?ois-Xavier BodinForum: Plugins
In reply to: [Sharedaddy] Sharedaddy plugin causing background problems in IE8Unfortunately, no: desactivate Sharedaddy to restore the bg on IE8. But you lose the sharing services. I’m looking arround for a way to keep Sharedaddy on. Trying the checkbox at the bottom on the plugin settings page solves the pb, but you miss the ajax effects as well as the design. Is there a way to move the .js and .css in a right folder manually and get the complete Sharedaddy behavior without the side effect?
Forum: Plugins
In reply to: [Sharedaddy] Sharedaddy plugin causing background problems in IE8Hi aquastar.
I faced the same issue today.
Noticed that my page had a duplicate call to jquery, whitch call was made by Sharedaddy…<script type='text/javascript' src='https://www.agence-cap-ferret.fr/prod/wp-includes/js/jquery/jquery.js?ver=1.6.1'></script>
After desactivating Sharedaddy, everything gets OK again.
Now, looking for a way to make Sharedaddy use the existing call to Jquery without calling it again.Forum: Plugins
In reply to: [Sharedaddy] [Plugin: Sharedaddy] French translation for 0.2.5Amazingly, when I “send to a friend” from the eurobillards.fr website, my “friend” (did I mention that I sent to myself? friends for debugging are rare ?? gets actually the french sentence in the mail.
Might it be a configuration issue?
Thanks for handling.Forum: Plugins
In reply to: [Sharedaddy] [Plugin: Sharedaddy] French translation for 0.2.5Hi Dario and John.
Thanks for releasing and localizing this usefull plugin.
I face a problem while I plug it in a blog of mine : a sentence in the e-mail stays in english : “thinks you may be interested in the following post:” instead of “pense que l’article suivant peut vous intéresser:”
It seems that all other text is correctly translated.Have you any idea how to fix this?
Wordpress 3.1
Sharedaddy Version 0.2.12Thanks in advance and best regards.
—
[email protected]Forum: Plugins
In reply to: Showing posts on pagesHi.
Here is how I handled that aim.
Hope that helps.
Regards.<div id="content"> <?php if (have_posts()) : the_post(); ?> <h1><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); // of the page ?></a></h1> <?php the_content(); // of the page endif; ?> <?php if (is_page('21')) : // nr of the page you want news in $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; // restaure pagination query_posts("cat=1&paged=$paged"); // nr of the category you want selected in this page $more = 0; // "Read More" in anothe page than Archive thanks to https://www.ads-software.com/support/topic/67173?replies=16 if (have_posts()) : while (have_posts()) : the_post();?> <div class="entry"> <h3 class="entrytitle" id="post-<?php the_ID(); ?>"><a href="<?php echo get_permalink() ?>" rel="bookmark" title="Permanent Link: <?php the_title(); ?>"><?php the_title(); ?></a></h3> <div class="entrybody"> <p class="entrydate"><?php the_date('','<span>','</span>, '); ?>at <?php the_time(); ?> :</p> <?php the_content(); ?> </div> </div> <?php endwhile; endif; ?> <div class="navigation"> <span class="left"><?php next_posts_link('« précédentes actus') ?></span> <!--<span class="left"><a href="/archives/" title="Accéder aux rubriques, tags et archives mensuelles">archives des actus adhérents</a></span>--> <span class="right"><?php previous_posts_link('actus plus fraîches »') ?></span> </div> <?php endif; ?> </div>
I had the same. Cleaning the Firefox 3 (OSX) cache solved the problem. Thanks.
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery]ThickBox has asymmetric bordersI see it rightened either.
But used to have the same problem out of NextGen Gallery. Might involve the javascript display.Forum: Themes and Templates
In reply to: remove li from wp_list_pagesIt’s extraordinary how the the community empoyer each of us!
Thanks to that thread, I resolved an issue that seemed to me very complicated before.
Hope that I contribute one day with such valuable advice.
Thanks again.