BBPress Ralph Garcia : Replies Created

Forum Replies Created

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • in reply to: Time Zone Issue #438680
    Ralph Garcia
    Participant

    correct

    in reply to: Notifications Not Sending/Being Receieved #437492
    Ralph Garcia
    Participant

    Hi Steven,

    Yes, posts are being sent to moderation and yes other WordPress notifications are being received.

    We used to utilize Connection’s form (log shows emails sent up through Oct 2nd when we were using it), but now have users use the “Add My Entry” option from their WordPress admin. Since this change we haven’t had any notifications sent or received.

    in reply to: Notifications Not Sending/Being Receieved #437469
    Ralph Garcia
    Participant

    Thanks Steven. Currently the admin is not being notified via email when a submission is sent to moderation nor is the user notified via email that their submission has been sent.

    in reply to: Custom Fields Titles Not Showing #436435
    Ralph Garcia
    Participant

    Correct again. Thank you!

    in reply to: Custom Fields Titles Not Showing #436430
    Ralph Garcia
    Participant

    Perfect. Thank you!

    Additionally, how can I remove the “Search By Category” option from the first page? Please see attached screenshot.

    Attachments:
    You must be logged in to view attached files.
    in reply to: Custom Fields Titles Not Showing #436414
    Ralph Garcia
    Participant

    I haven’t adjusted any other coding. Here’s how it looks

        echo '<div class="cn-detail cn-clear' . $show . '" id="cn-detail-' , $uuid , '">';
    
        echo '<div class="cn-left">';
    
            $entry->getImage( array(
                'image'    => $atts['image'],
                'height'   => 120,
                'width'    => 100,
                'fallback' => array(
                    'type'     => $atts['image_fallback'],
                    'string'   => $atts['str_image']
                    )
                )
            );
    
        echo '</div>';
    
        echo '<div class="cn-right">';
    
            if ( $atts['show_title'] )$entry->getTitleBlock();
    
            if ( $atts['show_org'] ) $entry->getOrgUnitBlock();
    
            if ( $atts['show_contact_name'] )$entry->getContactNameBlock( array( 'format' => $atts['contact_name_format'] , 'label' => $atts['str_contact'] ) );
    
            if ( $atts['show_family'] )$entry->getFamilyMemberBlock();
    
            if ( $atts['show_addresses'] ) $entry->getAddressBlock( array( 'format' => $atts['addr_format'] , 'type' => $atts['address_types'] ) );
    
            if ( $atts['show_phone_numbers'] ) $entry->getPhoneNumberBlock( array( 'format' => $atts['phone_format'] , 'type' => $atts['phone_types'] ) );
    
            if ( $atts['show_email'] ) $entry->getEmailAddressBlock( array( 'format' => $atts['email_format'] , 'type' => $atts['email_types'] ) );
    
            if ( $atts['show_dates'] ) $entry->getDateBlock( array( 'format' => $atts['date_format'], 'type' => $atts['date_types'] ) );
    
            if ( $atts['show_links'] ) $entry->getLinkBlock( array( 'format' => $atts['link_format'], 'type' => $atts['link_types'] ) );
    
    
    $text = $entry->getMeta(
    
    array(
    
    'key' => 'business_offerings', // This should match exactly the field id used when registering the custom field.
    
    'single' => TRUE // Do not change this.
    
    )
    
    );
    
    if ( ! empty( $text ) ) echo '<p>' . esc_html( $text ) . '</p>';
    
            if ( $atts['show_im'] ) echo $entry->getImBlock();
    
            if ( $atts['show_social_media'] ) echo $entry->getSocialMediaBlock();
    
    
            $entry->getContentBlock( $atts['content'], $atts, $template );
    
            if ( $atts['enable_bio'] && $entry->getBio() != '' ) {
    
                echo '<div class="cn-bio" id="cn-bio-' , $uuid , '">';
    
                    if ( $atts['enable_bio_head'] ) echo '<h5>' , $atts['str_bio_head'] , '</h5>';
    
                    echo $entry->getBioBlock();
    
                echo '</div>';
            }
    
            if ( $atts['enable_note'] && $entry->getNotes() != '' ) {
    
                echo '<div class="cn-notes" id="cn-bio-' , $uuid , '">';
    
                    if ( $atts['enable_note_head'] )  echo '<h5>' , $atts['str_note_head'] , '</h5>';
    
                    echo $entry->getNotesBlock();
    
                echo '</div>';
            }
    
        echo '</div>';
    
    echo '</div>';
    
    ?>
    
    • This reply was modified 6 years, 2 months ago by Steven Zahm. Reason: Correct code formatting
    in reply to: Is The Directory Searchable Via Google, etc #434545
    Ralph Garcia
    Participant

    Thanks Steven!

Viewing 7 posts - 1 through 7 (of 7 total)