BBPress Steven Zahm : Replies Created

Forum Replies Created

Viewing 10 posts - 13,031 through 13,040 (of 15,332 total)
  • Author
    Posts
  • in reply to: Integrate with InfusionSoft? #269095
    Steven Zahm
    Keymaster

    @ Rose

    Sorry, no, Connections has no integration points with any CRM.

    in reply to: Default Category Displayed and Image Resize #269094
    Steven Zahm
    Keymaster

    @ Jeremy

    You should adjust the CSS to accommodate the new image size. Make the change to the excerpt-plus.css file and then duplicate that file and name it excerpt-plus.min.css. Upload both overwriting the originals.

    in reply to: Entry of data #269070
    Steven Zahm
    Keymaster

    @ Julie

    Connections and its extensions do not currently add any or use any redirects when a user logs in or attempts to access the admin; so, there must be another plugin you have installed that is doing that. It could be you member plugin as that is a common feature for those.

    in reply to: Image getting cut-off #269050
    Steven Zahm
    Keymaster

    @ Erik

    I think I mean this page too:
    http://www.mymedicalmalpracticeinsurance.com/all-md/florida/

    It’s difficult to say for sure because I think you’re using the shortcode across many pages right?

    Using this shortcode instead:

    [connections image_height='' image_width=225 tray_image_height='' tray_image_width=225]

    in reply to: Image getting cut-off #269049
    Steven Zahm
    Keymaster
    in reply to: Move Notes #269048
    Steven Zahm
    Keymaster

    @ Ed

    The only way to do this is to edit the core card.php template PHP file. This file can be found here:
    ../wp-content/plugins/cmap/

    If you have some basic understanding of PHP making this tweak should be pretty straight forward.

    Look for this block of code:

    if ( $atts['enable_note'] && $entry->getNotes() != '' ) {
    
    	echo '<div class="cn-notes" id="note-block-' , $entry->getRuid() , '" style="display: none;">';
    
    		if ( $atts['enable_note_head'] ) echo '<h4>' , $atts['str_note_head'] , '</h4>';
    
    		$entry->getNotesBlock();
    
    		echo '<div class="cn-clear"></div>';
    
    	echo '</div>';
    }

    Change it to this:

    if ( $atts['enable_note'] && $entry->getNotes() != '' ) {
    
    	echo '<div class="cn-notes" id="note-block-' , $entry->getRuid() , '">';
    
    		if ( $atts['enable_note_head'] ) echo '<h4>' , $atts['str_note_head'] , '</h4>';
    
    		$entry->getNotesBlock();
    
    		echo '<div class="cn-clear"></div>';
    
    	echo '</div>';
    }

    And then move it to where you want it to be shown.

    You should also remove this sections of code since it is now longer needed:

    if ( ( $atts['enable_note'] && $entry->getNotes() != '' ) && ( $atts['enable_bio'] && $entry->getBio() != '' ) ) {
    	echo ' | ';
    }
    
    if ( $atts['enable_note'] && $entry->getNotes() != '' ) {
    
    	printf( '<a class="cn-note-anchor toggle-div" id="note-anchor-%1$s" href="#" data-uuid="%1$s" data-div-id="note-block-%1$s" data-str-show="%2$s" data-str-hide="%3$s">%2$s</a>',
    		$entry->getRuid(),
    		$atts['str_note_show'],
    		$atts['str_note_hide']
    	);
    }

    Hope that helps.

    in reply to: Images not showing since installing Tiles Plus #269047
    Steven Zahm
    Keymaster

    @ Michael

    Two options:

    One:
    Add the following to the timthumb-config.php file found here:
    ../wp-content/plugins/connections/includes/libraries/timthumb/

    Change the doc root accordingly:
    define ( 'LOCAL_FILE_BASE_DIRECTORY', '/my/doc/root' );

    Two:
    Change the Medium Image dimensions on the Connections : Settings admin page under the Image Settings tab to be 100 x 130 or as desired.

    Use the following shortcode:
    [connections image_width='' image_height='']

    Of you are using other shortcode option just add the width and height options. Setting these two values to empty will tell Connections to use the cached image that was created when the image was uploaded.

    The downside of this method is that you will have to re-upload any images you have already uploaded in order for the new images settings to be applied.

    Hope that helps!

    in reply to: Image getting cut-off #269000
    Steven Zahm
    Keymaster

    @ Erik

    That would be a page that you defined. If you go to the Connections : Settings admin page under the General tab, that will show you the page you set as the direct home page.

    in reply to: Many categories & max_execution_time problems #268997
    Steven Zahm
    Keymaster

    @

    So the front end works fine with you custom code. That’s good. Where does it break in the admin? I image the Connections : Manage page is fine because that is pagination. I could see the Connections : Categories page being problematic with so many categories. I’m think the Add / Entry page should be alright, especially if your front end code is fine.

    There is a method you can call to create a category select:

    cnTemplatePart::category( array(
        'default' => 'Select...',
        'type' => 'select',
        'group' => TRUE,
        'parent_id' => $category_state_ID
    ));

    However, I don’t think it work with you chained select. I’d have to tweak the code in order to support that better.

    in reply to: IE 10 bug in template Slim Plus #268989
    Steven Zahm
    Keymaster

    @ Robert

    Assuming it’s a conflict, somehow, you’ll have to deactivate plugins one at a time to see if the issue goes away. Check after each deactivation.

    If it still doesn’t work correct, the conflict could be with the theme. You could send me a copy and then I could track down the issue on my dev site.

    Another thing to check … hit the F12 key to bring up the IE dev tools. click the Console tab and then the Console button. That should list any errors on the site that IE detects while rendering the page. Maybe one of those errors will point you in a direction…

    Hope that helps.

Viewing 10 posts - 13,031 through 13,040 (of 15,332 total)