Jump to content

diogo

Moderators
  • Posts

    4,287
  • Joined

  • Last visited

  • Days Won

    79

Posts posted by diogo

  1. Is Counting a text field? I imagine you want to do something like: "some text $articles some more text". If so, you can use the Hanna Code module, or even a simple string replace, by preparing the text in the field with a placeholder tag: "some text {articles count} some more text", and in your code: 

    <h3><span class="counter"><?=str_replace("{articles count}", $articles, $counter->Counting)?></span><span class="plus-icon">+ </span></h3>

     

    • Like 2
  2. Quite a late answer, sorry. Yes, the module doesn't interact at all with access control. You would have to do that yourself inside the template file, by creating a new permission, and throwing a 404 or printing a custom message to unauthorised users. Dealing with the menu is a bit more tricky, since, the nav uses $page->viewable(), and that's at template level, being that our template would always be "admin". I guess you could simply clone the admin template and set the permissions on that one.

  3. Hi @antpre,

    The module doesn't do anything concerning this, it only works from the moment you are looking at that page. The place where those pages are shown in the menu is only dependent on where you place them in the tree. Try moving the page from inside the "setup", one level up, into the "admin" page. Now it should be showing as a main item in the nav. If you now place in inside the "pages" page, it will show as a subpage of that manu item.

    I hope I understood your problem correctly.

  4. @desbest The answers to your questions are on that very same post:

    Quote

    Padloper 2 will be a major release that incorporates a new, central backend shop for Padloper. This will be a new process module that pulls from the existing parts of Padloper (data models, etc) into one interface (more on this below). This version will also be extensible in the frontend, allowing for the plugging in of a new, optional, commercial frontend shop (full featured shop profile).

    and

    Quote

    A new backend interface will be the major visual difference between the existing Padloper and Padloper 2. It goes beyond visual differences though. The new backend will be the single gateway for managing all shop-related features, both current and new ones.

     

    • Like 1
  5. 1 hour ago, applab said:

     The last time I used this module was on Dev 3.0.149 and it worked fine (in conjunction with your AdminCustomPages module).  I've just installed on Dev 3.0.155 and it seems to be having no effect.  Any ideas?

    It's working nicely for me on the newest dev version of PW. Did you change the process on the admin page from "ProcessHome" to "ProcessHomeReplace"?

  6. Ok, my bad. Still, reporting post serves a completely different purpose. Hopefully this will be picked up by someone that can address the issue, but the best is to post the issue on github. You would have to create an account there, and of course that's up to you, but you don't need to use git to do it, only fill a form on the site.

    • Like 4
  7. I use mostly google keep for taking notes because it's really convenient, but I use Typora for writing on my mac. If all you want is to have your notes on a directory and have them searchable, Typora is actually perfect.

    I can also attest that nvALT is a great option, especially if you use it with simplenote to keep the notes synchronized through devices.

    • Like 2
  8. On 3/14/2019 at 3:17 PM, bernhard said:

    wow!! new design for the forum, great!! ? 

    Avatars are also squeezed in the latest topics links:

    o0PbuSF.png

    I also see this. Solved with:

    .ipsDataItem_icon .ipsUserPhoto {
        width: 44px;
    }

     

    • Like 1
  9. Great work with the forum! To make it perfect, just add these to the css ?

    .uk-background-primary, .uk-section-primary {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    #masthead-logo {
        transform: translateY(-2px);
    }
    .uk-breadcrumb {
        transform: translateY(-1px);
    }

     

    @ryan, you might also consider removing the antialiasing from the body of the PW website, and add it only on the blue background areas. Here is the reasoning:

    http://usabilitypost.com/2012/11/05/stop-fixing-font-smoothing/
    https://www.zachleat.com/web/font-smooth/

    • Like 2
  10. Thanks, guys! I'm checking what's up with the server now.

    update: the server is up and the permissions are fixed. Remind me not to run terminal commands as root again ?

    • Like 2
    • Haha 2
  11. We're finally launching a redesign of our website! Doesn't feel like it to us, but our previous design was already from 2013 ?

    https://ed-works.com/

    We like to keep things simple, so the only third-party modules that we installed were Tracy debugger, Admin on steroids and Admin Theme Boss, which we tweaked a little bit to our taste.

    All in all, there's not much going on inside PW. Our main concern was to serve the frontend with responsive images with a close quality to the originals, and for this, it's important that PW allows us to use ImageMagick for resizing them. We also love to use PW's image tags to add classes to the images. In this case, we use them to display the images with three different sizes.

    We also had to change the templates to serve the projects to the homepage via Ajax.

    We hope you guys like our new baby ?

    Edit:

    I forgot to refer that we also changed our logo and tweaked our name to ED works.

    • Like 22
×
×
  • Create New...