Forum Replies Created
-
AuthorPosts
-
Steven Zahm
Keymaster@ Juanita
The results are weighted by the database and the results are sorted by that weight. Pretty similar to how WordPress display search results for posts and pages.
Hope that explains how the search results are ordered.
Steven Zahm
Keymaster@ Juanita
Deactivate the Contact extension for Connections. one of the primary features of this addon is to hide the email addresses for privacy. Instead users are to use the contact form to email the entry.
Hope this helps!
Steven Zahm
Keymaster@ Scott
Yes, this is possible. Install the Code Snippets plugin. Add a new snippet with the following code:
add_filter( 'cn_list_action_options', 'cn_list_action_logout_register' ); function cn_list_action_logout_register( $items ) { $items['logout'] = 'Show the "Log out" link if the user is logged in.'; return $items; } add_action( 'cn_list_action-logout', 'cn_list_action_logout_render' ); function cn_list_action_logout_render( $atts ) { if ( is_user_logged_in() ) { wp_loginout( $_SERVER['REQUEST_URI'] ); } }Save and Activate the snippet.
Navigate to the Connections : Settings admin page and click the Display tab.
Scroll to the List actions sections, enable the log out link option, drag and drop is the list items in the desired order.
Save the changes.
You should now see the “Log out” link.
Hope that helps!
Steven Zahm
Keymaster@ bobbyau
Well, I fixed numero. I have never seen anything like this before. The URL for the foursquare link ended with a
?and it should not. I removed it and now it can be edited normally. For some reason, the only thing I can think of, is that this must have somehow been tripping up the security the web host has applied at the server level.I only figured this out by making a copy of numero and slowly removing data until info until it would save without the 403. I only decided to do this after making sure I could add and edit other entries without the error. So I determined it must have been something specific to that entry.
I guess you just started getting this error because the webhost made changes at the server level and has been tweaking them. All speculation of course but its the only thing I can think of that makes sense.
Hope this helps!
Steven Zahm
Keymaster@ karen
I have not heard back… is this resolved? Did having the host reset the db server fix the issue?
Steven Zahm
Keymaster@ terry
The one last thing I can think of is before uploading, change the file name from
.csvto.txt.If that does not work, if you give me a temp WP admin login and FTP login I can take a look today and get this working for you on your site. Details can be posted here as a private reply. There must be something a bit more unique to your web server config that is preventing such a simple file from uploading.
Steven Zahm
KeymasterGreat to hear you figure it out!
Steven Zahm
Keymaster@ terry
Ok, great, just wanted to confirm the version. I know this update worked for several others… perhaps there’s something specific about the server config which is still preventing uploads.
Did you install the Disable Real MIME Check? The WordPress devs are recommending as a workaround?
Steven Zahm
Keymaster@ terry
Ok, if you are getting the “ERROR: Sorry, this file type is not permitted for security reasons.” message, this is a WordPress error message not Connections.
WordPress 4.7.1 introduced a change which is causing many users trouble with many plugins which allow uploading. This error even shows itself in the WordPress Media Library. You can read the gory details in the WordPress Trac (not really necessary).
https://core.trac.wordpress.org/ticket/39550
I know you said you downloaded the latest CSV Import this morning, can you confirm the version number that is installed?
In the WordPress Trac they recommend installing the following plugin as a workaround:
https://wordpress.org/plugins/disable-real-mime-check/
But this should not be needed with the latest version of CSV Import. But if you are certain you do have the latest, then I recommend giving the Disable Real MIME Check plugin a try.
Steven Zahm
Keymaster@ Steve
re: So my issue is that my form always shows up on the homepage with all the other content on the homepage.
Can you please share a link to the page that has the issue show I can see it? Perhaps you have the directory home page set to the same page as your site’s home page in the WordPress settings???
re: I just want a basic page with just the form. How do I do this?
Like I have stated, since you are going to use Link to allow users to add/edit their own entries, they must use the form that is rendered when one clicks the “Add Many Directory Entry” link. This link does not need to be output above the directory. You can output this link in just about any location you wish using the methods I outlined in my last reply.
-
AuthorPosts
