Jump to content

Neej

Clients
  • Posts

    149
  • Joined

  • Last visited

 Content Type 

Downloads

Release Notes

IPS4 Guides

IPS4 Developer Documentation

Invision Community Blog

Development Blog

Deprecation Tracker

Providers Directory

Forums

Events

Store

Gallery

Everything posted by Neej

  1. Check the URL on the .doc I reckon there is an issue there with it outputting an invalid URL.
  2. Hi @superj707 In your forms you need to specifically add the variables you want saved, either into a forum thread, PM, email or in the logs section itself. So for example if you want your logs to save the information entered, you would need to add something like this to the 'log message' for that specific form. {field_name_27}: {field_value_27} {field_name_28}: {field_value_28} {field_name_29}: {field_value_29} {field_name_30}: {field_value_30} {field_name_31}: {field_value_31} I generally have all my forms submit to a forum thread as I find that is easier to organise. But I also save some of the data in logs which I don't want displaying in forum threads. I do not believe this app functions as a 'database' like some people assume. It simply spits out the data from the form into the places you have set it. If you have not set it to record any of the field data in forum thread, pm or a log, then the data simply is lost (I think. Mike John will be able to speak more to this)
  3. Yeah this is the big one for me. Having it be it's own separate page is kind of annoying. even having the forms list as a widget would be good too, so it's not another page that is hard to customise.
  4. No. I'm not sure there is a way for paypal to differentiate what it sends through that gateway link thing. You might need to either create a separate paypal account that is only for the website members, or tell people to not directly donate outside of the website donations to your current address. It's not really a problem with the app, more a limitation of Paypal. You could try look around in your paypal settings to see if there is an option to only send the gateway info back to your site if the payee has originated from your website. But I doubt that is an option.
  5. It's under payment gateways. Check to make sure it's disabled.
  6. Have you disabled off line donations?
  7. There should be an example form already present called Contact Us or something similar. You can look at that to see how it all works.
  8. The URL it's trying to grab for the image is adding on an extra section. What it outputs http://d2um9aptpsgwwp.cloudfront.net/monthly_2016_11/IMG_0252.thumb.JPG.0bd4c717a91bfa769912fb845afbf277.JPG.f403bdf29e3bd2b78f84c637dbcacb1f.JPG What it should output http://d2um9aptpsgwwp.cloudfront.net/monthly_2016_11/IMG_0252.thumb.JPG.0bd4c717a91bfa769912fb845afbf277.JPG Not really sure why it's doing that
  9. Thanks mate! Love this Application and your awesome support.
  10. Hi @onlyME After installing todays latest Featured Content update ( 4.1.21 ), Most of my Featured Content sliders are no longer loading. The one that does function is one that does not contain any images? So has this latest update corrupted the file locations on the images for my image sliders? I am still on IPS 4.1.14.3 and have yet to update to 4.1.15 so not sure if this newest update was specifically for 4.1.15? I'll hold off on doing the update until you check it out though.
  11. I tried manually commenting out the code from the Theme Template in AdminCP under donate > front > global > profileHook and it still kept the Donations tab in the profile?
  12. Add this to your custom.css for a temporary fix until onlyME releases his update. .bx-wrapper .bx-controls-direction a { z-index: 99; } This bug has existed before the 4.1.14 update, so I have been using that code for a while.
  13. Neej

    Member Map

    What was the users location you are marking as a spammer? Marking them as a spammer is updating their profile, most likely causing the same error as they have an invalid location set in their profile.
  14. Have you tried running the support tool in AdminCP to try repair your database errors?
  15. From what I can gather, he might be logging paragraphs from text editor and they don't properly display line breaks maybe? Hence my fix which would space things out a bit more on the page. I personally don't have any issues with my logs, but I don't log paragraphs, just things like IP, username and form type etc.
  16. You could try adding the below custom css inclusion to that page only. p span { display: table; }
  17. Hey mate, Got it working by changing the following code in the 'showSlider' template. From {{if $Slider->bitoptions['nolink'] != 1}} <a href="{$row['url']}" title="{$row['title']}" {{if $Slider->bitoptions['newwin'] == 1 || $row['newtab'] == 1}}target=_blank{{endif}}> {{endif}} to This; {{if $Slider->bitoptions['nolink'] != 1}} {{if $Slider->id == 7}} <a href="{$row['url']}" title="{$row['title']}" data-ipslightbox="{$row['title']}" data-ipslightbox-group="12345"> {{else}} <a href="{$row['url']}" title="{$row['title']}" {{if $Slider->bitoptions['newwin'] == 1 || $row['newtab'] == 1}}target=_blank{{endif}}> {{endif}} {{endif}} Result can be seen on this page http://www.soc-aus.net/companies/planetside2/ps2_info/ The lightbox actually allows you to scroll through the images with the left and right arrows too, so that's a bonus.
  18. If you don't add the feature, do you know of any way I can customise the links to a specific slider? <a href="http://www.site.com/image_large.jpg" title="Enlarge image" data-ipslightbox="" data-ipslightbox-group="12345"> <img src="http://www.site.com/image_thumbnail.jpg" alt="" /> </a> I don't think I can easily add this kind of code in to the templates for FeaturedImages without it effecting all of my sliders, and unfortunately not all of my sliders are simply thumbnails.
  19. I'm not referring to any "feeds", but the manually added image sliders that directly get an image from what the user adds to the slider. Would it be possible for it to open a lightbox when clicking these images instead of opening a new tab to display the "link" (for me my links are all to the image .jpg). You can see what I am talking about on the slider at http://www.soc-aus.net/companies/planetside2/ps2_info/ All those images just open a new tab with the image, but it would be great if these links could have an option when adding the images manually to open a lightbox instead.
  20. @onlyME Is there any way you could please add a feature for images on the slider to open up in the ips lightbox (I think that is what it's called?) The overlay that pops up on your screen when you click an attached image inside a forum post that is larger than the thumbnail. Thanks, Neej
  21. I spoke to him in PM about this. He was under the impression this App worked similar to google forms to accumulate data in to spreadsheets.
  22. are you using a specific image width and setting it to show more than 1 image in the maximum? If you set it to show 1 image at a time it might fix it. Otherwise yes I agree that the app still has a while to go before it is finished, numerous styling/alignment issues still with it.
  23. Hi Kevin, Recently I made a request for a feature in IPS and was directed to this application by one of the IPS developers. I have tried to mess around with it but it just seems so complicated and I cannot figure out how to do 1 thing. Here is what I would like; 1. UserA with X user group has been a member for '240 days' 2. Promote UserA to user group Y (Part 1 and part 2 are already done by IPS) 3. Recognise a promotion of user group has occured 4. Automatically Post a thread to Subforum Z to congratulate the user on promotion OR 4. Notify within AdminCP / Activity Streams / notifications list / PM to Administrator that a promotion has occured with UserA
  24. Does the group exist as a user group on your IP board?
  25. Ahh damn that is unfortunate. I can understand the reason behind the security thing though. Thanks for the response, I think I'll wait to see how the app develops and new features you add.
×
×
  • Create New...