• Resolved jayus.es

    (@jayuses)


    Hello,

    I’ve updated to version 1.5.1 and my custom message in the box changed to the one by default.

    I know I can change the message editing the “cc-configurator.php” file but I’m not able to delete the link in the text as I had done before updating the plugin but now I don’t remember how to do it.

    I only want the image (linked to the license) and the text I write in the box. How can I do it?

    And, one more thing, will I have to edit the .php file every time the plugin is updated?; with previous updates I didn’t have to do that.

    Thanks and regards.

    http://wordpress.org/plugins/creative-commons-configurator-1/

Viewing 9 replies - 1 through 9 (of 9 total)
  • Plugin Author George Notaras

    (@gnotaras)

    Hi,

    Normally, every time the plugin is updated the php files are overwritten with the new ones.

    What you ask can be done by adding a filtering function in the functions.php file of your theme. This way you will not have to edit the php files directly in order to customize the message.

    This information exists in the plugin description page.

    Here is a sample:

    function my_custom_license_text( $license_text ) {
        // ... customize the string $license_text
        // Example:
        $customized_license_text = $license_text . '<br />I am an extra custom message';
        return $customized_license_text;
    }
    add_filter( 'bccl_cc_license_text', 'my_custom_license_text', 10, 1 );

    Hope this helps.

    If you cannot make it work, please post your code enclosed in backticks.

    George

    Plugin Author George Notaras

    (@gnotaras)

    I am marking this topic as resolved.

    Please let me know if you did this without issues.

    Thread Starter jayus.es

    (@jayuses)

    Hello,

    I deleted the plugin (two start from the very beginning) and installed it again. After configuring the license, I added the code you gave me (with my custom text) to my theme functions.php file.

    But the text added to the existing one in the box. Now, I have the text by default and mine.

    Here you can see it: http://jayus.es/el-ultimo-caton-de-matilde-asensi-gratis-amazon-espana/

    And this is the code in the “cc-configurator.php”:

    $work = sprintf("%s %s %s", $work, __("by", 'cc-configurator'), $by);
                } else {
                    $work = __('This work', 'cc-configurator');
                }
            }
            $work .= sprintf(", ".__('unless otherwise expressly stated', 'cc-configurator').", ".__('is licensed under a', 'cc-configurator')." %s.", bccl_get_license_text_hyperlink());
    
            // Additional Permissions

    I only want this text in the box: “Esta entrada, a excepción del contenido de terceros y de que se indique lo contrario, se encuentra bajo una Licencia Creative Commons de Atribución-NoComercial-SinDerivadas.”

    What do I have to do?

    Thanks again?

    PS: I’m a newbie in php codes and those things 🙁

    Plugin Author George Notaras

    (@gnotaras)

    Hello,

    It’s OK 😉

    Generally editing the PHP files directly is a bad practice. They will be overwritten on the next plugin update and your changes will be lost.

    In that case, add the following code in your theme’s functions.php file:

    function my_custom_license_text( $license_text ) {
        $custom_text = 'Esta entrada, a excepción del contenido de terceros y de que se indique lo contrario, se encuentra bajo una Licencia Creative Commons de Atribución-NoComercial-SinDerivadas.';
        return $custom_text;
    }
    add_filter( 'bccl_cc_license_text', 'my_custom_license_text', 10, 1 );

    Let me know if it works.

    Plugin Author George Notaras

    (@gnotaras)

    Currently, there is no Spanish translation for this plugin. If it sounds interesting, you could join the translations project, request the Spanish language and start translating it:

    https://www.transifex.com/projects/p/cc-configurator/

    Registration is free and there is an online tool to help you translate the strings easily.

    Just letting you know…

    Thread Starter jayus.es

    (@jayuses)

    Thank you! It worked.

    Concerning the translation, I will do it 🙂

    Plugin Author George Notaras

    (@gnotaras)

    Hi Alvaro,

    Thanks for joining the translations project. You are now coordinating the Spanish translation.

    Regarding the translation, please take your time. There are no deadlines. Whenever the translation reaches completeness 80% or greater it will be included in the distribution package of the plugin.

    Also, thanks for letting me know that the customization using the filter worked as expected. Much appreciated.

    Kind Regards,
    George

    Thread Starter jayus.es

    (@jayuses)

    Thanks to you for your plugin! 🙂

    One more thing: translation completed! 😀

    Plugin Author George Notaras

    (@gnotaras)

    Whoa! You are fast! 🙂

    Thank you very much for the Spanish translation! Much appreciated.

    I plan to release 1.5.2 in the weekend. The translation will be included.

    Thanks again,
    George

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘How can I delete the link in the box that appears in the posts?’ is closed to new replies.