arisoft
Forum Replies Created
-
Forum: Plugins
In reply to: [ARI Fancy Lightbox - Popup for WordPress] Navigation doesn’t workHello
Navigation arrows are not shown because a custom gallery is used and it needs to tell the plugin how to group images. Could you modify your code and add specific class attribute to
<A>tag. For example:[wpv-for-each field="wpcf-bolig-galleri"] <a class="my_gallery" href="[types field='bolig-galleri' size='large' url='true'][/types]"> [types field='bolig-galleri' alt='%%ALT%%' title='%%TITLE%%' width='300' height='200' align='none' resize='crop' separator=', '][/types] </a> [/wpv-for-each]and then open “Integration” tab on “ARI Fancy Lightbox -> Settings” page and populate “Images -> Custom grouping selectors” parameter with the following value:
A.my_gallery- This reply was modified 8 years, 1 month ago by arisoft.
Hello,
Your gallery generates strange HTML code. It includes link for each image and <p> tag with two links to this image as result the lightbox attaches to all links and duplicate images are show into the lightbox.
If you change your mind, we will be glad to help investigate the problem. BTW, the plugin is used on a lot of sites and nobody reports about the similar problem so it can be a problem with a 3rd party plugin.
Forum: Plugins
In reply to: [ARI Fancy Lightbox - Popup for WordPress] Prettyphoto Bridge Theme IssueHello
Could you provide a link to a page where the problem occurs?
Could you provide a link to a page where the problem occurs?
Forum: Plugins
In reply to: [ARI Fancy Lightbox - Popup for WordPress] Pinch-Zoom on mobileCould you provide a screenshot where possible to see the problem? You can send it by email.
Forum: Plugins
In reply to: [ARI Fancy Lightbox - Popup for WordPress] Info bar always visibleHello,
Open “Lightbox” tab on “ARI Fancy Lightbox” page and disable “Show info bar” parameter to remove number of slides.
The plugin doesn’t provide ability to hide titles for specific galleries.
Thank you for the review. We are really appreciate it.
Forum: Plugins
In reply to: [ARI Adminer - WordPress Database Manager] Not PHP 7 compatibleHello
“ARI Adminer” is based on Adminer application (http://adminer.org). It is not our application. Adminer supports old PHP versions, but it also works with PHP 7.x.
About the warnings, the PHP code should be checked in context where it is used. For example set_magic_quotes_runtime() function is executed only when get_magic_quotes_runtime() function returns true, but since PHP 5.4.0 it always returns false, but it can be used in PHP 7 (http://php.net/manual/en/function.get-magic-quotes-runtime.php). I guess Adminer team doesn’t remove this code to support old PHP versions.
The same situation with other warnings, old DB drivers will be used only when they are available otherwise the plugin will use more modern DB drivers. It doesn’t try to execute old PHP code if it is not supported by current PHP version.
In any case, when Adminer team drops support of old PHP version and release a new version of their tool, we will include it into the plugin.
Thank you for your solution. It helps other people who have the similar issue.
Hello
“ARI Adminer” plugin is a bridge between WordPress and Adminer application. It is not possible to execute Adminer (without modification of source code) directly in WordPress context because PHP conflicts will occur so the plugin calls wrapper_adminer.php file from plugin folder. A possible solution is to allow execution of this file in security rules and for example limit it only for specific IP addresses.
Forum: Plugins
In reply to: [ARI Fancy Lightbox - Popup for WordPress] Lightbox not showingOpen “Integration” tab on “ARI Fancy Lightbox -> Settings” page and populate “Images -> Custom grouping selectors” parameter with the following value:
.portfolio_gallery AForum: Plugins
In reply to: [ARI Fancy Lightbox - Popup for WordPress] Lightbox not showingHello,
Open “Advanced” tab on “ARI Fancy Lightbox” page and populate “Custom JS code” parameter with the following code to remove original lightbox:
setTimeout(function() { $('.portfolio_gallery A').off('click.prettyphoto'); }, 10);Hello
Could you provide a link to a page where the problem occurs?
Forum: Plugins
In reply to: [ARI Fancy Lightbox - Popup for WordPress] Lightbox not showingIt seems this problem with data in database. WordPress creates special attachment post type for uploaded media. You can check DBPREFIX_posts database table.