BBPress Steven Zahm : Replies Created

Forum Replies Created

Viewing 10 posts - 9,821 through 9,830 (of 15,332 total)
  • Author
    Posts
  • in reply to: Second Connections Widget #307920
    Steven Zahm
    Keymaster

    @ Jacqueline

    Sorry, no, but you can use categories to split up the directory into business and artists to show them on separate pages. Sounds like that will meet your needs. Here’s a link to a FAQ which explains how to do it.

    in reply to: Date Picker Background? #307917
    Steven Zahm
    Keymaster

    @ Chris

    No, you’re not missing anything, but it seems I am. I do not seem to be enqueuing the required CSS for the date picker. I didn’t catch this bug because it was being enqueued elsewhere. I’ve corrected this for the upcoming 8.1.6 bugfix release.

    As a temporary fix, you can install the Code Snippets plugin and add a new snippet with the following code:

    function cn_enqueue_jquery_ui_datepicker_css() {
    
        $min = defined('SCRIPT_DEBUG') && SCRIPT_DEBUG ? '' : '.min';
    
        wp_enqueue_style( 'cn-public-jquery-ui', CN_URL . "assets/css/jquery-ui-fresh$min.css", array( 'cn-public' ), CN_CURRENT_VERSION );
    }
    add_action( 'wp_enqueue_scripts', 'cn_enqueue_jquery_ui_datepicker_css' );
    

    That should fix it. Apologies for the trouble!

    in reply to: Redirect on login #307896
    Steven Zahm
    Keymaster

    @ Lee

    Connections does not have a built-in login, though there is a freely available extension that does add that feature. The redirect feature would be easy to add just not sure how useful that feature would be. The login widget only displays on the single entry profile page. The shortcode technically can be used anyway though, so it could be added as a shortcode option…

    in reply to: Admin only categories #307895
    Steven Zahm
    Keymaster

    @ Lee

    Something like this is on my todo list. Not sure when or how yet at this time. Thanks for the suggestion, they are always very welcomed!

    in reply to: Adding logo to Card Bio template #307859
    Steven Zahm
    Keymaster

    @ Paul

    Oh, fudge … I see it now. I had a typo. It should be:

    <?php $entry->getImage(array('image'=>'logo')); ?>

    Looking at code for far too long today! Sorry about that!

    in reply to: Adding logo to Card Bio template #307855
    Steven Zahm
    Keymaster

    @ Paul

    The code snippet I gave has to work … it’s exactly what is used throughout Connections and other templates to show the logo.

    Can you past your entire code for your template here?

    in reply to: Can't activate cMap #307854
    Steven Zahm
    Keymaster

    @ karin

    re: You told me, which tables to export and named them. Well, in the old cMap Version there are only four
    You must have been running a very, very old version of Connections on the old site for the other tables not to exist. Something like 0.6 or something. The only way updating would have been supported is if you updated as there were updates to Connections released. It in from 0.7 on onward where updates to the database would happen automatically.

    The data from the old site can still be used, but it would take an expert to handle by properly forcing update routines in a very specific order.

    re: I just wonder why the addresses show in the front end, not in the back.
    Connections use to store and edit all the data in the connections table. Now there are all the other tables. The data is still saved in the main connections table but it is now used as a cached for displaying data only. This is done for performance and to keep the number of database queries to a minimum. When you edit an entry in the new Connections, you actually edit the data in the other tables, which for you do not exist, which is why you can see it but not edit it. I hope that clears up why!

    re: The offer of 50 $ is worth considering. Would you that, even with the facts told now?
    Yes, the offer would remain the same. It should only take me a little longer to do the proper updates so the tables are created and the data migrated.

    If you would like me to do this … I’ll require is FTP access to both sites. I will also need admin access to both sites. And I will need access to phpMyAdmin on both sites. The login details can be sent using the contact link at the bottom of the page. After I receive that, I’ll send a PayPal invoice to your email address for payment and I’ll being work immediately.

    in reply to: Attach file #307837
    Steven Zahm
    Keymaster

    @ Joseph

    Honestly, very like not until next year sometime. Very vague I know, but I can not be more specific, sorry.

    in reply to: Can't activate cMap #307835
    Steven Zahm
    Keymaster

    @ karin

    First, on the new site you’re still using the old cMap version 1.0, not the new. You should really use the new version. To do this, delete the cMap files from here:
    ../wp-content/connections_templates/cmap/

    Install the new version as a plugin, like you would install any other plugin in WordPress, do not copy the files from the zip file into the old folder as that will not work.

    After you install cMap as a plugin, activate it as a plugin on the Plugins admin page.

    Now cMap will show up on the Connections: Templates admin page and can be activated for use on that page.

    re: Anyway, the looks of old and new are quite different:
    You’re using the template in two different themes … the templates are designed to pick/use styles from the theme. That is why you see the font style differences.

    re: When I look at the entries in the front end, they contain the names and the addresses, phone-numbers etc. When I go to the backend to alter the dates, there are no addresses, no phone-numbers, only the names. The fields are empty.
    This almost has to be directly related to not importing all the Connections tables from the source site to the destination site. You must import all these tables:

    • connections
    • connections_address
    • connections_phone
    • connections_email
    • connections_messenger
    • connections_social
    • connections_link
    • connections_date
    • connections_meta
    • connections_terms
    • connections_term_taxonomy
    • connections_term_relationships

    **NOTE: the table names above do not include the WordPress table prefix which defaults to wp_ but can be anything.

    re: And last (but not least…) I do not get all entries shown. It stops after 30 entries or so.
    The best I can tell … it appears all entries show on this page:
    http://tierakupunktur.gervas.org/wordpress/akupunktur-tierarzte-in-meiner-nahe/view/all/

    Also are on this page:
    http://tierakupunktur.gervas.org/wordpress/akupunktur-tierarzte-in-meiner-nahe/

    I really do not recommend showing so many entries on a single page for the same reasons WordPress limit the number of posts per page to 5 (or maybe it is 10). The old cMap 1.0 did not support pagination, I think, its been way too long now for me to remember. But the new version does. It’ll default to 20 per page.

    re: When I press the button “view all” it shows me a list of ALL entries. I can’t click on one because then there is no result…
    This is very likely related to an incomplete import as noted above.

    re: Can you please tell me, which files I have to change to change the looks in front? Is there a full documentation somewhere? I know there is the css-file.
    Found only one…

    The older 1.0 version can be found here:
    ../wp-content/connections_templates/cmap/

    The new version can be found here:
    ../wp-content/plugins/connections-cmap/

    Here’s the doc page for creating custom CSS for a template, but this only applies to the new version.
    http://connections-pro.com/2014/05/07/quicktip-custom-css-templates/

    re: In Germany we show the addresses differently to the US-Adresses. It’s always have to have the zip-code first, then the City.
    Yes, I know. I was actually born in Frankfurt on the US military base. Unfortunately I was way too young to remember when we left to remember it. Any way… with the new cMap you can use the addr_format shortcode option. See this doc page for more.

    re: Would like to have the category pulldown
    The new version of cMap has a category drop down.

    re: sorting all entrys by Zipcode
    See the doc page for the order_by shortcode option.

    re: Would also like to add a photo.
    cMap, by default shows a logo, but the new version can be changed to show the photo instead by using the image shortcode option. Here’s an example:

    [connections image="photo"]

    **NOTE: this will only work with the new cMap.

    re: All Templates you offer, contain far too many possibilities for me.
    Only enter the details you want to be shown. A template will not show blank spots for details you do not enter. Alternatively, if you want to enter data but not have it shown, cMap has shortcode option to turn them off so they are not displayed.

    Additionally, On the Add/Edit Entry admin pages you have the option of hiding fieldsets that you do not need. Click the Screen Options tab in the upper right corner of the browser window. This will not affect what is shown in the template but like I said, if you do not enter something, it will not be shown.

    One last thing … I gave you many shortcode options. This is important. You do not add a new shortcode for each option, you add all options to the same shortcode. Here’s an example which shorts the entries by zip code and changes the address format to have the zip code first.

    [connections order_by="zipcode" addr_format="%label% %line1% %line2% %line3% %zipcode% %state% %city% %country%"]

    Again, this will only work with the new cMap, not the old.

    re: I am really a bit frustrated. I’ve been sitting here for hours now and can’t solve the problems. I just don’t have enough knowledge of php and maybe even css…
    For a small fee of $50 I can properly migrate and setup the new cMap template for you.

    I really hope this helps! I think I’ve answered all questions and I hope I did thoroughly!

    in reply to: Adding logo to Card Bio template #307831
    Steven Zahm
    Keymaster

    @ Paul

    Close, the correct function call would be:

    <?php $entry->getImage( array( 'image', 'logo' ) ); ?>

    Hope that helps!

    If you have a moment, I would truly appreciate a review as they really do make a difference. Many thanks in advance!
    https://wordpress.org/support/view/plugin-reviews/connections

Viewing 10 posts - 9,821 through 9,830 (of 15,332 total)