Jump to content

johndoe

Members
  • Posts

    25
  • Joined

  • Last visited

  • Days Won

    1

johndoe last won the day on May 31 2021

johndoe had the most liked content!

Recent Profile Visitors

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

johndoe's Achievements

Jr. Member

Jr. Member (3/6)

32

Reputation

  1. @franciccio-ITALIANO , check this out: https://processwire.com/docs/fields/images/
  2. @franciccio-ITALIANO If you have an HTML Entity Encoder in Text Formatters you need to remove it, because that is causing the issue you're describing.
  3. My guess would be that you have nothing in your foreach loop. You should put html code in your faq template file, not in the repeater field. Repeater field should only have question and answer. <?php foreach($page->faq_ripetitor as $faq):?> <li> <a class="uk-accordion-title" href="#"><div class="fa fa-comments"></div><h2 class="perh2faq"><?=$faq->faq_question?></h2></a> <div class="uk-accordion-content"> <p style="color: white;"> <?=$faq->faq_answer?> </p> </div> </li> <?php endforeach;?>
  4. @NorbertHAgh, my mistake. There's no need for @alert-success-background. It's just Uikit alert style not used by pw. If you want normal messages to be green, put green color in @alert-primary-background: @alert-primary-background: #32d296; @alert-primary-color: #fff; @alert-warning-background: #faa05a; @alert-danger-background: #f0506e; Here's a screenshot.
  5. Just tried: //alerts @alert-primary-background: yellow; @alert-success-background: green; @alert-warning-background: orange; @alert-danger-background: red; and it's working on my end. Browser cache problem maybe?
  6. Add this to admin.less: //alerts @alert-primary-background: #ffd; @alert-primary-color: #354b60; This will bring back vanilla pw notice style.
  7. Just a quick test: dark theme. For anyone interested, here's the admin.less file: admin.less
  8. Maybe a little off-topic, but while we are speaking about javascript: is there any particular reason why Stripe is loaded on every forum page instead of just checkout page? Seems redundant, but maybe I'm not seeing the whole picture here.
  9. @DrQuincy You can see how Form Builder handle file inputs here >> https://processwire.com/sites/submit/. To answer some of your questions: Nope. No drag and drop, or upload progress bar as of yet. On the backend I think its just the same as processwire file validation. I don't know about the frontend tho. Yes, there are 3 or 4 output options. You can use built-in styling, or use your custom css/html. Sadly, no demos, but you always have satisfaction guaranteed or your money back.
  10. Am I the only one getting rather large performance hit when using this module? According to tracy debugger, outputting just one icon can double the execution time. I have tested it in two different environments, and they both have similiar issue: local pw 3.0.148 stable / PHP 7.3.1 / from ~500 ms to ~900 ms remote server pw 3.0.160 dev / PHP 7.2.31 / from ~250 ms to ~600 ms
  11. @JeevanisM Post all code from that template. Are you 100% sure you enabled stars for the field named videocomments? Also, check your browser console, because there are errors/missing files (/js/pjax.js and /js/lazysizes.min.js) on the page that you linked. I don't think that it's related to your problem with missing stars, tho. Just a heads-up.
  12. Can't confirm. I can place images wherever I want in inline mode (pw 3.0.148). Post more details: browser, processwire version, etc. Also check details tab for this particular cke field. Maybe there's something that is causing this kind of behavior.
  13. Ok, now lets see what's in the Family settings in Home template. You have onecolumn and twocolumn templates selected in Allowed templates for children, right?
  14. Processwire is a gift that keeps on giving. Yup, that's the one.
×
×
  • Create New...