Forum Replies Created

Viewing 15 replies - 1 through 15 (of 43 total)
  • Thread Starter Suzi Berman

    (@sberman)

    I have the debug log. However, this forum won’t allow me to paste it here. I signed up for Pastebin. But that service won’t allow me to share it either “Pastebin’s SMART filters have detected potentially offensive or questionable content in your Paste. The content you are trying to publish has been deemed potentially offensive or questionable by our filters, because of this you’re receiving this warning.
    This Paste can only be published with the visibility set to “Private”.

    Please advise how to share the debug log.

    I did try the button under Google Reviews / Settings / Advance tab that says “remove duplicates” but that did nothing. Appreciate the help!

    Thread Starter Suzi Berman

    (@sberman)

    Thank you for your help. I will check with our server admins on the logs you mentioned. And/or send to wftest @ wordfence . com

    Similar issue. Instead of this:

    /wp-content/plugins/google-site-kit/dist/assets/js/(.*).js

    What would be the workaround for Header & Footer plugin or Pixel My Site?

    Thread Starter Suzi Berman

    (@sberman)

    I did not do anything specific but it seems to have resolved with most recent update.

    Thread Starter Suzi Berman

    (@sberman)

    It seems to have resolved itself with the most recent plugin update.

    Thread Starter Suzi Berman

    (@sberman)

    Unable to post new jobs on our job leads page. – This issue is now resolved. It was a plugin conflict with YouTube Embed Plus. Have addressed the issue with that developer.

    “The content of your post doesn’t match the template assigned to your post type.” – This was an issue also. May have been corrected with the plugin conflict resolved. Will post separate if so.

    Thanks so much for the support!!!!

    Thread Starter Suzi Berman

    (@sberman)

    Thank you for the advice. I downgraded to 13.4.3. Fixed the issue. Now we can edit body text in Classic and Block editors again. Yay!

    I turned off automatic updates. The plugin is out of date now. Please will you advise when the issue is fixed so we can upgrade to latest?

    Thank you and I appreciate the help so much!!!

    Thread Starter Suzi Berman

    (@sberman)

    I updated the Recaptcha and changed the mail list destination. But I do not think that is the issue.

    Thread Starter Suzi Berman

    (@sberman)

    The log says “Nothing to update.”
    However, this is at the top of the dashboard: “Constant Contact Forms has experienced issues that may need addressed and functionality may be missing. Please enable the “Support” checkbox in the Constant Contact settings and start a forum support thread. Our support team will aid with further steps. Dismiss this notice.”

    Thread Starter Suzi Berman

    (@sberman)

    add_filter( ‘wpsl_listing_template’, ‘custom_listing_template’ );

    function custom_listing_template() {

    global $wpsl, $wpsl_settings;

    $listing_template = ‘<li data-store-id=”<%= id %>”>’ . “\r\n”;
    $listing_template .= “\t\t” . ‘<div class=”wpsl-store-location”>’ . “\r\n”;
    $listing_template .= “\t\t\t” . ‘<p><%= thumb %>’ . “\r\n”;
    $listing_template .= “\t\t\t\t” . wpsl_store_header_template( ‘listing’ ) . “\r\n”; // Check which header format we use
    $listing_template .= “\t\t\t\t” . ‘<span class=”wpsl-street”><%= address %></span>’ . “\r\n”;
    $listing_template .= “\t\t\t\t” . ‘<% if ( address2 ) { %>’ . “\r\n”;
    $listing_template .= “\t\t\t\t” . ‘<span class=”wpsl-street”><%= address2 %></span>’ . “\r\n”;
    $listing_template .= “\t\t\t\t” . ‘<% } %>’ . “\r\n”;
    $listing_template .= “\t\t\t\t” . ‘<span>’ . wpsl_address_format_placeholders() . ‘</span>’ . “\r\n”; // Use the correct address format

    if ( !$wpsl_settings[‘hide_country’] ) {
    $listing_template .= “\t\t\t\t” . ‘<span class=”wpsl-country”><%= country %></span>’ . “\r\n”;
    }

    $listing_template .= “\t\t\t” . ‘</p>’ . “\r\n”;

    // Show the phone, fax or email data if they exist.
    if ( $wpsl_settings[‘show_contact_details’] ) {
    $listing_template .= “\t\t\t” . ‘<p class=”wpsl-contact-details”>’ . “\r\n”;
    $listing_template .= “\t\t\t” . ‘<% if ( phone ) { %>’ . “\r\n”;
    $listing_template .= “\t\t\t” . ‘<span>‘ . esc_html( $wpsl->i18n->get_translation( ‘phone_label’, __( ‘Phone’, ‘wpsl’ ) ) ) . ‘: <%= formatPhoneNumber( phone ) %></span>’ . “\r\n”;
    $listing_template .= “\t\t\t” . ‘<% } %>’ . “\r\n”;
    $listing_template .= “\t\t\t” . ‘<% if ( fax ) { %>’ . “\r\n”;
    $listing_template .= “\t\t\t” . ‘<span>‘ . esc_html( $wpsl->i18n->get_translation( ‘fax_label’, __( ‘Fax’, ‘wpsl’ ) ) ) . ‘: <%= fax %></span>’ . “\r\n”;
    $listing_template .= “\t\t\t” . ‘<% } %>’ . “\r\n”;
    $listing_template .= “\t\t\t” . ‘<% if ( email ) { %>’ . “\r\n”;
    $listing_template .= “\t\t\t” . ‘<span>‘ . esc_html( $wpsl->i18n->get_translation( ’email_label’, __( ‘Email’, ‘wpsl’ ) ) ) . ‘: <%= email %></span>’ . “\r\n”;
    $listing_template .= “\t\t\t” . ‘<% } %>’ . “\r\n”;
    $listing_template .= “\t\t\t” . ‘<% if ( url ) { %>’ . “\r\n”;
    $listing_template .= “\t\t\t” . ‘<span>‘ . esc_html( $wpsl->i18n->get_translation( ‘url_label’, __( ‘Url’, ‘wpsl’ ) ) ) . ‘: “><%= url %></span>’ . “\r\n”;
    $listing_template .= “\t\t\t” . ‘<% } %>’ . “\r\n”
    $listing_template .= “\t\t\t” . ‘</p>’ . “\r\n”;
    }

    $listing_template .= “\t\t\t” . wpsl_more_info_template() . “\r\n”; // Check if we need to show the ‘More Info’ link and info
    $listing_template .= “\t\t” . ‘</div>’ . “\r\n”;
    $listing_template .= “\t\t” . ‘<div class=”wpsl-direction-wrap”>’ . “\r\n”;

    if ( !$wpsl_settings[‘hide_distance’] ) {
    $listing_template .= “\t\t\t” . ‘<%= distance %> ‘ . esc_html( $wpsl_settings[‘distance_unit’] ) . ” . “\r\n”;
    }

    $listing_template .= “\t\t\t” . ‘<%= createDirectionUrl() %>’ . “\r\n”;
    $listing_template .= “\t\t” . ‘</div>’ . “\r\n”;
    $listing_template .= “\t” . ‘‘;

    return $listing_template;
    }

    Thread Starter Suzi Berman

    (@sberman)

    Thank you for the help. This code crashed the website “syntax error”.

    Thread Starter Suzi Berman

    (@sberman)

    Hello – Do you have any other suggestions? Followed those instructions exactly including increasing max execution time to 300 seconds. When we click on the Media Library Folders nothing happens except for the browser spinning and spinning, trying to bring up the page. Can click on “Settings, Support, Image SEO, Regerate Thumbnails, Upgrade to Pro, Check for New Folders” and get fast display each. Clicking on “Media Library Folders” does nothing.

    Thread Starter Suzi Berman

    (@sberman)

    Thanks so much for your reply. No this is not a new install. But we did recently migrate from 1 hosting server to another. I can try to deactivate Media Library Folder and activate the Media Library Folders Reset plugin.

    Thread Starter Suzi Berman

    (@sberman)

    Resolved by the Theme Developer at https://colorlib.com/wp/forums/topic/mobile-menu-a-visted-a-open-color/#post-227541

    Hope you are having a good day and thank you for your question 🙂
    Please add this CSS in appearance – customize – additional CSS

    @media (max-width: 767px){
    .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
    .navbar-default .navbar-nav .dropdown-menu > li.active > .caret,
    .navbar-default .navbar-nav .dropdown-menu > li.open > a,
    .navbar-default .navbar-nav li.open > a, .navbar-default .navbar-nav li.open > .caret {
    color: #fff !important;
    }
    }

    Thread Starter Suzi Berman

    (@sberman)

    People, I may have realized something but not sure what it means. When I access the renamed login page, as in mydomain.com/loginrenamed, in my browser it stays as mydomain.com/loginrenamed. But the screen shot she sent me shows that when SHE enters in the same URL, it automatically redirects to mydomain.com/wp-admin. Which then returns “not available”. HER browser is redirecting. Mine is not.

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