Forum Replies Created

Viewing 15 replies - 16 through 30 (of 73 total)
  • Theme Author Fabien Quatravaux

    (@fab1en)

    All the issues you are describing are due to a JavaScript error. Unfortunately, I cannot reproduce it.

    Could you contact me directly (see my contact info here : http://fab1en.github.io/) so that we can fix this issue ?

    Thanks Jaaaarne.

    Theme Author Fabien Quatravaux

    (@fab1en)

    Hi jaaaarna, and thanks to take the time to improve this theme with me.

    I have published a new version on the github repo, with the side menu enabled, and lots of new options. Could you please test it and tell me if you find any bug ? Here is a direct link to the release archive. I still have some work before releasing it on wordpress.org.

    Before releasing a new 1.1 version, I will try to write some documentation on the github Wiki.

    Regarding the comments, it is mandatory to have it on the posts listing page if there is no direct link to the single post. I don’t want to include a link to single posts because I don’t want search engine to index single posts pages. I like to see this theme as a single-page website, and visitors should not be aware that each part of the page is in fact a single post. On some production site, I even redirect single post URLs to the home page to avoid content duplication for search engines.

    For me, comment form is not an issue because you just have to disable comments to remove it. But I have an idea to avoid this ugliness by default : I could just display a tiny link “show comments” at the end of each post, that displays the comment form upon click. I could even display the comments in a popup frame. What do you think about this ?

    Thread Starter Fabien Quatravaux

    (@fab1en)

    No I have not subscribed via RSS. But you are right : I subscribed to my plugins support forums by clicking on the “Subscribe to Emails for this Plugin” link that appears on the support forum of each plugin.

    There seams to be no similar link on the theme support forums.

    Theme Author Fabien Quatravaux

    (@fab1en)

    Thanks for your feedback. I will need your help to make this theme better.

    @jaaaarne :
    * point 1 is a bug, I made a support thread dedicated to this issue and will post update there.

    * point 2 : yes, comments are disabled on the demo site. Comment support is a requirement to be listed in the WordPress repository so I can’t remove them.

    * point 3: the left menu is only available for premium customers at this moment. I plan to integrate it in the future 2.0 version.

    A lot of themes include a administration page with specific customization options. I choose to use the official WordPress customization framework instead : The Customizer. Just click on the “Customize” button (or go to Appearance > Customize) to see the various options.
    From the customizer, you can

    • choose the title color
    • change the header image
    • add menus and widgets to the footer area
    • add a logo on top of the header image
    • change the content width
    • customizer the credit popup at the bottom
    Theme Author Fabien Quatravaux

    (@fab1en)

    What type of documentation would you need ? What did you want to achieve and were not able to ?

    Forum: Reviews
    In reply to: [Skrollr] Mensonges
    Theme Author Fabien Quatravaux

    (@fab1en)

    Bonjour
    Désolé de vous avoir déçu.

    Le menu latéral n’est pour le moment accessible que pour la version premium. J’ai prévu de l’intégrer dans la version 2.0 de ce thème.
    Le processus d’intégration dans le repository WordPress est très sévère. Vous pouvez voir dans ce ticket que cela a pris presque 5 mois et 9 versions différentes pour approuver le thème. Ce processus a fait sauter quelques fonctionnalités, que je vais prendre le temps de réintégrer proprement au fur et à mesure.

    Concernant l’intégration de vidéos hébergées sur YouTube, c’est possible moyennant quelques adaptations disponibles pour les clients premium. Un exemple ici : http://focus.tv5monde.com/beautecongo/.

    Theme Author Fabien Quatravaux

    (@fab1en)

    Thanks for your review and sorry that you were disappointed by this theme.
    The left-hand menu is only available for premium clients at this moment. I plan to integrate it in the future 2.0 version of the theme.

    If the slow slide up upon first click is not working, its a bug. Thanks for reporting it, I will fix it as soon as possible.

    What type of documentation would you need ? I have noted that there is a need to explain how to disable comments. What else did you want to achieve and were not able to ?

    Just to precise that comment integration is a requirement to be listed in the WordPress repository, so I can’t just remove this part.

    Forum: Reviews
    In reply to: [Skrollr] Skrollr
    Theme Author Fabien Quatravaux

    (@fab1en)

    Sorry that you were disappointed by this theme. The left-hand menu is only available for premium clients at this moment. I plan to integrate it in the future 2.0 version of the theme.
    What type of documentation would you need ? What did you want to achieve and were not able to ?

    Plugin Author Fabien Quatravaux

    (@fab1en)

    Hi sinozzuke. There is a known bug where only the first variant of a family is listed. For example, 3Dumb is listed, but not 2Dumb, the 2D variation.

    There is only a bug on the FontSquirrel API side, where some fonts (like Quicksand) are not packaged correctly and will not work.

    Could you paste here the link to the font in FontSquirrel so that I can check if this font falls in one of those issues ?

    I contacted the original plugin author (Agbonghama Collins). He merged the pull request and published it to the WordPress SVN repo.

    It seems that the plugin has been put offline from the WordPress repository, which is a good thing since it does not offer any protection.

    But with just simple modifications, this plugin can be very useful. @quassy, I saw your github pull request. Are you interested in taking this plugin ownership ? If so, you could contact plugins@wordpress.org and ask for getting control over it. (see this post for more details). If you do so, I can help you (contact me via my github page).

    My plan is also to add a new feature to enable the CAPTCHA on login form only after three (or any number) failed login attempts.

    Hi all

    As @quassy pointed, the issue is on the following line, in no-captcha-recaptcha/login.php file :

    if ( isset( $_POST['g-recaptcha-response'] ) && !(self::captcha_verification()) ) {

    This line means “if captcha response is present AND verification is wrong, login fails”. It should be “if captcha response is NOT present OR verification is wrong, login fails”

    if ( !isset( $_POST['g-recaptcha-response'] ) || !(self::captcha_verification()) ) {

    Replace with the line above and problem is gone.

    Plugin Author Fabien Quatravaux

    (@fab1en)

    OK, great, let’s do it visually ! You could use a tool like Moqups or Wireframe.cc.

    What’s your preferred language ?

    Plugin Author Fabien Quatravaux

    (@fab1en)

    OK, so the feature you are interested in is “external URL”.

    Sorry, but I don’t really understand what you mean. With media helpers plugin, images are not uploaded. Only the URL is stored in WordPress database : the image is hot-linked from its original hosting.

    When you say “bulk upload” do you mean to have a way to insert several URL at the same time ? In this case, wouldn’t several inputs be better suited than a textarea ? And why should each image have the same name, with just a number at the end ?

    Plugin Author Fabien Quatravaux

    (@fab1en)

    Thanks @zeonish for your kind message.
    This plugin is indeed old and would deserve a complete rewrite since the Media management has been renewed in core.

    Which part of the plugin would you like to see functionning again ? Wouldn’t it be better to separate the different functionnalities in separate plugins ?

Viewing 15 replies - 16 through 30 (of 73 total)