Jump to content

Rudy

Members
  • Posts

    154
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by Rudy

  1. UPDATED Thank you to everyone responded. I am closing this post since it's already been fulfilled. ======================================================================== Hi, We are Adnet Inc., a full service web development/hosting/maintenance company from Vancouver, BC. We're looking for contract front-end developer(s) to implement PW sites. PM me to discuss. Cheers, Rudy Affandi rudy@adnetinc.com
  2. My bad, perhaps I should read the release note thoroughly prior to making any comments
  3. @kongondo, it looks like the modal window repeater bug still exist in 0.0.7.
  4. @kongondo, not sure if this has been requested in the past... It would be nice to be able to edit the title, description and tags once media have been selected. Thx Rudy
  5. Valet runs on Caddy HTTP server. It's pretty fast. By default, it installs Caddy and PHP 7. You will need to install MariaDb or MySQL and use PW Driver to run PW on it.
  6. @LostKobrakai, when you have a chance, could you test this on your Valet/PW install. do a var_dump(parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH)); and visit a page that has dash in the segment name. on my PW install: Original URL: http://my.dev/this-and-that/ The var_dump output is "-that" I ran the same test on my MAMP Pro and Ubuntu server and both comes out as "this-and-that" Not sure if it's isolated to my Valet or not. Thanks Rudy
  7. Would it be possible to assign/add custom template to the Forgot Password email? Thx Rudy
  8. @Peter Knight, have you checked your browser console to see if there's any external javascript dependencies that are giving timeouts?
  9. I've been running 3.0.x with a bunch of 2.5x modules and so far had no problem. Which module(s) in particular do you have concern with?
  10. It's not redirecting at all. var_dump output returns string(0) ""
  11. I can't get this method to work on a multilingual site On my default English site, it works fine. /news/ redirects to its first child, which is /news/2016/ but when I am on the French version /fr/news/ redirects to a blank page. Is it just me or anyone experience the same issue? Thx Rudy
  12. I found your GH issue and added my comment there. I copied the `install.php` from the dev branch's latest commit and that fixed the issue. Thanks.
  13. I started a fresh install of PW 3.0.36 (from composer). Went through the installation UI and got an error right after I submitted the admin ID and PWD See screenshot attached. This is the first time I've ever encountered this error message during installation. Anyone seen this before? Thx
  14. This function here listens for repeater's events and initialize jQuery Magnific inside a repeater. Tested on my site only though. EDIT: Also need to check if repeater is being used or not. // magnific $(document).ready(function(){ // If repeater field if ( $('.InputfieldRepeaterAddItem').length ) { //console.log('Repeater is being used'); $(document).on('click opened openReady repeateradd', function(){ initMagnificPopup(); }); } else { //console.log('Repeater is NOT being used'); initMagnificPopup(); } });//end jquery // Initialize Magnific function initMagnificPopup() { $('a.add_media').magnificPopup({ type:'iframe', callbacks: { close: function() { // will fire when popup is closed window.location.reload(true);// force parent page refresh on modal close } } }); }
  15. The issue is with repeater's ajax dynamic loading. It works fine when ajax option is turned off. If you can find the hook that gets called after the add new repeater child is clicked, you can probably get it to initialize the magnific call after that click. I will leave it for now since there is a workaround. I know you've got many things on your checklist ;-) Thx Rudy
  16. Downgraded my site to 2.8.35 and still experienced the issue. A note, the MediaManager field is called inside a repeater, if that makes any different. Update: Tested MediaManager on its own (without repeater) and the modal window works fine.
  17. @kongondo, I am running PW 3.0.38 with Reno admin theme. For curiosity, I switched back to the default admin theme and was able to reproduce the issue as well.
  18. JS error appeared after I clicked the Add Media. See attached anim GIF.
  19. @kongondo, is the Add Media link supposed to open in a modal window rather than opening to its own page? On mine, it opens to a new page. I have to click on the back button to go back to the entry page.
  20. Looking forward to version 7 @kongondo! Uploading from CKEditor would be sweet. Are you able to fix the CKEditor buttons issue when used with Reno/Lightwire theme as well? Looks like the css fix is pretty straight forward. Thx
  21. We also use Statamic CMS on some of our clients sites. Statamic uses Redactor 1 and 2. Statamic v2 initially used Redactor 2 as their WYSIWYG editor but reverted back to Redactor 10 (v1) because of various issues. Having used both CK Editor and Redactor, I would say it is not worth the time nor money/resources. Redactor is problematic, from both developers and end-users PoV
  22. Hi @Zeka 1. Those dot folders are backup copy of the previous module version. It is safe to delete. 2. Yes, it is safe to ignore those folders.
  23. Hi all, I am currently building a custom membership functionality for a client. Here are the procedure: User fills in a membership registration form. Based on the form data, it is supposed to do the following create user, add roles (guest, subscriber OR free-trial) if free-trial, remove/disable user after X number of days if free-trial, add user to mailchimp list in the free-trial segment if subscriber, add user to mailchimp list in the subscriber segment if subscriber, create a new invoice via Freshbooks API and get Freshbooks to charge to user's credit card via Stripe My questions: What is the best approach on this? all in one module? or separate tasks into its own module? Are there any existing module(s) that already do these things? Thanks Rudy
×
×
  • Create New...