Jump to content

opentype

Clients
  • Joined

  • Last visited

Solutions

  1. opentype's post in Pages App Issue was marked as the answer   
    Check for template calls in places like Listing template → categoryHeader. 
    It will indeed call a stock template for categoryRow there by default. But you can change that to call your custom template groups. 
    There might be more places like that. In general, you want to make sure that all {template… calls point to your custom templates. 
  2. opentype's post in Different view for Admin and rest of community issue... was marked as the answer   
    It’s usually faulty html in one of the blocks. Impossible to say where exactly from just a screenshot. Could be ad code, theming issues,  user-group styling or even individual forum topics with problematic code. 
    I would first try to login as that user to see if you can replicate it. If yes, you can investigate it directly. If not, it might also be a problem on the user’s site. Like ad-blockers interfering with the page and things like that. 
  3. opentype's post in Article database: can I change a record's category and published date? was marked as the answer   
    Moving between categories is an admin option both on the front- and the back-end. You just click “move”. 
    Changing the publishing date depends on the field “publishing date” being activated in the field settings. 
  4. opentype's post in Is it possible to undelete a post that I deleted by mistake? was marked as the answer   
    There is a Deleted Content section in the ModCP to do this. 
    However, it only works if the “Permanently delete content” setting in the ACP ist not set to “immediately”. 
  5. opentype's post in Is there a 'Save as Draft' option in blogs or articles? was marked as the answer   
    There is also the "hide" options as well as the "require approval" option for pages databases. Both options would allow admins to review and work on articles while they remain offline. 
  6. opentype's post in Modifying <head> in pages was marked as the answer   
    You can add meta tags using the meta tag editor. That works globally, not just for custom pages. 
    Regarding <head> content, you can choose to use the suite wrapper or not (see the option in your screenshot). If you do, you use the <head> from the suite without changes, if you turn that off, you can and have to create your own <head>. 
  7. opentype's post in Is there a trick to redirection? was marked as the answer   
    A template redirect looks like this:
    {{\IPS\Output::i()->redirect('https://server.com/something.htm');}}  
  8. opentype's post in Checking if a Topic is sync’d with a Pages Record was marked as the answer   
    I think the topic itself doesn’t “know” anything about the Pages connection. That connection is stored in the table of the cms database. So you have to use a manual query to check if the current topic ID is present across any of your cms databases. Might not be a good idea. 
  9. opentype's post in Increase leading was marked as the answer   
    It can be tricky. Many areas expect standard values or you will get cut-off letters (e.g. in the bread-crumb navigation). There is also more than one value because there is the the space between lines and the space between paragraph and dozens of CSS classes that apply in different areas.  
    A start would be to override this default value and pick a higher number:
    .ipsType_normal.ipsType_richText { line-height: 1.6; } This should have an instant effect on forum posts, articles and so on. 
  10. opentype's post in How do I enable comments for articles (articles database)? was marked as the answer   
    You need to set the member group permissions on database level. You only turned on comments. You haven’t set who can comment. 
  11. opentype's post in User-Created Online Portfolio was marked as the answer   
    Either a custom app or a Pages database with a custom template. The latter would probably be a little cheaper as most of the functionality is already there.
  12. opentype's post in Vendor Database w Voting or Ratings? was marked as the answer   
    It’s not an error. 
    https://www.opentype.space/superdocs/ips-community-tips/pages/you-can-only-have-1-category-to-store-records-in-the-database-directly-r1/
  13. opentype's post in CMS Conversion with an image was marked as the answer   
    Someone would need to write a proper import/conversion script. Those images are not just a link to a file. 
  14. opentype's post in Having issues embedding typeform on a new community was marked as the answer   
    My first suggestion would be to use a NEW topic for each try. That page is now full of errors and it’s impossible to judge if a new reply would even work. 
    You certainly have problems in your code. I can easily embed the forms on my forum just as Nathan.
  15. opentype's post in Log on with 2 different URL's was marked as the answer   
    This is NOT possible. Technically and legally. 
    (It’s a bad idea anyway. If you have different projects with different URLs, menus, galleries and so on, create DIFFERENT websites, not one website where everything is somehow thrown together.)
  16. opentype's post in Forum Defined Tags - Open System was marked as the answer   
    They are just shown in a highlighted way when you type something. 

  17. opentype's post in Commerce: Stock & Price Adjustments + Custom Fileds was marked as the answer   
    Every option would need to be its own field. 
    But that only works well with two or three options, because you will get a matrix of every option combined with every other option and you would have to set up each price. 
  18. opentype's post in How to save copied photos to my IPS community was marked as the answer   
    You are probably thinking of the image proxy function. That was indeed removed. It only served a temporary purpose to not brake the page with non-SSL images by importing them into the system. 
    You could copy the old HTML into the new posts and either do some find&replace each time or import it all, move the images and then do some UPDATE MySQL queries to correct the links. 
    Personally, I would probably go the long way – and have done that several times while moving my content across multiple forums systems. Linked images aren’t really proper images in the IPS suite. Only “attachments” are. And therefore they are future proof. You could change your storage location and they will be moved automatically. You could switch to cloud and it will continue to work. You can change settings and the images will be recalculated … So, it might be worth it to import each image manually. 
  19. opentype's post in How to sharpen group badges? was marked as the answer   
    It’s a custom.css rule to limit the size while uploading a larger image. 
    .cAuthorPane .cAuthorGroupIcon { max-width: 60px; }  
  20. opentype's post in Pages: Feature Image was marked as the answer   
    There is no switch. It’s automatic. 
    How that image will be used depends on the template that is chosen for the various record views. 
  21. opentype's post in Downloads - No Thumbnails was marked as the answer   
    What are you trying to offer with the Downloads app?
    It is usually used for software, videos and things like that. That’s why “screenshots” makes sense as representation of the content. 
    If you add images as downloads, then it would be a different story. And the software can’t always create screenshots. For example, I have a website where the downloads consist of images, but they are huge TIF files put into ZIP archives. It would be pretty much impossible for the server to generate thumbnails from that. So, a user field to add some representative images makes perfect sense. 
     
  22. opentype's post in Core Pages Block keys? was marked as the answer   
    The typical use would be to first create a custom version as Pages ACP block and assign your own key. Then you can call it as {block="your_key"}
  23. opentype's post in How to use (Pages) block as ad? was marked as the answer   
    Not, that’s not possible.
    I am actually using Pages database to run my ads, but it requires a lot of customization and has to run independently from the built-in advertising system. 
  24. opentype's post in Resize logo in email wrapper was marked as the answer   
    Personally, I wouldn’t bother with it and just use the original image size. 
    If you really need to change it, you would have to customize the email wrapper template under Customization → Appearance → Email → Email Wrapper. 
    It’s this line that automatically uses the image size: 
    <img src='{file="\IPS\Settings::i()->email_logo" extension="core_Theme"}' alt="{setting="board_name"}" width='{$imgDims[0]}' height='{$imgDims[1]}' /> You could use hard-coded values for width and height, for example at half the size of the image. 
  25. opentype's post in how to add a function for my user to sell their goods in my community was marked as the answer   
    No, Commerce doesn’t allow users to sell to each other. It only allows the site owner to sell products. And physical sales will removed in the future. 
    User-to-user sales are not possible without third-party applications.