Forum Replies Created
-
AuthorPosts
-
Steven Zahm
Keymaster@ Nikki
This is actually not easily accomplished. The only thing I can think of is maybe using the search widget that come as part of the Widget Pack. If your slider supports placing widgets, you could potentially use the search widget which should show the only results on directory page.
Steven Zahm
Keymaster@ Liam
Sorry, no, this is not possible with Connections and will not likely be for quite a while because an entire user permission system would have to be built.
Steven Zahm
Keymaster@ chris
Sorry, no, not at this time. I’ve booked marked that page so maybe in the future I’ll have a solution the is similar in functionality.
Steven Zahm
Keymaster@ Todd
Of, I see the template must be loading before Connections loads. To make sure the template loads after Connections, change this:
add_action( 'cn_register_template', array( 'CN_SMC_Card', 'register' ) );To this:
add_action( 'plugins_loaded', array( 'CN_SMC_Card', 'register' ), 11 );I just tried it out; with that change it works as expected.
Steven Zahm
Keymaster@ Shannon
First, please try deactivating the Photon Module in the Jetpack plugin. I think it might be changing the images links in a way that is not compatible.
Steven Zahm
Keymaster@ Matt
One this I see… This line should be the following based on your code.
$template->part( array( 'tag' => 'card', 'type' => 'action', 'callback' => array( $this, 'smccard' ) ) );You can remove this line:
'custom' => FALSE,That value will set itself properly when activated as a plugin.
You said it activated fine without error as a plugin, yes?
Steven Zahm
Keymaster@ Spiros
Answered here.
Steven Zahm
Keymaster@ Khaled
Good to hear you found your answers.
Steven Zahm
Keymaster@ Spiros
Yes, this first option would be possible with Connections but would require some custom work to create the user interface you need for the search.
I’m unavailable to do this work, but I can email someone who might be. I’ll ask them to reply to you in this forum spread.
Steven Zahm
Keymaster@ Khaled
If you want to use Form to collect user info, you’ll have to setup the workflow somehow so it is entered before the user is logged in. The design intent behind Form is to take “anonymous” directory submissions from site visitors, not registered users.
So, the short answer is, yes, you have it right. I know other users have come up with a work around of sorts that involved setting up the user registration process so the user entered details in Form prior to finishing the site registration so when they logged in for the first time, their Form submission would be linked to their user account. It’s creative but I’m not exactly sure how those users set it up.
I hope that helps.
-
AuthorPosts
