Jorge
Forum Replies Created
-
Forum: Plugins
In reply to: [File Manager Pro - Filester] User with more than one roleOK, I understand. Thanks for your attention and keep on doing so nice job.
Cheers,
JorgeForum: Plugins
In reply to: [File Manager Pro - Filester] User with more than one roleHi, Rose,
Yes, I know I can grant access to more than one role. The problem comes when I have a user with more than one role.
I have created role called filester and assigned it to some users to access Filester. If role filester is not the primary one for a user it is ignored. The problem is in this line of FileManager.php
$this->userRole = $user && $user->roles && $user->roles[0] ? $user->roles[0] : '';
As you can see only the first role is observed, the rest are ignored.
Thanks for your response!
Forum: Plugins
In reply to: [File Manager Pro - Filester] User with more than one roleSorry for my delay and thanks for your reply. Support system didn’t notice me your response -I’ll be having a look more closely.
Well, the plugin does not throw errrors or warnings. Details you requested are:
- Active theme: Kalium, by Laborator.
- Plugin “Advanced Custom Fields PRO”
- Plugin “Caldera Forms”
- Plugin “CMS Tree Page View”
- Plugin “Duplicate Page”
- Plugin “Portfolio Post Type”
- Plugin “Recent Posts Widget With Thumbnails”
- Plugin “Regenerate Thumbnails”
- Plugin “Slider Revolution”
- Plugin “Ultimate Addons for WPBakery Page Builder”
- Plugin “User Role Editor”
- Plugin “Classic Widgets”
- Plugin “WPBakery Page Builder”
- Plugin “WPML Multilingual CMS”
- Plugin “WPML String Translation”
Thank you very much.
Forum: Plugins
In reply to: [Lightbox & Modal Popup WordPress Plugin - FooBox] TranslationHi there,
I’ve been deeping into the code and I’ve found there is a bug. Languages folder is ignored and route to language files is malformed, so we’ll wait until it’s resolved…
Forum: Plugins
In reply to: [File Away] Problem with WindowsOK, thanks anyway for your GREAT plugin.
Cheers!! (8
Forum: Plugins
In reply to: [Master Slider - Responsive Touch Slider] Shortcode in slide infoOK, I’ve found the solution. Changing line 319 of class-msp-parser.php from:
'info' => wp_slash( $info )
To:
'info' => wp_slash( do_shortcode( $info ) )
This way your great plugin will accept shortcodes in slide info. You could include in next revision.
Thanks a lot!!
Forum: Plugins
In reply to: [Smart YouTube PRO] [Plugin: Smart YouTube PRO] Vimeo doesn't workYeah, I know where the problem resides. It’s line #669 of smartyoutube.php:
preg_match_all( "/((http(v|vh|vhd)?:\/\/)?([a-zA-Z0-9\-\_]+\.|)?youtube\.com\/watch(\?v\=|\/v\/|#!v=)([a-zA-Z0-9\-\_]{11})([^<\s]*))|((http(v|vh|vhd)?:\/\/)?([a-zA-Z0-9\-\_]+\.|)?youtu\.be\/([a-zA-Z0-9\-\_]{11}))|((http(v|vh|vhd)?:\/\/)?([a-zA-Z0-9\-\_]+\.|)?metacafe\.com\/watch\/([a-zA-Z0-9\-\_]{7})\/([^<^\/\s]*)([\/])?)|((http(v|vh|vhd)?:\/\/)?([a-zA-Z0-9\-\_]+\.|)?vimeo\.com\/([a-zA-Z0-9\-\_]{8})([\/])?)|((http(v|vh|vhd)?:\/\/)?([a-zA-Z0-9\-\_]+\.|)?liveleak\.com\/view(\?i\=)([a-zA-Z0-9\-\_]*))|((http(v|vh|vhd)?:\/\/)?([a-zA-Z0-9\-\_]+\.|)?facebook\.com\/video\/video.php\?v\=([a-zA-Z0-9\-\_]*))|((http(vp|vhp)?:\/\/)?([a-zA-Z0-9\-\_]+\.|)?youtube\.com\/(view_play_list\?p\=|playlist\?list\=)([a-zA-Z0-9\-\_]{18,34})([^<\s]*))/", $the_content, $matches, PREG_SET_ORDER );
This line searches for https://vimeo.com/XXXXXXXX, eight digits video id. When video id is shorter you must fill it with zeroes in leftmost positions: 1234567 -> 01234567.