DarkoDonnie
Forum Replies Created
-
Hi @sharmadpk03,
I’m using the latest version of the plugin along with WooCommerce v 3.9
Plugin addons used:- WooCommerce Integration
- Multi Part Forms
- Conditional Logic
- Advanced Fields
Registration form is made as multi part form, connected with WooCommerce and it works fine;
At the 2nd step there are some required fields which can be hidden if specific radio button value is “Yes”, so during the registration, while all those required fields are hidden, user is allowed to skip to the next step without filling the info.
But, when the account is created, even the fields which are hidden while editing user details page are required too, and validation errors appear, so conditional logic works during the registration, but not on user the user account page.
All the fields, no matter if hidden or not are required for updating/editing user profile.Current registration URL is:
https://gescnew.wpengine.com/create-an-account/- This reply was modified 4 years, 7 months ago by DarkoDonnie.
Forum: Plugins
In reply to: [Kebo Twitter Feed] array_slice() expects parameter 1No Worries,
I managed to fix it, now everything works excellent, even with offset ??One more time – thanks for this really nice plugin.
Forum: Plugins
In reply to: [Kebo Twitter Feed] array_slice() expects parameter 1Hi Peter,
I was trying something like this:
shortcode.php line 109changed this:
$tweets = array_slice($tweets, $offset);
to this:
$tweets_arr = (array)$tweets; $tweets = (object)array_slice($tweets_arr, $offset);
now I’m not getting warning, but there is no tweets just the same message:
Sorry, no Tweets were found.maybe you can help me with this?
ThanksForum: Plugins
In reply to: [Kebo Twitter Feed] Display Images (or Videos?) in Feedsjust add this to your theme css file:
.kebo-tweets .ktweet .kfooter a.ktogglemedia.kclosed .kshow { display:none !important; } .kebo-tweets .ktweet .kmedia.kclosed { height: auto !important; }
this way images will always be visible.