-
Content Count
814 -
Joined
-
Last visited
-
Days Won
2
Content Type
Profiles
Downloads
IPS4 Providers
Release Notes
IPS4 Guides
IPS4 Developer Documentation
Invision Community Blog
Forums
Store
Everything posted by BomAle
-
I also interested with ability to convert user-defined hashtags into item tag list based on permission by author/groups with some relevance algorithm into search result and avoid "seo keywords" duplication. [taxonomy]
-
What are the benefits of a support community?
BomAle commented on Matt's entry in Community Management
I like so much this article, please keep it updated 👍 -
I suggest to edit the plugin file \applications\core\dev\ckeditor\plugins\ipsautolink\plugin.js like following code: CKEDITOR.plugins.add( 'ipsautolink', { init: function( editor ) { editor.widgets.add( 'ipsembedded', { inline: false, //WHY NOT INLINE????? upcast: function( element ) { if ( ( element.name == 'div' && element.hasClass( 'ipsEmbeddedVideo' ) ) || ( element.name == 'iframe' && !_.isUndefined( element.attributes['data-embedcontent'] ) ) ) { return true; } }, //+++ADDED http://origin-docs.ckeditor.com/ckeditor4/docs/?print=/api/CKEDITO
-
I would report a feedback with alignment of internal link rich embed Currently there is not a possibility to align the block inside ckeditor, I think this should be a option to align it but the default "justify" ckeditor widget don't catch iframe block because javascript code remove the parent paragraphs <p> (CKEDITOR.plugins._replaceLinkWithEmbed) and the only allowed content alignable is this.allowedContent = { 'caption div h1 h2 h3 h4 h5 h6 p pre td th li': { // Do not add elements, but only text-align style if element is validated by other rule. propertiesOnly: true,
-
http://sandbox.onlinephpfunctions.com/code/5bef0ff1fdb892b1a577dff02420625518d45ec2 I suggest to replace return array( str_replace( \IPS\ROOT_PATH, \IPS\Http\Url::baseUrl(), $path ) ); into return array( \substr_replace( $path, \IPS\Http\Url::baseUrl(), 0, \strlen(\IPS\ROOT_PATH) ) );
-
http://sandbox.onlinephpfunctions.com/code/a305c2d09672d5775d2110c9bfc67847185bb63a
-
Automatically assign a theme based on selected language
BomAle replied to fab_gu's topic in Feature Suggestions
$settings = ['it' => 12, 'en' => 1]; foreach ( $settings as $k => $v ) { if( $this->member->skin !== $v AND \strtolower( \substr( $this->member->language()->short, 0, 2 ) ) === $k ) { $this->member->skin = $v; if( $this->member->member_id ) { $this->member->save(); } return NULL; } } return call_user_func_array( 'parent::getTheme', func_get_args() ); this will work for sure (return NULL prevent resetting to default theme see system/Theme/Theme.php:284) -
Automatically assign a theme based on selected language
BomAle replied to fab_gu's topic in Feature Suggestions
$settings = ['it' => 12, 'en' => 1]; foreach ( $settings as $k => $v ) { if( $this->member->skin !== $v AND \strtolower( \substr( $this->member->language()->short, 0, 2 ) ) === $k ) { $this->member->skin = $v; if( $this->member->member_id ) { $this->member->save(); } } } return call_user_func_array( 'parent::getTheme', func_get_args() ); but this code is valid only if you overload \IPS\Session\Front::getTheme With switchTheme the theme is set only for current location, with getTheme overload you can set it permanently only once o -
This is also what I want for mention taxonomy not only a group but also a "members interested" and link a page like myweb.site/list/besthelpers with a hashtag where there are some content and a list of members inside it (as club dashboard and stream discover) #besthelpers because tag a group is not flexible as a club/s or a open page where are listed, some list could be closed/protected/private or based by invite/request (MORE RELEVANT compared open system) when use a hashtag the framework create a new taxonomy, where the author is inserted on the list and the content attached i
-
take a look
-
Italian Films (myweb.site/index/italian-films) child of Films and Italian taxonomy content filter: forum cats[1,2,3], clubs [1,2], tags['film'], topic [33,35], people interested: member [1,2,3], groups[15], pfields [1 in it], following notification based on last update or change history summary/stats: last update (cached page with task background for scan each X time) suggestion insert semantic schema json-ld with link to structured data markup helper external sources, advertising purpose...
-
some code example, docs... https://core.trac.wordpress.org/browser/tags/5.3/src/wp-includes/taxonomy.php#L0 https://codex.wordpress.org/Function_Reference/wp_set_object_terms https://developer.wordpress.org/themes/basics/categories-tags-custom-taxonomies/#database schema https://wordpress.org/support/article/taxonomies/ https://kinsta.com/knowledgebase/what-is-taxonomy/ https://generatewp.com/taxonomy/?clone=music-genre-taxonomy
-
I think it is a waste of your resources for v5... but good to see you have taken this direction... I hope you consider a editor that is like Gutenberg into wordpress (it include tinycme editor and inline option and MORE support old bbcode into new blocks)
-
The idea is also make a way for users to improve such network with itself contribution: 1. flag content as related to others (partecipating and responsible for success of community, not as facebook and other social "passing the buck") 2. new and old content is a old concept, I want a better strategy for a future where there is a "order of things" (history relevance) where all content transform (a better communication tool for "humannes", social posting syncronization where community interact with others like "who tell about us"... promoting content bring our content outside but do yo
-
A good reason to invest into a network taxonomy is to identify your customers with subscriptions, the best way to achive community goals/mission main with revenue/costs and promote value of services.
-
Hello I would suggest a improvement for categories and tags introducing taxonomy concept: 1. assign a basic structure, not a simple tree but a network model 2. extending it on posting new content 3. custom fields relationship useful for feedback/survey 4. define upsell, alternative, raccomanded content 5. multiple author/group for single posts/comment (relationship with other members share same/similar content) This could improve the understanding of the order of things inside the community with some schema visualization and a genuine growth of it Benefit
-
add before "</script>" dialog.show(); some useful js example:
-
I don't know, I not support anymore this resource
-
I stopped support, if anyone interested continue the work for this app is free to do.
-
I stopped support for all my files
-
1.0.16 released, fix xss for username contain malicious code (thanks @newbie LAC for report)
-
Yes, you can disable it into "Customize Modal" tab or recolor with a custom code to add into content field, see Documentation tab section Interact with the plugin
-
by clicking outside the popup even if off the screen the popup must close. If it were not so, you can send me the site where the problem occurs in private, so I can identify and correct it.
-
You can define the return path (bounce mail for undeliverable email) inside MTA configuration (like exim, see 15 paragraph return_path_add option).
-
or contact your hosting and detect the source of problem