Jump to content

opentype

Clients
  • Joined

  • Last visited

Solutions

  1. opentype's post in Push notifications on Safari MacOS was marked as the answer   
    It’s not an error. It’s an explanation. 
  2. opentype's post in Facebook API Violation? was marked as the answer   
    IPS won‘t provide it as it needs to reflect how YOU handle these things. What’s your process to handle privacy/deletion requests? How should people contact you? How do you handle such requests? What do you delete and what don’t you delete. That‘s all up to you. You need to flesh out these things and the put in in writing.
  3. opentype's post in How to Hide "Categories" at Store was marked as the answer   
    There are no native settings to achieve this, no. 
  4. opentype's post in Moderate a user's publications ? was marked as the answer   
    Open the member in the ACP. Then under Warnings & Restrictions: Require approval before content shows. 

  5. opentype's post in Official Docker support was marked as the answer   
    IPS has made it clear that they prefer cloud customers. I doubt there will be any new and substantial feature additions that would only benefit self-hosted clients. 
  6. opentype's post in How taxes work for each country? was marked as the answer   
    There is no universal list. It depends on what is legally required in your country. 
    There can also be distinction between business-to-business sales and business-to-consumer sales and there is an additional condition within in the EU about VAT ID numbers. But again, all of that depends on your country. 
  7. opentype's post in Community subscription renewal length was marked as the answer   
    If you click on “Manage this purchase” on this page you see the renewal price, term and date. 
  8. opentype's post in Combined shipping in Commerce was marked as the answer   
    It all depends on how you set up your shipping methods. You can have “combined shipping”, but you need to pick one of those methods to calculate this. 

  9. opentype's post in (Pages) Display options for title field was marked as the answer   
    Yeah, the title and body field are “special fields”. You can’t edit them this way. Just like changing the order in the ACP doesn’t do anything. 
  10. opentype's post in Make thumbnail images smaller was marked as the answer   
    No. The images (thumbnail + hires) are created when you upload the image. You can’t call a different size. 
    Database settings → Options tab 

  11. opentype's post in How to create css files was marked as the answer   
    Under Pages → Templates.
    And yes, that’s the right way to add page-specific CSS. 
  12. opentype's post in 4.6.6 post upgrade: No registered users viewing this page. was marked as the answer   
    It should work. But is is now cached, so the results might be confusing because they are not in real time. 
  13. opentype's post in [Pages] Copy Category Articles template was marked as the answer   
    It’s called “featured records” when you create it. 
  14. opentype's post in Bulk email failed after 300 sends, can I bulk resend? was marked as the answer   
    What method/service is set up to send emails?
    My guess would be that you use your hosting provider and they limit the amount of mails you can send out. 
  15. opentype's post in Where to start modifying 'Files Feed' block layout? was marked as the answer   
    In the ACP, got to Pages → Blocks → Create New Block
    You will be able to create a custom instance of the feed block and you can add it on the front end as “Custom Block”. 
  16. opentype's post in Subjects not working on profile was marked as the answer   
    Yeah, your HTML is broken and it forces the text to be transparent in areas where it shouldn’t be transparent. 
    I would try to turn off all 3rd-party plugins/apps and check the group formatting. Where does the coloring of the groups come from? Maybe that’s it. 
  17. opentype's post in Help customize meta tags was marked as the answer   
    The meta tags can be overridden from any Pages template used to render the current page. You can add variables there as well. 
    {{\IPS\Output::i()->metaTagsTitle = "Whatever ".$something ;}} {{\IPS\Output::i()->metaTags['og:description'] = "Something else" ;}} You can put that into the record template for example. 
  18. opentype's post in Don't show field if there is no $Value was marked as the answer   
    {{if $formValue}} // Your code {{endif}} Wrap it all like this. 
  19. opentype's post in Achievements not correct size & padding seems off was marked as the answer   
    Just click the “create new” button in the ACP. It’s as simple as that. 
  20. opentype's post in Page Builder: Media Embed - Override Max Video Width Setting was marked as the answer   
    The default custom CSS for the block looks something like this:
    .app_cms_pagebuilderoembed_mp1qzgnrk { } Change it to:
    .app_cms_pagebuilderoembed_mp1qzgnrk .ipsEmbeddedVideo { width:50%; } Just to give you an idea. Don’t copy this code. Targeting the .ipsEmbeddedVideo is the key. 
  21. opentype's post in Cannot find to translate Badges texts? was marked as the answer   
    I repeat: “View word keys?”
    That doesn’t require “highlighting”. 
  22. opentype's post in Multiple images upload - Pages > fields (record) was marked as the answer   
    Something to start with:
    {{if $formValue}} <div class="ipsGrid ipsGrid_collapsePhone"> {{foreach $value as $file}} <div class="ipsGrid_span4 ipsSpacer_bottom"> <img src="{file='$file' extension='cms_Records'}" class="ipsImage"> </div> {{endforeach}} </div> {{endif}}  
  23. opentype's post in You are not permitted to register a user Account was marked as the answer   
    Pretty sure that’s the spam protection kicking in. It has nothing to do with the Commerce settings. 
  24. opentype's post in Doubt about navigation. Restrict access to content after... was marked as the answer   
  25. opentype's post in Favicon refuses to show was marked as the answer   
    It works. 
    Favicons are heavily cached by the browsers. Reloading a page doesn’t refresh them if they were changed.