Jump to content

pwired

Members
  • Posts

    2,318
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by pwired

  1. v.1.5.6.4 has proven to be rockstable, safe, fast, easy and (end) userfriendly coding in the templates looks very familiar with coding in processwire templates v.1.5.6.4 architecture has same focus as processwire: nothing there that should not be there hundreds of available good plugins/modules ======================================================================== since v2.x.x.x and up everything changed focused on making it shine and show off still no confirmed stable version, too many bugs left without attention too many developers releases and forum workarounds Seems Daniel doesn't care anymore for a clean roadmap and releases plugins/modules for v.1.5.6.4 not compatible with v2.x.x.x Disclaimer: this is my own experience and opinion go to the opencart forum and check out v2.x.x.x for your self.
  2. With processwire and opencart version 1.5.6.4 (not v2 and up) you have the best of 2 worlds.
  3. Plugins for ckeditor: http://ckeditor.com/addon/colorbutton http://ckeditor.com/addon/magicline Or dive into the config.js and do it yourself, here are a few examples to make you familiar: config.allowedContent = true; // don't filter anything, i.e. allow custom style / classes / id etc. config.enterMode = CKEDITOR.ENTER_P; // wraps everything in <p>, change it to your liking. config.forcePasteAsPlainText = true; Use google to find more. Here is also a good post to read: https://processwire.com/talk/topic/3972-ckeditor-with-attritbutes/
  4. Upgrading doesn't always bring better performance or safety. Use a hoster where you can choose the php version.
  5. This is just great and shows the endless ways of "everything is a page".
  6. You can switch off 'ACF' in your CK Editor settings which will stop the editor stripping any markup If you just want to allow 'class' then go to CK Editor settings for your field and find 'Extra Allowed content' and enter in there the following: *(*) This should allow you to put classes without them being stripped.
  7. For the 7 layouts you've shown above, here is another great css framework to layout content: pocketgrid. http://arnaudleray.github.io/pocketgrid/docs/ Pocketgrid is in the same spirit as pw: total freedom, leaving it all up to you. As for blocks and widgets, compared to wordpress, here are some helpful links: https://processwire.com/talk/topic/316-widgets-and-me-thinking-aloud/#entry2208 https://processwire.com/talk/topic/7350-smart-widgets-blocks/
  8. Hi, Glad you found processwire, a time and headache saving system when compared to others. Beginners questions are already answered many times in a wide range and to a great extend. Recommended to find your answers in the beginning is to search inside the processwire forum with google. https://processwire.com/talk/topic/4173-grouped-forum-posts-links-articles-tutorials-code-snippets/ Also, besides the forum, the processwire website holds many information sections: https://processwire.com/docs/tutorials-old/quick-start/your-first-template/ https://processwire.com/api/templates/
  9. pwired

    Follow us

    clean style and nice vertical parallax. Didn't know aileron font until now, looks good.
  10. https://processwire.com/talk/topic/10-how-do-i-interact-with-the-image-field-in-processwire/
  11. Don't worry, every new language looks complicated in the beginning. But as you play and work with it, the more it starts to make sense. Consider your self lucky you have found processwire, a system that makes sense in so many ways that making websites with it is going to be a pleasure. Before you know it you will reach the point where you wonder your self: "how come I didn't know this already" ? Remember: In processwire everything is handled as "a page". Hence it's limitless organisation power ! What you need to start with is some basic html replacements with php, here are some examples. 1. Instead of an absolute path you use this: <img src="<?php echo $config->urls->templates?>pics/me.jpg" /> 2. Instead of storing images in a sub folder under templates you can store them using the backend and then call them on the current "page" $page like this: example1: $image = $page->images->getRandom(); $image = $page->images->first(); $image = $page->images->eq(1); // eq(1) = second image $image = $page->images->get("name=picture.jpg"); // get by image name example2: <img src="<?php echo $image = $page->images->get("name=picture.jpg"); ?>"/> example3: <div class="your class"> <?php $image = $page->images->get("name=logo.jpg"); $image = $image->width(200); echo "<img src='$image->url'/>"; ?> </div> Instead of using $page for the current "page" you can call images from any "page" when using $pages instead of $page Here is a simple example when using the bxslider picture slider: (here "bxslider-pictures" is the "page" used to organize the pictures for the bxslider picture slider) <li> <?php $temp = $pages->get("/bxslider-pictures/"); $image = $temp->images->get("name=hill.jpg"); $image = $image->width(200); echo "<img src='$image->url'/>"; ?> </li> You see ? It is all doable and gives you total freedom on the front side of processwire. Here is more you can eat all your code out with images: https://processwire.com/api/fieldtypes/images/ Welcome to Processwire.
  12. Thanks for all the replies. I am going to try all 3 of them, androidstudio, ratchet and phonegap.
  13. Hi, I want to learn how to make apps for Android. So I was wondering if one of you guys is doing this already, besides processwire coding, and could give me some advice what is better to use: Eclipse or Android-Studio ? https://developer.android.com/sdk/index.html
  14. spam alert
  15. A picture can say so much more
  16. Thanks @ tpr, I have it working now. Thanks for the link. Didn't even know about this :after pseudo element.
  17. Hi Cycle2 was mentioned not so long ago as a recommended slideshow. I am using it inside processwire for a simple website but can not get - pause on hover - to work as shown on this cycle2 demo page: http://jquery.malsup.com/cycle2/demo/pause.php On that page, when the mouse is over a picture, the slide not only stops but also a caption is shown in the top right corner: "Paused" inside a dark rounded rectangle. I can't get this "Paused" caption to work and don't see any documentation about it. Inspect element with firefox also did not show me how to do it. Does anyone know how to get this to work ?
  18. Do a full install of processwire on the hosting server, during the setup processwire informs about necessities and errors. Just check how the setup ends and see if this leads you to an answer. Did you check the .htaccess and config.php files already ?
  19. pwired

    A note of thanks

    Welcome home at processwire Dive as quickly as you can into the "no frontend" way of processwire and set your self free in cms land. http://processwire.com/api/templates/ http://cheatsheet.processwire.com/
  20. Did you try to prototype your ratio between number of pages for default and additional language ? Once you have it prototyped it is easy to fill in the parts of processwire to make it up. There are many ways to prototype e.g. http://pencil.evolus.vn/
  21. Many comparisons are so superficial. It is therefore no wonder why you never see the clear reasons mentioned in "a comparison" why people ended up with processwire.
  22. So far I found it: wire/modules/Inputfields/InputfieldTinyMCE/InputfieldTinyMCE.js apply_source_formatting: true, Code inside Tiny MCE html source editor no longer looks like a blob of code but lined up vertically.
  23. I still have a few old websites with Tiny MCE inside processwire. When I edit body content I sometimes prefer to use the html source editor e.g. to edit a html table. However all html code show up inside the source editor wrapped over the editor. This makes code difficult to read. How can I configure Tiny MCE so that html code inside the source editor show up as lines of code stacked vertically with line breaks like in a code editor ?
  24. Used to work in computer shops when laptops were easy to open and swap a hdd, memory card, micro, repair a usb or power connector or simply clean the ventilators. Seriously, latest Apple models are evolving into unrepairable throw-away machines. They become so slim that inside, one part is either, glued, soldered or integrated with another part. It has become almost impossible to repair, replace or upgrade a part because opening and disassembling means your are going to break something. I think this is being done purposely to by pass local computer service and force you to use an expensive Apple store with a service contract. And what about these Apple models without a LAN connector and only 1 usb connector, often not a standard one but a mini or micro usb connector. Only 1 usb connector means you are going to use this single connecor many times reducing it's life span without having a second one available. Edit: Apple saves a lot of money and at the same time let people believe that portless devices is a "modern trend"
×
×
  • Create New...