Forum Replies Created

Viewing 15 replies - 31 through 45 (of 46 total)
  • Thread Starter Dario Ferrer

    (@metacortex)

    Good! downloading and testing…

    Thread Starter Dario Ferrer

    (@metacortex)

    Fixed in 1.2.6 / WP 2.7.1! Thank you Hiroaki!

    Thread Starter Dario Ferrer

    (@metacortex)

    You’re right @flipper, I downloaded the plugin again (0.4.2) and noted all code is readable now. Well done, and thanks.

    Thread Starter Dario Ferrer

    (@metacortex)

    TNX for all. I sort out a lot of GPL questions.

    In fact we just upload wrong version, now we’ve fix that.

    In fact I just discovered this discussion. ??

    Come on man…

    Thread Starter Dario Ferrer

    (@metacortex)

    Is there a copy of the GPL or other open license in the addon package? What license does the author(s) specify the addon is under?

    There is not a copy of license. Only this in pageFlip.php file:

    /*
    *Plugin Name: FlippingBook Wordpres Gallery Plugin
    *
    *Description: FlippingBook Photo gallery plugin with page flip effects.
    *Author: FlippingBook WP team
    *Author URI: https://pageflipgallery.com
    *Version: 0.4.1
    *
    *License:
    *End User License Agreement
    *Copyright (c) 2008, https://pageflipgallery.com
    *All rights reserved.
    *
    *By using the software, you agree to be bound by the terms of this license.
    *This program is free software; you can redistribute it and/or modify
    *it under the terms of the GNU General Public License as published by
    *the Free Software Foundation; either version 2 of the License, or
    (*at your option) any later version.
    *This program is distributed in the hope that it will be useful,
    *but WITHOUT ANY WARRANTY; without even the implied warranty of
    *MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    *GNU General Public License for more details.
    */

    Even now, I am working on both open source and closed source addons and mods for WP. Just because some are released with a commercial license versus an open source license does that make them any less relevant, or useful to some? Why can’t an addon for WP be commercial, and not open source? Trying to say that an addon can only be open source or closed source, takes away an author’s or artist’s god given right to choose how to license their creation.

    In understand and agree you @infiniteknight, but the claim is pointing to broken rules. Your proposal about a special paid section don’t sounds bad, but giving a free product and then discover that any file is -at least- readable (and in addition with a restrictive warning), it is a dishonest act. All that the developer is offering now, is a kind of demo of the real paid product.

    If you can read the line, and there is a GPL or similar license included to cover the addon, what would you have to reverse engineer? The code wouldn’t be encrypted if you could read the notice in it in plain text…

    Yes, the code have been encrypted in all php files. And these have the restriction line above the encrypted code. Only one of those files is readable (pageFlip.php).

    Thread Starter Dario Ferrer

    (@metacortex)

    Oh thank you @mptre, this is the better news of this weekend!.

    Downloading… =P

    Kind regards my friend.

    PS: Also I readed the doc of JQuery Checkbox (also thanks for that info). Certainly you’re right, it’s a very flexible and customizable resource.

    Thread Starter Dario Ferrer

    (@metacortex)

    Solved. The problem is caused by the plugin Sociable. Once I deactivated it, my dashboard appears again.

    Thread Starter Dario Ferrer

    (@metacortex)

    Thanks mptre,

    It′s a good news! Then I’ll tune up for the next version to apply it. This baby worth the wait ;).

    If you allow another suggest, would be better if the html structure (of buttons) is more able to customize. For example, in the last days I tried (without success) to replace the input-radio image with a whole 200 x 40px “sprite” button (text included in image). I want to ask you if is possible to change the form/input way to another more customizable for designers (as list items).

    Hiroaki, I was made a spanish translation. Where I can send it?

    Wonderful plugin. You saved my life today Hiroaki! Thanks.

    A little option to clear radio buttons would be nice ;). Sometimes an user can choose a wrong option. Yes, its possible to create an empty radio button, but it looks a little ugly staying there alone |D.

    Thread Starter Dario Ferrer

    (@metacortex)

    Solved guys!

    Based in this topic I had modify the string:

    <?php foreach((get_the_category()) as $cat) {
      if (!($cat->category_parent == 3))
      if (!($cat->category_parent == 4))
      echo $cat->cat_name . ' ';
    };?>

    The complete string:

    <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
    
    <?php foreach((get_the_category()) as $cat) {
      if (!($cat->category_parent == 3))
      if (!($cat->category_parent == 4))
      echo $cat->cat_name . ' ';
    };?>
    
    <div class="post" id="post-<?php the_ID(); ?>">
      <h3 class="storytitle"><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h3>
    </div>
    
    <?php endwhile; else: ?>
    <?php _e('Sorry, no posts matched your criteria.'); ?>
    
    <?php endif; ?>

    This chapter is finished. Thanks very much for your help. I’m happy.

    Can you post a link to your website?

    Thread Starter Dario Ferrer

    (@metacortex)

    Hello Kafkaesqui,

    Ops! there is a detail I forgot to mention. The article “This is an apple’s article” was assigned to three different categories, which belong to parent cats. I’m very, very sorry for this critical omission:

    Parent-1 (ID=4)
    — Fruit (ID=16)

    Parent-2 (ID=3)
    — Vegetables (ID=18)

    Parent-3 (ID=5)
    — Plants (ID=17)

    In this order I had the modification in this way:

    <?php query_posts('cat=16'); ?> // Fruit
    <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
    	<?php the_category() ?>
    	<div class="post" id="post-<?php the_ID(); ?>">
    		 <h3><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h3>
    	</div>
    	<?php endwhile; else: ?>
    	<?php _e('Sorry, no posts matched your criteria.'); ?>
    
    <?php endif; ?>

    However, results are same as before. Query_posts certainly limit posts of a specific category, but multiple cat names continue appearing above the title.

    Until this moment, the nearest result was give get_the_category tag with this string:

    <?php
    $category = get_the_category();
    echo $category[0]->cat_name;
    ?>

    This shows only one cat as I need, but limited to array[0], it’s a shame:

    Vegetables
    This is an apple’s article

    Fruit
    This is an orange’s article

    Fruit
    This is a watermelon’s article

    The right way is to show “Vegetables” in each cat, but it don’t works. Also I proved with various conditional tags ways without success.

    Thread Starter Dario Ferrer

    (@metacortex)

    Hi HandySolo,

    thank you very much for your suggest. I proved this plugin aprox. 3 days ago, but it don’t worked in the cat links placed above the post titles. My template code looks thus (home.php):

    <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
    	<?php the_category(' - ') ?>
    	<div class="post" id="post-<?php the_ID(); ?>">
    		 <h3><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h3>
    	</div>
    	<?php endwhile; else: ?>
    	<?php _e('Sorry, no posts matched your criteria.'); ?>
    
    <?php endif; ?>

    Is code right? As you can see, posts are showed as only titles, resulting in some like this:

    Fruits – Vegetables – Plants
    This is an apple’s article

    I want to show only one category above. In this case, category ID (Vegetables) is “3”.

    Thread Starter Dario Ferrer

    (@metacortex)

    Hello irocket,

    Mi website is in spanish (throught an es_ES file placed in Languages directory).

Viewing 15 replies - 31 through 45 (of 46 total)