Jump to content

ngrmm

Members
  • Posts

    421
  • Joined

  • Last visited

  • Days Won

    3

Everything posted by ngrmm

  1. thx problem is solved. found out that the latest adblockplus-browserplugin blocks it ... hihi
  2. hi somehow i cant see the cookiebanner on frontend. it's always on display:none fro the start. could TXT records (SPF / DKIM) have any effect on this module?
  3. thats right, but how about updating prices based on billing address?
  4. hey @kongondo thx for updates some years ago i built an multilang-shop with padloper. there is always an issue with prices based on user-lang or user-location. some shopowner want to force their users to see the a different product-price based on their location. example: user from germany pays: 20€ user from poland pays: 18€ i know this not depends on padloper. but maybe there is a possibility for force-switch the language in the new product-template. or maybe update the price at the checkout if the user enter in the final billing-address. i hope you understand what i mean ?
  5. the website has several languages: english, german, … (left-to-right) and arabic, farsi (right-to-left) englisch is the default-language but only some parts/fields are translated. everything works fine. if a text-field has no translation, the default-language will be shown instead. BUT there is a problem: when user-language is arabic (rtl) i just want to set "dir=rtl" or a class on those div's with arabic-language output. i tried it this way. But got an error. I thinks it's because the second field is from another $page. Anyway this isn't the best way because $rtl and $langclass should be unique. Whats the best way to solve this problem? $userLang = $user->language->name; $userId = $user->language->id; $page->of(false); // turn off outputFormatting (if it's not already) // get unformatted textfields $body = $page->body->getLanguageValue($userLang); $otherPageTitle = $otherPage->title->getLanguageValue($userLang); // check if user lang is rtl if($userLang == 'fa' || $userLang == 'ar') { // check if var translation exists if(!$body == '') { $rtl = "dir='rtl'"; $langclass = "rtl"; } // no translation: output default else { $body = $page->body->getLanguageValue('default'); } // check if var translation exists if($otherPageTitle != '') { $rtl = "dir='rtl'"; $langclass = "rtl"; } // no translation: output default else { $otherPageTitle = otherPageTitle->getLanguageValue('default'); } } echo "<div class='$langclass' $rtl >$body</div>"; echo "<div class='$langclass' $rtl >$otherPageTitle</div>";
  6. i installed the module and its working fine! thanks @bernhard the module uses the pw-InputfieldSelect output. is this the reason why the current template is always at top/first place? is there a way to change that? i just want to keep the sorting.
  7. i was able to get it this was: $files = glob("../dir/*.*"); $files = array_combine($files, array_map("filemtime", $files)); arsort($files); $latest_file = key($files);
  8. i have jpegs inside a folder (images). the folder is located in the templates-folder of PW site > templates > images every 30 minutes a script generates and saves jpegs into the images-folder. the all have a unique filename. is it possible to save all those images into a image-field through API? if not, is it possible to add the newest one into the imagefield? i found this $p = $pages->get(1001); $p->of(true); // if in a template code, turn off output formatting $p->images->add("http://placehold.it/350x150.jpg"); $p->save(); $p->of(false); but i don't know how to grab the url automaticly of the newest file.
  9. thx @lokomotivan actually i was able to append a div with javascript and to use it as a overlay. ps: i also found this
  10. thx @Sergio i found this one and give it a try https://modules.processwire.com/modules/avb-image/
  11. thx, good idea but i need IE11 support
  12. is there a way to output jpegs with a color-overlay? i'd like to have a transparent image with a black background. the admin should be able to set the opacity. unfortunately i'm not able to change the dom-elements or add some. so, i have a div with a background-image and a field where i can set a number (0 – 100). is there a way to let PW create an image with some kind of a color-overlay to darken an image?
  13. all of a sudden module stopped working. i do not use any caching. i'm a bit puzzeld what happened any changes from facebook?
  14. /old-dir/{all} -> /new/ was exactly what i was looking for. thanks!
  15. is there a way to setup a a redirect for all files and children-directories of a directory example: /old-dir/ /old-dir/child-a/ /old-dir/child-b/ /old-dir/child-b/test.jpg they all should be redirected to /new/ can this be achieved by just one rule? something like /old-dir/* > /new/
  16. thanks everyone. i changed them manually, wasnt that much. but link abstraction is a nice feature!
  17. it's like <img src="/test/site/assets/files/1060/image.jpg"> and should be <img src="/site/assets/files/1060/image.jpg">
  18. i moved the whole site from a sub-dir into the root dir domain.tld/test/ -> domain.tld/ but now all inline images in ckeditor-fields have the old-urls (dmain.tld/test/….jpg) is there a way or a module to fix that?
  19. i manage to get it this way. but i think there should be a better way echo "<div class='items'>"; $odd = array(); $even = array(); echo "<div class='odd'>"; foreach ($allPages as $k => $v) { if ($k % 2 == 0) { $even[] = $v; echo "<div>$v</div>"; } } echo "</div>"; echo "<div class='even'>"; foreach ($allPages as $k => $v) { if ($k % 2 !== 0) { $even[] = $v; echo "<div>$v</div>"; } } echo "</div>";
  20. i have an array of pages $allPages how can i divide them in two groups of odd and even? right now i have them in one line. but i want to have them in two groups. $allPages = $xPage->children; $counter = ""; foreach ( $allPages as $item ) { $counter +=1; if($counter == 1) { echo "<div class='columns-wrapper odd'>$item</div>"; } elseif($counter == 2) { $counter = 0; echo "<div class='columns-wrapper even'>$item</div>"; } } is there a easy way in processwire to get these two arrays? $allPages_odd $allPages_even
  21. i have pages with children. the children pages have date-fields i there a way to sort these pages in the pagetree by the children-fields can ListerPro do that?
  22. your file is a png. maybe somewhere in the process, the image is saved as jpeg and this causes an error.
  23. this works $uniques = new \ProcessWire\PageArray(); foreach($p as $item) { $uniques->import($item->category); }
  24. $p are all the pages all $p have a page-reference-field $cat first i exclude all the pages in $p which has no value for $category (multi-field) $p = $pages->find("template='xy', category!=''"); now i want to get an array of all values stored in the $category-Field of these pages.
  25. hmm … module didn't work (pw 3) but when i use the detection library and it works // Include and instantiate the class. require_once 'Mobile_Detect.php'; $detect = new Mobile_Detect; // Any mobile device (phones or tablets). if ( $detect->isMobile() ) { }
×
×
  • Create New...