Forum Replies Created
-
AuthorPosts
-
Steven Zahm
Keymaster@ Craig
I’ve eliminated the bug with paginations reported in this comment. You’ll no longer have multiple pages for page 1 when there are multiple pages of entries.
Steven Zahm
Keymaster@ Leonardo
Currently, SiteShot only support the premium templates sold here, not the free core templates that come with the plugin.
Hope that helps!
Steven Zahm
Keymaster@ Dani
Yes, I can upload just thru the admin. The reason I also asked for FTP is because I want to make a backup of the images before deploying. The reason being that the images are being moved on demand as well. This is being done to be more WP compliant according to current best practices. Right now they are saved in the
../wp-content/connection_images/folder. They will be moved to../wp-content/uploads/connections-images/{entry-slug}/. Back when Connections first implemented image support there really was not a best practice other than saving them in thewp-contentfolder. The current best practice is to have images in theuploadsfolder.I don’t need to make the backup of the folder, you can… I just want to make sure it is done before I deploy just incase … because if something goes wrong, all images could be permanently deleted. I do not expect that to happen as it has not happened on others who are running the beta. Like I said, I do believe this code to be production ready, but with major changes like this, I really like to play it safe.
Steven Zahm
KeymasterYep, the Code Snippets plugin is extremely useful … I keep all the random code I use to add to the functions.php file in their now … that way if theme’s are changed, no more hunting down the snippets from the old theme and transferring them.
Steven Zahm
Keymaster@ Dani
re: I thought the shortcode options only work with the premium templates?
Correct, they only work with the premium templates. You mentioned possibly upgrade which is why I mention the shortcode options as an option.If you want to remove it from the PHP, there is a more complex option, using filters.
For example to remove the label from links you can do use this filter:
add_filter( 'cn_output_default_atts_link', 'cn_link_output_atts' ); function cn_link_output_atts( $atts ) { $atts['format'] = '%title%'; return $atts; }re: Also, there is an extra space in front of Contact that I would like to get rid of.
That can be done by adjusting CSS. Add the following to your theme’s custom CSS area:.cn-entry-info span:first-child { display: block; }I hope that helps!
Steven Zahm
Keymaster@ Michael
Sorry, no, a category hierarchy can not be imported. After you import your CSV file, you can go to the Connections : Categories admin page and adjust the the parent/child relationships. Hope that helps!
Steven Zahm
Keymaster@ Alan
Which product and support license key? I can manually make the adjustment. You can also manage the domains by going to the Purchase History page, clicking the View Licenses page and then clicking the Manage Sites link.
I hope this helps … let me know.
Steven Zahm
Keymaster@ Randy
It can be posted here, please just be certain to check the private reply option before submitting. Alternatively, you cans end it using the contact link at the bottom of the page.
Steven Zahm
Keymaster@ roy
I was able to add a workaround that will return results with 2 and 3 character searches. There is a caveat though… the workaround involves the search searching for terms that begin with those characters. Example…
If I searched for
joy, I would get no results. Now I will, but results would include any term found that begins withjoy, likeJoyce. But if you were to search forJoy LongwordonlyJoy Longwordwould be shown as a result. The actual query still dropsJoyand only actually searches forLongword.Another enhancement is that the results are sorted by relevance as determined by the database (unless the search is only for a small word such as
joy).I hope that becomes helpful.
08/23/2014 at 11:34 am in reply to: Possibility to show different category names to consumers and providers? #301715Steven Zahm
Keymaster@ Magnus
If I understand correctly … is sounds like you could use categories to create two directories one showing the medical terminology the other showing common language terminology.
Here’s a FAQ on how to do with with the cMap template (which will work any template which supports the searchable category drop down.
Hope that helps!
-
AuthorPosts
