Plugin Directory

Changeset 2428165


Ignore:
Timestamp:
11/29/2020 04:32:57 PM (5 years ago)
Author:
ntm
Message:

minor appearance bug fixes

Location:
custom-field-list-widget/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • custom-field-list-widget/trunk/readme.txt

    r2178828 r2428165  
    1414== Description ==
    1515
    16 This plugin creates sidebar widgets with lists of the values of custom fields. The listed values can be (hyper-)linked in different ways.
     16This plugin creates sidebar widgets with lists of the values of [custom fields](https://wordpress.org/support/article/custom-fields/). The listed values can be (hyper-)linked in different ways.
    1717One possibility is to create a list of all values of a custom field, which will be groupped by their post (or page) and (hyper-)linked automatically to this post (or page).
    1818Another possibility is that you can create a list of all unique values of a custom field and specify links as you like (or not).
     
    2929* German
    3030* English
     31* Spanish provided by Juan Jose Bescos of [IBIDEM GROUP](https://www.ibidemgroup.com "Juan Jose Bescos of IBIDEM GROUP")
    3132* Hindi provided by (complete only until v1.1.7) [Kakesh Kumar](http://kakesh.com "Kakesh Kumar of kakesh.com")
    3233* Danish (frontend only) provided by [Peter Kirring](http://http://www.fotoblogger.dk/ "Peter Kirring of fotoblogger.dk/")
     
    120121
    121122== Changelog ==
     123= v1.4 =
     124* Spanish language files provided by Juan Jose Bescos of [IBIDEM GROUP](https://www.ibidemgroup.com "Juan Jose Bescos of IBIDEM GROUP")
     125* minor appearance bug fixes
    122126
    123127= v1.3 =
  • custom-field-list-widget/trunk/widget_custom_field_list.php

    r2178828 r2428165  
    88Author URI: http://undeuxoutrois.de/
    99Min WP Version: 2.7
    10 Max WP Version: 5.3
     10Max WP Version: 5.6
    1111License: GNU General Public License
    1212Text Domain: custom-field-list-widget
     
    1818   
    1919Localization:
     20    Spanish - Juan Jose Bescos of IBIDEM GROUP (https://www.ibidemgroup.com)
    2021    Bulgarian - Peter Toushkov
    2122    Hindi - Kakesh Kumar (http://kakesh.com/)
     
    2930For detailed information about the usage of this plugin, please read the readme.txt.   
    3031
    31 Copyright 2018  Tim Berger  (email : be.tim.info@web.de)
     32Copyright 2020  Tim Berger  (email : be.tim.info@web.de)
    3233
    3334    This program is free software; you can redistribute it and/or modify
     
    20002001            if ( 'unsaved_changes' != document.getElementById( this_id + '_helper' ).value ) {
    20012002                document.getElementById(this_id).title = String(document.getElementById( this_id + '_helper' ).value);
    2002                 var tst = '<?php  echo CUSTOM_FIELD_LIST_WIDGET_URL.'/widget_custom_field_list_individual_href.php?height=400&width=750&abspath='.(rawurlencode(ABSPATH)).'&number='; ?>' + String(number) + '<?php echo '&_wpnonce='.wp_create_nonce('customfieldlist_individual_href_security'); ?>';
     2003                var scrheight = Math.round(window.innerHeight-(window.innerHeight * 0.12));
     2004                var tst = '<?php  echo CUSTOM_FIELD_LIST_WIDGET_URL.'/widget_custom_field_list_individual_href.php?height=\'+scrheight+\'&width=750&abspath='.(rawurlencode(ABSPATH)).'&number='; ?>' + String(number) + '<?php echo '&_wpnonce='.wp_create_nonce('customfieldlist_individual_href_security'); ?>';
    20032005            } else {
    20042006                document.getElementById(this_id).title = '<?php echo __('Unsaved changes','custom-field-list-widget'); ?>';
Note: See TracChangeset for help on using the changeset viewer.