Everything posted by 2002faq
-
Books
Any chance of adding ability to link to the book in Amazon store with a "Buy Book" button. Or any other store that can handle ISBN numbers? Amazon link will be https://www.amazon.com/dp/10_digit_ISBN/ Barnes and Noble will be https://www.barnesandnoble.com/s/13_digit_ISBN 10 digit ISBN number works for Amazon, so the links will look like https://www.amazon.com/dp/1733387803/ 13 digit ISBM works for Barns and Noble https://www.barnesandnoble.com/s/9781733387804 Thanks, Steve K.
-
Map Block for Pages
Custom fields in pages allow Address entry. Each record can contain a map with that entry. It would be great to have a single map that can include all of the markers from a database or a category. Allowing for a search makes things even better. Thanks, Steve K.
-
Map for Pages Records
That would be a great feature and i think all pieces are already there, address fields and Clubs maps. I can't code, so i cannot do this, but hopefully someone can.
-
Member Map
Unless I am missing something, i do not see a way to have a map block on a page. It would be great as the Member Map supports addresses from Pages. The map that can contain those exists, so i would love to be able to embed it. If not possible and no plan for it, can a link be generated to only show one group of markers? And one more feature request: Ability to set different markers for different Databases/Categories in Pages thank you! Steve K.
-
Pages SuperReviews (Support Topic)
Thank you! Another question. Was it the intent to have the Record Image appear bellow the custom fields in mobile view? steve k.
-
Map for Pages Records
There is a feature that allows to show all Clubs on a map, so this seems to be possible. Does any one know how to show all Pages Records that have an address field from a Specific DB/Category on a map? I do not see a built-in block for this or any other options. Any help is appreciated! thank you, steve k.
-
Pages SuperReviews (Support Topic)
Another great Template! Thank for putting all these together! I think i am now using almost all of them 🙂 1. Is it possible to add option for Listings View similar to "Hide meta data in sidebar" ? If data is not needed in the record, it is not needed in the listing either. 2. What controls the record image hight? I wanted to adjust it to match the hight of the content of items on the left. 3. I am seeing extra text above the first review in mode 1. Thank you! Steve K.
-
Pagination in Articles in Pages
I cannot seem to find a way to add pagination to an article/record in Pages. Is there a way? Example of a long article that would benefit https://www.bmw2002faq.com/articles.html/technical-articles/body-and-interior/heater-box-removal-and-refurbishment-r41/ Steve K.
-
Clubs Enhancements
Would love to get access to the new app. Thanks!
-
Mail Bouncer - Automated Bounce Management
Who do you use for sending mail? SparkPost has a suppression list that can be searched by email address. That will tell you why the email was blacklisted. I've been using this software for a while, but after IPB switched from using native API for SparkPost and switched to SMTP, i had email addresses added to suppression list but not acted upon by MailBouncer. When i added https://invisioncommunity.com/files/file/9078-sparkpost-integration/ mailBouncer found all suppressed email addresses and thus users received the notices. I had to manually remove them from the suppression lists. steve k.
-
Calendar Topics Support
Sorry it took this long to reply. I think a default setting per Club would be good, so all Events in the Club calendar will get posted to a specific forum. Than you, steve k.
-
Calendar Topics Support
Is it possible to set the default Forum for all topics. I have calendars within clubs but i do not see a way to change the topic location within those settings. Thanks, Steve K.
-
Trader Feedback System
When i go to the settings for the Aplication i get the following errod OutOfRangeException: (0) #0 /home/skupper/www.bmw2002faq.com/system/Node/Model.php(1063): IPS\Patterns\_ActiveRecord::load(3) #1 /home/skupper/www.bmw2002faq.com/system/Node/Model.php(1080): IPS\Node\_Model->parent() #2 /home/skupper/www.bmw2002faq.com/system/Content/ClubContainer.php(334): IPS\Node\_Model->parents() #3 /home/skupper/www.bmw2002faq.com/system/Helpers/Form/Node.php(244): IPS\forums\_Forum->parents() #4 /home/skupper/www.bmw2002faq.com/system/Helpers/Form/FormAbstract.php(264): IPS\Helpers\Form\_Node->html() #5 /home/skupper/www.bmw2002faq.com/system/Helpers/Form/Form.php(415): IPS\Helpers\Form\_FormAbstract->rowHtml(Object(IPS\Helpers\Form)) #6 /home/skupper/www.bmw2002faq.com/applications/feedback/modules/admin/settings/settings.php(105): IPS\Helpers\_Form->__toString() #7 /home/skupper/www.bmw2002faq.com/system/Dispatcher/Controller.php(96): IPS\feedback\modules\admin\settings\_settings->manage() #8 /home/skupper/www.bmw2002faq.com/applications/feedback/modules/admin/settings/settings.php(35): IPS\Dispatcher\_Controller->execute() #9 /home/skupper/www.bmw2002faq.com/system/Dispatcher/Dispatcher.php(146): IPS\feedback\modules\admin\settings\_settings->execute() #10 /home/skupper/www.bmw2002faq.com/admin/index.php(14): IPS\_Dispatcher->run() #11 {main} IPB 4.3.3 Feedback 2.2.7 The application seems to be functioning properly otherwise. Thanks, Steve K.
-
Pages SuperBlocks (Support Topic)
this looks fantastic!!! now i need to accelerate the upgrade path to 4.3 just to get this thanks, Steve K.
-
Pages SuperGrid support
Thank you, i will probably ask when after the upgrade to 4.3 Also found an issue with Closslinking in a record. there is a variable set in the 'record' template (under RecordDisplay): {{$infoLineShown = FALSE;}} It needs to be inside the for loop {{if $records = $record->getReciprocalItems()}} <br> {{foreach $records as $fieldId => $items}} {{$infoLineShown = FALSE;}} <ul class="ipsList_inline ipsList_csv ipsList_noSpacing"> {{foreach $items as $item}} <li>{{if ! $infoLineShown}}{{$infoLineShown=TRUE;}}{lang="records_linking_to_me" sprintf="$item::database()->recordWord(0,TRUE), $record::database()->recordWord(1)"}: {{endif}}<a href="{$item->url()}">{$item->_title}</a></li> {{endforeach}} </ul> {{endforeach}} {{endif}} Currently it is {{if $records = $record->getReciprocalItems()}} {{$infoLineShown = FALSE;}} <br> {{foreach $records as $fieldId => $items}} <ul class="ipsList_inline ipsList_csv ipsList_noSpacing"> {{foreach $items as $item}} <li>{{if ! $infoLineShown}}{{$infoLineShown=TRUE;}}{lang="records_linking_to_me" sprintf="$item::database()->recordWord(0,TRUE), $record::database()->recordWord(1)"}: {{endif}}<a href="{$item->url()}">{$item->_title}</a></li> {{endforeach}} </ul> {{endforeach}} {{endif}} Not sure how many people this effects, but could be good for the future.
-
Pages SuperGrid support
I have Databases that do not have categories, so only allowing to add items from Category will break front end functionality. At the moment, IPB allows to add items from the main DB page. Also, i think your other template, "SuperDocs has the button in both Mobile and Desktop view. Thanks, Steve K.
-
Pages SuperGrid support
I am missing an "Add Content" button when in mobile view. Is it supposed to be like that or am i missing something? https://www.bmw2002faq.com/registry/ Thanks, Steve K.
-
(NE) Display ads within posts
I think something with a float tag and margins float: right, or float: left. users choice and then a margin to pull away from the text. Can start at the next paragraph after the number of paragraphs already defined. Similar to: http://www.espn.com/nfl/draft2018/story/_/id/23041561/josh-rosen-answers-nfl-critics-ucla-quarterback-tom-brady-ncaa-2018-draft
-
(NE) Display ads within posts
Is it possible to extend this to Pages and Blogs, and allow for text to wrap around the ad? thanks, Steve K.
-
Featured Content for IPS4.x+
Thank you! Works great! Any chance you can add other IPB applications to the list in the near future? Blogs and calendar events would be great! Steve K.
-
Featured Content for IPS4.x+
Thank you!
-
Featured Content for IPS4.x+
I'd like to to run the widget in the side bar. Is it possible for it to take the formatting of other standard blocks so all titles look the same? Thanks
-
(NB41) Enhanced Advertisements
Installing the App broke the page layout for me. I had to disable it as the site is live, but is there anything i can provide you to help investigate here are the screenshots of the broken pages The live pages are https://www.bmw2002faq.com/ https://www.bmw2002faq.com/forums/topic/213717-hemmings-1975-2002-for-sale/ thank you, Steve K.
-
Trader Feedback System
Thank you!
-
Trader Feedback System
Is there a way for the moderator/administrator to delete feedback? I cannot seem to find a way. steve k,