Tihomir Dmitrovi?
Forum Replies Created
-
Yes, I did. Thanks on the quick response.
Forum: Plugins
In reply to: [Convoworks WP] Account LinkingWe published two related articles which are describing the Account Linking process.
https://convoworks.com/know-your-users-with-alexa-account-linking/ – Account linking setup.
https://convoworks.com/grow-your-wordpress-business-by-acquiring-the-amazon-alexa-skill-users/ – Use account linking to grow your subscribers.Forum: Plugins
In reply to: [Convoworks WP] Account LinkingHi Mike,
We still have some work on account linking, especially on documentation, but here is a short explanation that can serve you.First you have to configure your skill to support account linking. You can check how to do that in our documentation https://convoworks.com/docs/publishers/platforms-configuration/amazon-alexa/
If you are going to link your WordPress user, choose the “Installation” Account Linking Mode. For easier testing, I would suggest you uncheck the “Allow users to enable skill without account linking” option.
After that, the users who wish to enable your skill (in Alexa web or mobile app) will be redirected to your website and will have to log in. When you want to startower and test the workflow again, disable the skill and logout from the website.In your skill use the “Init current auth user” element from the convo-wp-core package. When the service is executing and it comes to that element, if the user is not linked, it will prompt him to link the account and will end the session. If the user has a linked account, after the element you will be able to access the user object with expression language. Element stores the user in the request scope, meaning that it is available only in the current request. So, anywhere you need to access user data, just place that element in the workflow and you’ll have it.
User which is resolved is Convoworks user object (it contains id, name, email, username). If you want to access the WP_User object you can get it with ${user.wpUser}. You can also load wp users by using the get_user_by WP function: ${get_user_by(‘ID’, user.id)}.
Hope this helps
Forum: Plugins
In reply to: [WPJaipho Mobile Gallery] Stuck on Splash ScreenHi
I guess there is some Javascript error which prevents it to start fully. Can you check in chrome developer tools, console tab, are there any Javascript errors?Forum: Plugins
In reply to: [WPJaipho Mobile Gallery] Not compatible with PHP 7.0Hi Cormac
Thanks for pointing out that issue.
It is fixed and committed to SVN trunk.
As this is not critical in most cases, I’ll wait a bit before I create a new build.Forum: Plugins
In reply to: [WPJaipho Mobile Gallery] Doesn't work…yetHi, Sorry on delayed answer, I was quite busy.
I tried it with Suffusion theme and it works just fine.
Are you sure you defined gallery well?Forum: Plugins
In reply to: [WPJaipho Mobile Gallery] How it works with NextGEN?Actually WpJaipho will not work with any 2.x NextGEN version.
I really don’t know when I will be able to fix that.
SorryForum: Plugins
In reply to: [WPJaipho Mobile Gallery] How to change image title to image caption?Hmm, cool
I’ll write it down in todo list: to be able through admin settings to map which exactly fields do you want to be used as image title and as image description.Forum: Plugins
In reply to: [WPJaipho Mobile Gallery] How to change image title to image caption?Hi,
WpJaipho is using title property from attached media.
When you upload media, wp automatically sets the title as a filename. As it is title, and it is not relevant for fetching the file, you can easily change it (instead of caption).Forum: Plugins
In reply to: [WPJaipho Mobile Gallery] Is it working with custom posts?Hi,
It seems that WP-Property does something with media attachments. Not that only WPJaipho does not work with it, the default wp media gallery behavior is messed up too.
Sorry can’t help on that right nowForum: Plugins
In reply to: [WPJaipho Mobile Gallery] Not working with Parallax ThemeI checked a little and it is how I said before: it works with nextgen 1.x (and nextcellent gallery too). So I guess you have 2.x version.
Regarding parallax support itself, it still does not works perfectly – there are some style issues. I’ll have to find how to disable loading parallax stylesheets when wpjaipho is on.
Sorry I can’t help more in this moment.Forum: Plugins
In reply to: [WPJaipho Mobile Gallery] Not working with Parallax ThemeIt does not works with nextgen gallery 2.x . It is a still open issue.
Haven’t tried the parallax with nextgen 1.x but it shouldn’t be a problem. Will try when i come home. I’m writing this from my iphone.Forum: Plugins
In reply to: [WPJaipho Mobile Gallery] Not working with Parallax ThemeWell, after the fix it works with parallax theme. Tried it on my local machine. So it must be some other plugin you have installed there. Any lightbox gallery, mobile specific plugin?
Forum: Plugins
In reply to: [WPJaipho Mobile Gallery] Not working with Parallax ThemeHi Lars
Here is the fix you can manually apply in wpjaipho (it will be included in next version)wpjaipho.php
At line 60 add this (after jp_carousel_maybe_disable fix)
add_filter( 'option_cyberchimps_options', 'jaipho_parallax_fix_options_filter');
functions.php
Add this function at the end:
function jaipho_parallax_fix_options_filter( $optopns) { $optopns['gallery_lightbox'] = 0; return $optopns; }
Or just download and upgrade manually with development version on https://downloads.www.ads-software.com/plugin/wpjaipho.zip
Forum: Plugins
In reply to: [WPJaipho Mobile Gallery] exclude featured pictureThanks for the tip.
I’ll implement it in a next version. And, it will be configurable through settings page.