Jump to content

Macrura

PW-Moderators
  • Posts

    2,776
  • Joined

  • Last visited

  • Days Won

    40

Macrura last won the day on November 8 2023

Macrura had the most liked content!

2 Followers

Contact Methods

  • Website URL
    http://nibiri.com/

Profile Information

  • Gender
    Male
  • Location
    Westchester County, NY

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Macrura's Achievements

Hero Member

Hero Member (6/6)

3.3k

Reputation

30

Community Answers

  1. @pmichaelis thanks for the report. ok let me see if i can make this change and commit soon, might take a couple of days.
  2. @gornycreative, thank you, very impressive and interesting to see how you set this up.
  3. Yes - thank you 0.5.2 has resolved the issues.
  4. Hi Robin, the issue started again, not sure if this is because of the localhost, or MAMP, or if anything could be done about it, but i did notice that there is no tracy bar in the iframe popup, and if i open the popup iframe in a new window, the page title is Logout, so maybe something to do with permissions.
  5. Thanks Robin, well now I upgraded again to the latest version and it started working. I can only assume it was CKeditor caching the js file, because i also had strange errors when i downgraded and it took a while for the downgrade to work (had to log out among other things)..
  6. I'm encountering a strange issue with the latest version if i try and insert any tags with attributes, it doesn't work: Null Invalid tag: no Hanna tag with this name exists.
  7. Thanks @Cybermano, I will review this as soon as possible (and I'll check the PR).
  8. Thanks!
  9. I'm not sure if this was already mentioned or asked – I have this module installed and use it all the time. I also use PageListerPro and when the images output (i have it set to "image only"), it shows the paste URLs field. Just wondering how i can have it not show that, since it takes up vertical space and that column in the lister is not editable when being viewed in the lister. Thanks!
  10. I have a fairly decent but rudimentary theme engine that I use; the structure is templates/themes/[name-of-theme]. This has worked well especially in redesigning existing live sites; or as a way to test out how things look with different CSS; or to upgrade a commercial HTML template. The theme engine also allows file override where the templates/views/some-view.php to be overridden by templates/themes/[name-of-theme]/views/some-view.php ; it's a wrapper for render, like wireRenderFile, so $theme->renderView('name-of-view), and $theme->renderPartial('name-of-partial'), would look in the current active theme for the file and if existing use that, and if not then use the one in templates/views or templates/partials. i can switch the theme in my _init, which means i can e.g. clone a theme, then have it switch to a development version for me as a user, or by role. Like templates/themes/company vs. templates/themes/company-dev The structure of the theme folder has stuff like _main.php (the main markup for the page), views, partials, assets, as well as theme specific functions, and a theme init where settings are configured.
  11. @froot sorry I didn't see your posts. If i understand correctly the admin pages use the admin template which is not a configurable template. You could create a settings page under the admin using the ProcessPageEdit process and then using a hook you can get that admin page to use a page in the tree, like "/settings/"; this was an old trick we used to do all the time and suggested by @Jonathan Lahijani. In terms of the general workflow for the settings factory, i just don't attempt to use images on those settings pages, but what I do is use a centralized media library to store site assets such as a logo. The logo is also tagged as such, and is additionally easily findable by the site managers and they can replace it on their own if they need to; this allows me to use all of the features of the regular page editor and images field and not have to hack it for use in Settings Factory. In SF you could create a page select that would allow selection of that media item.
  12. Sure, well I don't know if/when I'll be able to use your version as I have mountains of infrastructure running on setups that I'm hesitant to change (if it ain't broke don't fix it), but probably on the next iteration of the main profile I use, I can see how the existing field could be replaced, and whether it will be a "drop in" replacement, or require some front end code adjustments...
  13. Thanks for this – I've been using FieldtypeForms for years, which was just a gist https://gist.github.com/craigrodway/7515600 there may be another one here: but much appreciated that you have made an official module for this, I use the form select module to allow site editors to select a form to show in a configurable page builder section.
  14. I don't think there is a native download feature in soundmanager, and nothing in this module that I'm aware of; I used plyr (https://plyr.io/) recently to have downloadable audio: https://sfcmp.org/media/artist-chats/ There may be a way to modify the output of the bar ui player though and add a download button. But more recent audio players like plyr are working well for me, and you could implement it using a simple hanna code.
  15. @gornycreative sure - thanks! Basically i'm only using YT Pro for the styling, and for modeling the basis of certain types of content/markup. Using the local install of WordPress+YTPro I could setup the preferences for the look and feel of the site, choose the theme, etc. I can sync the YTPro generated CSS file, JS and fonts across to the theme folder in my PW folder. I have a MarkupThemeEngine module that handles frontend theme stuff. It has an api that simplifies handling of display assets (CSS/JS). A fair amount of the markup is custom coded, textbook UIKit - but that markup inherits the styling of the YTPro generated CSS file. The reason i can't use WordPress is that it ends up being too much work for the users, and it doesn't meet our requirements for a lot of content types. Many things that need plugins in WP can be easily created in PW with some small effort. The template files are designed to make decisions and do all of the heavy lifting, creating intelligent processes that assist the users to get things done fast. The backend config for any given page is mostly text, images and preferences – nobody has to actually design or configure anything in the admin. Fairly complex pages with multiple sections, images, audio, and video can be setup and done in a matter of minutes. (If i needed to create a more complex layout, I might go and do it in my WordPress install and then analyze the output code and turn that into an algorithmic setup in PW). There are not that many templates - Basic Page and a Page Builder, plus the custom ones for Albums, Events and Players. The Page Builder template uses a PageTable - each section of any Page Builder page is stacked "sections"; to add a section is just an entry in the PageTable; and then you select the "Section Type". At that point there may be a couple of things to populate - image, text, and some preferences. There is a centralized Media Library, and a Media Select field that uses InputfieldSelectize to choose any item in the media library.
×
×
  • Create New...