Forum Replies Created
-
AuthorPosts
-
Steven Zahm
KeymasterGlad to help. My guess is the htaccess password is blocking the external connections required for Photon.
Steven Zahm
Keymaster@ James
The category IDs in the shortcode were not correct… I didn’t verify those when I looked originally. I changed the IDs and now the options are shown as they should be.
The addon is a plugin called “Connections Multiple Category Search”. You can move it to other sites as needed like you would any other plugin.
Hope that helps!
Steven Zahm
Keymaster@ James
Ok, I did not do any testing, but I opened the file and noticed that the file encoding is broken. What was the source of the CSV file? At the end of every phone number is
ÿHwhich basically is my text editor doing its best to decode whatever that character should actually be.My suggesting, read this tip in the FAQs. make sure the file is UTF8 encoded and I’m sure it’ll import just fine.
Hope this helps, let me know.
Steven Zahm
Keymaster@ Martin
Ok, it that the HTML markup seemed identical to the category widget HTML. Regardless, for the /submit/ link to function on the homepage, you need to have the [connections] shortcode on the page. No shortcode, not form.
Hope that helps!
Steven Zahm
Keymaster@ James
Apologies my and my entire family has been ill so I have been running a little behind. No excuse but it the reason.
The reason the shortcode did not work is because you did not have the addon yet. I installed it and now the shortcode works.
There is a CSS conflict with the them though. Well, not as much as a conflict than the theme is doing something poorly. The HTML
spanelements are inline elements. The theme is settings them as inline-blocks, globally. The only way to I can think of fixing this is to add this to the theme’s custom CSS area:span { display: inline; }But doing this could break some of the theme’s layout because any spans within the them that is relying on spans being inline-blocks will no longer be correct. Ideally the theme author should fix this and adjust the theme accordingly.
Hope this helps!
Steven Zahm
Keymaster@ James
That’s curious. Have never run into an issue like that before. Could you please attach a copy of the CSV file you are importing? Change the name from
.csvto.txtfirst otherwise it will be rejected as an valid attachment.Also, please include as screenshot of the mapping you are using so I can match that too when I test.
Steven Zahm
Keymaster@ Emma
Please try deactivating the JetPack Photon module. Does that help?
Steven Zahm
Keymaster@ Michelle
The only this could be done is thru PHP code. You would have to hook into the
cn_entry_action_back_attsfilter and change the text option based on the category that is being viewed. Something like this:function my_custom_cn_back_link( $atts ) { if ( cnQuery::getVar( 'cn-cat-slug' ) ) { // If the category slug is a descendant, use the last slug from the URL for the query. $categorySlug = explode( '/' , cnQuery::getVar( 'cn-cat-slug' ) ); if ( isset( $categorySlug[ count( $categorySlug ) - 1 ] ) ) $categorySlug = $categorySlug[ count( $categorySlug ) - 1 ]; $term = cnTerm::getBy( 'slug', $categorySlug, 'category' ); $category = new cnCategory( $term ); switch ( $category->getID() ) { case x: $atts['text'] = 'Back to all Shops'; break; case y: $atts['text'] = 'Back to Our Sponsors'; break; } } return $atts; }You would change
xandyin the code above to the correct category ID. To add more you would add additional case statements.Hope this helps!
Steven Zahm
Keymaster@ gus
Most of the time when this is asked the reason is due to a filter that is being applied to the list on the manage page. I suggest double checking to confirm that all the filters are set to show all.
Hope that helps, let me know.
Steven Zahm
Keymaster@ Mike
Very likely Paid Memberships Pro has an action that fires when a member’s membership expires. I would hook into this action and set the related entry to as unlisted.
Does that help?
-
AuthorPosts
