Jump to content

justb3a

Members
  • Posts

    321
  • Joined

  • Last visited

  • Days Won

    5

Everything posted by justb3a

  1. @carlos: I guess there is something broken with your database because the fieldgroup failed to save after removing a field. Is this a production installation? If not, I would recommend to deinstall this module and check the clear data option (please do a backup before). After that have a look at your database and clear all stuff generated by this module if there’s something left. If the deinstallation with the clean option fails, you have to do this manually. I tested it again and everything is working as expected.
  2. @benbyf: which ProcessWire version are you using? What’s your cache setting in module settings? What happens if you disable caching (set it to “now”). If caching is enabled, have a look at your database table caches. There should be an entry named module.instagramfeed-recentmedia. Is the depending “data” field filled? There should be json including your requested images.
  3. FOOOOOOO. Upgrading an old #TYPO3 installation. #templavoila http://t.co/nSAQWP2ZKD

  4. Thanks for all your input! I decided to use the built-in WireCache functionality. v0.0.2 (module settings) Cache Expire: By default a cache lasts for one day but you can select another lifetime: ... hourly, daily, weekly, monthly ... never, to prevent expiration ... save, to expire when any page or template is saved by clicking the link below all module caches will be deleted
  5. @MuchDev: Thanks, this is really a good hint. Do you have any suggestions how best to tackle this issue?
  6. I needed this right now for a client project. Here is a little module to handle instagram feed output. (Forum | Github) Maybe someone wants to test or extend it
  7. Represents the instagram feed of a user. Instructions: Register a new instagram Client: at instagram. It's really important to add the current url as redirect url. (For example "http://page.dev/processwire/module/edit?name=InstagramFeed/"). Complete module settings (Client ID and Secret), leaving the access input token field empty. This value will be generated. Click the "get Access Token" link to generate code and access token in module settings. Configure username to output feed from (default setting is "self": to get the most recent media published by the owner of the access token) ... and use it! > detailed instructions at github
  8. version 0.0.4 often used string translations enable Language Translator for editors
  9. Displays countries and continents and their iso codes. The "value" for each country is the two-letter country code. As an added bonus, the country names are displayed in the language of the user (sorted by name ASC) if the appropriate translation was added. read more ...
  10. @ttttim: Do you use the latest version? Since the latest version every action should be logged.
  11. 0.5.0 is now released Thanks for the hint. I have no access to the site, therefore I'm not able to fix those issues. edit: ... too slow^^
  12. Never! change anything in the module code! Just go to module settings (Admin > modules > SimpleContactForm > Edit) and add there the fields. Click submit, reload the form, you will see the new fields appended. Please have a look at the documentation!
  13. The field you named "Web Url (Optional)" is not allowed to be filled. This field should be invisible. Spam boots are used to fill every field and the honey pot technique is one way to keep them out. Hide this field, add one field more to get a web url field if needed.
  14. @kradzcalypse: 1) A new template called simple_contact_form.php will be created in your site/templates directory. Once created you can/should modify the template as well as the fields to your own needs, just make sure to maintain the names of the fields. So you can substitute the list (<ul> <li>..) tags with divs or adapt your css and set "list-style: none;" for this list. To hide the fields adapt the css using for example "display: none;". 2) The action is not empty. action="./" refers to the current page. Have a look at your log file (Admin > Setup > Logs > simplecontactform-log). I guess the spam protection applies here and redirects you to the home page. ---------------------------------------------------- PS: These are simple basics of CSS and HTML.
  15. New version 0.1.2 * fixes CSRF token validation (Thanks!) * adds option to overwrite email message * adds "from name" for generated email * allows multiple recipients
  16. I've found the solution to all problems: "You can use another programming language." #stackoverflow

  17. This is just a JavaScript/CSS issue. Go to Modules > Core and install the Languages Support - Tabs module.
  18. @alan: Sorry I never want to output extra attributes in CkEditor or similar. If you find a solution, please let me know. @statestreet: This is not possible at the moment, but I've planned to allow markdown in the fields.
  19. The user image is now displayed correctly. Thanks I also tried to reproduce that bizarre rotation (same Chrome version, PW 2.6.8 as well as 2.6.9, Mac). But everything works as expected. One more little thing: I changed the user display name field in module settings and used the build in "title" field. This field is of type FieldtypePageTitle and won't be displayed. Could you add this to the allowed text field types please? AdminThemeRenoHelpers.php - if($field instanceof Field && ($field->type == "FieldtypeText" || $field->type == "FieldtypeConcat")){ + if($field instanceof Field && in_array($field->type, array('FieldtypeText', 'FieldtypeConcat', 'FieldtypePageTitle'))){
  20. Hi, maybe I'm doing something wrong. I selected an image field in module settings which is assigned to the user system template. But no avatar image appears. Looking into the code it turns out that in AdminThemeRenoHelpers.php line 81 the property avatar_field has to be renamed to avatar_field_user. After changing that line the image appears. ProcessWire 2.6.8 dev. Table modules column data looks like this: {"colors":"kfi-robot","avatar_field_user":"blog_images","userFields_user":"name",...} (changing the name of the input field should fix this as well). + $adminTheme->avatar_field_user != '' ? $imgField = $user->get($adminTheme->avatar_field_user) : $imgField = ''; - $adminTheme->avatar_field != '' ? $imgField = $user->get($adminTheme->avatar_field) : $imgField = '';
  21. Sometimes it's actually helpful to read the usage instructions. If you have an idea how to avoid passing a second parameter (=textdomain), please let me know.
  22. The scf-date field should be invisible as well. Please add in site/modules/SimpleContactForm/SimpleContactForm.module after line 424 var_dump($field); and paste the output (make sure $config->debug is set to true in site/config.php): foreach ($form as $field => $value) { if (empty($value)) { var_dump($field); $error = true; continue; } }
  23. #firefox antwortet auf console.log(); mit "Seien Sie aufmerksam, wenn Sie Sachen einfügen, die Sie nicht verstehen." http://t.co/m7453FSdDG

×
×
  • Create New...