Forum Replies Created

Viewing 15 replies - 1 through 15 (of 18 total)
  • Thread Starter kork

    (@kork)

    Yes, thank-you Mikko, I realized that when I was cleaning out the tables. I’m trying to figure out how to use relevansii to work with several tables that I want to search, but it’s a learning process. I wish that there was an easy way to search through custom tables and not need to search the posts table. it seems that when relevansii indexes the data in the wp_posts table, it loses the ability to join with other data in other other tables. A good example is a vendor table and a reviews table. If I want to index the reviews, I want them to be linked to the vendor_id that’s associated since they’re separate tables. I’m not finding a way to do this efficiently.

    Thread Starter kork

    (@kork)

    Ahhh, nevermind. I was able to clean it up with:

    DELETE FROM wpsa_postmeta WHERE meta_key LIKE ‘vendor_%’;


    DELETE FROM wpsa_posts WHERE post_type LIKE ‘vendor%’;

    I’m struggling to properly index data from a separate table in my WordPress build.

    Thread Starter kork

    (@kork)

    Figured it out, the previous developer wrapped all <header> tags in a z-index :100. I changed it to :

    header.tribe-events-calendar-list__event-header{
    z-index: initial !important;
    }

    And that fixed it.

    Also interesting in the solution to this one.

    Thread Starter kork

    (@kork)

    Excellent – I got it working. Thank-you for the clarification.

    Thread Starter kork

    (@kork)

    Return-path: <bounce+75b9d5.3abb37-XXXXXXXXXX=XXXXXXXXXX>
    Envelope-to: XXXXXXXXXX
    Delivery-date: Wed, 24 Aug 2016 10:39:39 -0400
    Received: from rs232.mailgun.us ([209.61.151.232]:41585)
    by XXXXXXXXXX with esmtp (Exim 4.87)
    (envelope-from <bounce+75b9d5.3abb37-XXXXXXXXXX=XXXXXXXXXX>)
    id 1bcZL9-0003PT-7d
    forXXXXXXXXXX; Wed, 24 Aug 2016 10:39:39 -0400
    DKIM-Signature: a=rsa-sha256; v=1; c=relaxed/relaxed; d=XXXXXXXXXX; q=dns/txt;
    s=smtp; t=1472049518; h=Content-Transfer-Encoding: Mime-Version:
    Content-Type: Subject: From: To: Message-Id: Date: Sender;
    bh=OFjcO+UyddS2H6VB45lPHKnCt3IdzscSjoZTQ8ynX7A=; b=X/27+mk1g8MVDbM3pQRqVkNA7KTOIP6yClbs++U5XOv2AUZj6n54CYA/dfxJRl0Sf8RXi2FR
    7LXYYW/sMtVw5McJhAiAWXVf7f0ZcvYMLkMyRtyQewwkPdepTAdy4hC3H+UNToqmvZtVyi5k
    nwXrqrMJAPZUZHCgcHOZeekUwo4=
    DomainKey-Signature: a=rsa-sha1; c=nofws; d=XXXXXXXXXX; s=smtp;
    q=dns; h=Sender: Date: Message-Id: To: From: Subject: Content-Type:
    Mime-Version: Content-Transfer-Encoding;
    b=H0WEwOBjOjN38Tzb2Wj2OS9ZCBaPR1p6FbHBisM/mtW/BxmdK+m1Vy1XM4f3uzChBDGdw5
    x2Y7U/aXwDKg5TYhca6FXTo0JGrbKrCHqFAzl0cJyk64TcgYvPOjd+mk8qkn7ZPWMlvUGobF
    hO6duUL0iLJ7zDsMbYDyvpUE7ulz0=
    Sender: XXXXXXXXXX
    Date: Wed, 24 Aug 2016 14:38:38 +0000
    X-Mailgun-Sid: WyI5NTA0MiIsICJjc2ltcHNvbkBmb2NhbGl0eS5jb20iLCAiM2FiYjM3Il0=
    Received: by luna.mailgun.net with HTTP; Wed, 24 Aug 2016 14:38:36 +0000
    Message-Id: <20160824143836.45615.47378.15475DA2@XXXXXXXXXX>
    X-Mailgun-Track-Opens: true
    X-Mailgun-Track-Clicks: true
    X-Mailgun-Campaign-Id:
    X-Mailgun-Tag: http://XXXXXXXXXX
    To: XXXXXXXXXX
    From: XXXXXXXXXX
    Subject: =?UTF-8?Q?[Resilient=20Living=20?==?UTF-8?Q?Communi?=
    =?UTF-8?Q?ty]=20Reply=20To:=20Started?==?UTF-8?Q?=20as=20a=20sk?=
    =?UTF-8?Q?eptic?=
    Content-Type: text/plain; charset=”utf-8″
    Mime-Version: 1.0
    Content-Transfer-Encoding: base64

    SGVsbG8hDQpBIG5ldyByZXBseSBoYXMgYmVlbiBwb3N0ZWQgYnkgQ29yYnktNy4NClRvcGljIHRp
    dGxlOiBSZXBseSBUbzogU3RhcnRlZCBhcyBhIHNrZXB0aWMNClRvcGljIHVybDogaHR0cDovL2Vt
    YWlsLnJlc2lsaWVudGxpdmluZy5jYS9jL2VKeVZqczBLd3lBUWhKOG1Ic1ZfemNGRG9QUTl6Q1ky
    Z3BvUVRhRnYzMjJ2UFJXV1lSbS0yWjNGeXpEUDBwTGtCZU9HT2FHNGtrNGFxclRobWlvcnJhTmNL
    NnR2a3hnVU85ZVdjbHByei1tWjZvTkNJSnRua2NsUllpeUNYbzNSSXJJWWhGc0VNTU1BSXNsLTZf
    MFk1RFNJTzg3dkVUUmhMLVdxcWI5d2pfdDVsZllsal93eHhPaFF5ZW1ocFhLMHZXS1Z1RVBJeUZO
    TWt2N1BoemUtbVUySA0KDQpFeGNlcnB0Og0KScOiwoDCmW0gbm90IGEgc2tlcHRpYyBlaXRoZXLD
    osKAwqYgQW5vdGhlciB0ZXN0IHBsYWluIEhUTUwu

    Thread Starter kork

    (@kork)

    I’ve made the update and changed to plain text. It looks like “periods” are replaced with garbage characters.

    Excerpt:
    I’m not a skeptic either… Another test plain HTML.

    Also, on a different note, the notifications only seem to be going out to one admin email address but there are several. It’s tracking the one (mine) fine in Mailgun and I receive it. But other admins are not? Any ideas?

    It’s a multisite configuration if that matters.

    Thread Starter kork

    (@kork)

    Cool – I’ll wait for the update to show through the site.
    Thanks Vinny!

    Thread Starter kork

    (@kork)

    Yes, the tests I had looked a little bit mangled. Shows below.

    This is a MIME encoded message sent by bbPress Notify (No-Spam).

    –bbpnns57bca1d4f00b8
    Content-type: text/plain;charset=utf-8

    Hello!
    A new topic has been posted by Kork-7.
    Topic title: Second Test from Kork
    Topic url: HERE

    Excerpt:
    This is my second test.

    –bbpnns57bca1d4f00b8
    Content-type: text/html;charset=utf-8

    <p>Hello!

    A new topic has been posted by Kork-7.

    Topic title: Second Test from Kork

    Topic url: HERE</p>
    <p>Excerpt:

    This is my second test.</p>

    –bbpnns57bca1d4f00b8-

    Thread Starter kork

    (@kork)

    Mailgun wasn’t configured on the multisite that I was using it with. I moved the settings over and sent the test and all worked as expected. My oversight!

    Thread Starter kork

    (@kork)

    Got it working, thanks Vinny!

    Thread Starter kork

    (@kork)

    Ah, nevermind! I see the <div> is being added by WordPress, not the plugin! Works perfectly now! Thanks Jeremy!

    Thread Starter kork

    (@kork)

    rc_content filter?

    Thread Starter kork

    (@kork)

    Thanks for the feedback. Any idea when that might be?

    Thread Starter kork

    (@kork)

    Awesome – Will “Flat” be fixed in the new updates as well? How long before it’s released?

Viewing 15 replies - 1 through 15 (of 18 total)