mikedistras
Forum Replies Created
-
Forum: Developing with WordPress
In reply to: Sequential Post ID per CPTIm relooking at this and still looking for a solution to implement, and happy to work with somebody to help get this integrated.
This sounds similar to my needs:
https://support.advancedcustomfields.com/forums/topic/how-can-we-create-an-auto-increment-id-on-custom-post-types-with-plugin/So ideally there would be an ACF field that holds the number, and it auto-increments for each new post in the defined Custom Post Type.
Can anybody help?
Forum: Plugins
In reply to: [Ninja Forms - The Contact Form Builder That Grows With You] Export FormUnsure how that can be marked as resolved?
The documentation I linked to looks like it is for versions 2.x.x?
NinjaForms 3.x.x has the new layout, and no menu options in the WP admin sidebar.
So is there no current way to export/import forms in version: 3.1.9?
Forum: Plugins
In reply to: [Theme My Login] Reset Password Form and Extra Field in FirefoxOk, so the issue seems to be that in FireFox, before the type=”hidden” or type=”password”, an is being added in, if i remove this in Inspector, the form is correct.
So now the question is, how do i permanently remove this from being added in to the input form/field?
Forum: Plugins
In reply to: [Theme My Login] Reset Password Form and Extra Field in FirefoxHi Jeff,
Seems to work as expected on the Twenty Fifteen theme – It isnt working a custom theme ive developed, so i can see any reason why it wouldnt be working.Are there any dependancies or something obvious coding wise that would stop it from working?
Also, the password field displays characters as plain text too (in FireFox only) – Any ideas?
Forum: Developing with WordPress
In reply to: Sequential Post ID per CPTEach CPT would work almost as a customer receipt, hence why the number cannot change once assigned.
How would i go about creating/assigning the number in post meta for a CPT?
Forum: Plugins
In reply to: [Front End PM] PermissionsYes using latest version of both plugins.
The only extra things, are thats it on a WordPress MultiSite install, and its being fired from a template file:
echo do_shortcode('[front-end-pm]');
Yes, feel free to send debugging code.
Forum: Plugins
In reply to: [Front End PM] PermissionsI had altered the Capability permissions for each Role in s2member.
So my original question is, does front end PM look at the users “role”, or does it check if that role has a specific “capability” option?
I can confirm i am logged in as the correct user, but still having the mentioned issue
Forum: Plugins
In reply to: [Front End PM] PermissionsIm using the shortcode: [front-end-pm]
Settings page: https://image.ibb.co/cQGGnF/front_end_pm_settings.png
Shortcode output: https://image.ibb.co/fEF97F/no_nwe_message.png
As you can see, there is no option to create a New Message, even though “s2member level 4” is selected to be able to send new messages.
Forum: Plugins
In reply to: [Front End PM] Email specific user rolesThanks for the information.
Any idea if it would be possible to email all users defined in a group?
Forum: Plugins
In reply to: [Front End PM] Add announcement button dosn’t appearIf Announcements is a Custom Post Type, it is possible to add a post from the front end, but im unsure if it would fire a notification to all users.
Would be great if Plugin Developer could clear this up??
Forum: Plugins
In reply to: [Front End PM] Add announcement button dosn’t appearWhat fires the announcement emails to go to everybody?
Would it work if it was a new CPT creation from the front end?
Forum: Plugins
In reply to: [Front End PM] Email specific user rolesOr maybe Groups*
Whichever is possible to email a large group of people in the To field.Also, are there more shortcodes to implement to just add the New Message section?
Forum: Plugins
In reply to: [Relevanssi - A Better Search] Wont index ACF Post Object data?Could you give me some instructions on how to run this as a cron job within the free version at say 2 or 3 times per day? Or point me to where i could find instructions?
EDIT:
Sorry, found it in the FAQ’s here: https://www.ads-software.com/plugins/relevanssi/#faq- This reply was modified 7 years, 10 months ago by mikedistras.
Forum: Plugins
In reply to: [Relevanssi - A Better Search] Wont index ACF Post Object data?Great stuff, that worked perfectly and found the results i expected it to, thank you!
Last issue now is that it doesnt actually display the expected results unless
I Erase and Rebuild the Cache each time a new post is created. (however the Highest Post Index number does increase correctly).Is this just a cache issue, and me being impatient, or is there another way to get the results to display as expected?
Forum: Plugins
In reply to: [Relevanssi - A Better Search] Wont index ACF Post Object data?Ah, i managed to get it to (partially) work, the formatting of your post here really helped, thank you!
The code I used below, helped index 1 defined field from the post object:
add_filter('relevanssi_content_to_index', 'add_post_object_data', 10, 2); function add_post_object_data($content, $post) { $post_object = get_field('customer_field', $post->ID); $content_to_index = get_field('surname', $post_object); $content = $content_to_index; return $content; }
However if i try index another field, the first one (surname), breaks and doest find any results…
add_filter('relevanssi_content_to_index', 'add_post_object_data', 10, 2); function add_post_object_data($content, $post) { $post_object = get_field('customer_field', $post->ID); $content_to_index = get_field('surname', $post_object); $content_to_index = get_field('first_name', $post_object); $content = $content_to_index; return $content; }
How can i get it to index both fields?