Srikanth Kamath
Forum Replies Created
-
Hi, the plugin has stooped working..? no verification email is sent to new users.
Dear Pavel,
thanks for the quick revert, appreciate the lot of hard work in ATUM Project,
Woo-Commerce is not a easy horse to break / tame. and your second challenge is make tut on how to use the features in ATUM.
+1, for the youtube, i shall reactivate and check with documentation and revert back if i have any issues.
If I may suggest, It may be a good Idea to have a forum, to discuss / document the issues faced, instead of the WP Support..?
Cheers, Have a Great weekend. ??
same, the fix by @twisted89 does resolve sending of reset email, but the link for reset password in the email throws “This key is invalid or has already been used. Please reset your password again if needed.”
this simple very useful plugin requires urgent fixes, hope the authors, take some time to update.
hope to any early resolution, until then, can be used only on Vendor registration or Vendor login only. ??
Forum: Themes and Templates
In reply to: [StoreVilla] Pro Paid version not maintained.hi, thanks for update,
just for FYI and if you want to improve your customer experience,
It would have been a great experience, if you had sent a email directly all your customer who have purchased the Storevilla Pro
Dear Customer,
We are glad to release a improved version of Storevilla Pro 1.0.6, please update the latest version of the theme from our site:
https://accesspressthemes.com/my-account/Storevilla Pro 1.0.6 fixes the following issues.
—
—
Regard
Accesspresstheme Support.” please do let us explain why we do keep the role” agreed, but why is the theme / plugin deciding for the customer / user /admin of the theme / plugin.?
like i have said “at least warn the customer to manual clean the mess, where all the plugin have modified the hooks & actions & filters.”. while uninstalling all good plugin that i use always ask the admin if they want to keep the setting or wipe clean.
after all the admin, is the deciding person for any such consequence of his / her decision, whatever be it.
I guess it’s more to do with the approach how open the user experience has to be. But any which ways a warning is essential that the setting are not removed.
Forum: Plugins
In reply to: [Custom Field Suite] Query loop in reverse order.hi, not tested but will put you in the direction
//check the array // var_dump($timelinefields); $sortArray = array(); foreach($timelinefields as $item){ foreach($item as $key=>$value){ if(!isset($sortArray[$key])){ $sortArray[$key] = array(); } $sortArray[$key][] = $value; } } $orderby = "timeline-date"; //change this to whatever key you want from the array array_multisort($sortArray[$orderby],SORT_DESC,$timelinefields); // check the sorted arrary // var_dump($timelinefields);
Forum: Plugins
In reply to: [Custom Field Suite] Query loop in reverse order.hi, the array returned by CFS()->get() is a array, hence you can sort the array https://php.net/manual/en/array.sorting.php
Forum: Plugins
In reply to: [Custom Field Suite] Loop inside loopWhen you use get() on a parent field (faq_section), all sub-field values (section_title, questions) are automatically retrieved and stored in the variable.
<?php // Display everything within the "faq_section" loop $fields = $cfs->get('faq_section'); foreach ($fields as $field) { echo '<h4>' . $field['section_title'] . '</h4>'; foreach ($field['questions'] as $question) { echo '<h2>' . $question['question_title'] . '</h2>'; echo '<div>' . $question['question_answer'] . '</div>'; } } // Display the footer echo $cfs->get('footer_section'); ?>
Forum: Plugins
In reply to: [Custom Field Suite] Loop inside loopHi, things keeps changing a google search on “loop-within-a-loop” + “CFS” get you to https://customfieldsuite.com/forums/questions/925/loop-within-a-loop
Forum: Plugins
In reply to: [Custom Field Suite] Conditional display based on Selecttry this..
<select name="agama" id="agama"> <?php $agamas = array('apple', 'banana', 'pineapple', 'orange', 'grapes'); foreach ($agamas as $agama) { $selected = ($rows['agama'] === $agama) ? ' selected="selected"' : ''; ?> <option value="apple"<?php echo $selected; ?>>apple</option> <?php } ?> </select>
Trust me, I have read and used the examples, somewhere while reading the reviews & documentation of ACF, I understood that the “get_field / the_field can be used get the value of my_cf”.
I have not tried “the_field”, shall revert once i have tried it.
I have changed the rating, I have no intention to hurt.. but I wanted people to read on the issue, Like i read 4 & 1 to check the plugins..
I would suggest that in the documentation on the function of ACF, pls do mention about how to use them on Custom_Fields., It wil help
Hi @elliotcondon,
thanks for the response, may be i will require some help.. I created a custom field outside the plugin (no group) check the snap shorts link One and link Two
How can i use get_field / the_field to get the value of my_cf..
I have no issues with the plugin, its a well developed one and supported. Deserves better rating for sure, the documentation is all good for the features However, No where its made clear to the plugin users that “the Plugin will work only with CF created within the Plugin”.
I hope you get issue, before buying the ACF, People like me would have learnt and used the CF of wordpress and expect
a) All CF within ACF & Outside would work with ACF API / Shortcode / Function and if Not
b) as easy migration of these CF to ACFEven a foot note or Warning anywhere in the documentation on the above would help the plugin Purchaser “Custom Field created outside ACF will have to migrated to ACF for using the API / Shortcode/ Function (Click to learn How)”
Forum: Reviews
In reply to: [Custom Field Suite] How to show the fields in the sitefront end or the Post has to be coded.. check this link..
https://tskamath.pactindia.net/technology/wordpress/shortcode-get-custom-field/Forum: Plugins
In reply to: [Custom Field Suite] Using the API for Custom Field outside the Groupthanks