Forum Replies Created

Viewing 10 replies - 1 through 10 (of 10 total)
  • I have the same problem. I had to restore the previous version of a backup.

    Thread Starter dbarnhart

    (@dbarnhart)

    I grabbed the old text widget code from WP version 4.7.5 and turned it into a plugin. That way I don’t have to worry about unsophisticated editors (or myself when I’ve not had enough sleep).

    I agree though that they should have left the existing text widget along and created a new one named ‘Rich Text Widget’

    Thread Starter dbarnhart

    (@dbarnhart)

    Screenshot of Permalink screen: https://pvgunworks.com/permalinkscreen.jpg

    System Status Report:

    ### WordPress Environment ###

    Home URL: https://pvgunworks.com
    Site URL: https://pvgunworks.com
    WC Version: 2.5.2
    Log Directory Writable: ? /home3/paloverde42/public_html/wp-content/uploads/wc-logs/
    WP Version: 4.4.1
    WP Multisite: –
    WP Memory Limit: 256 MB
    WP Debug Mode: –
    Language: en_US

    ### Server Environment ###

    Server Info: Apache
    PHP Version: 5.4.45
    PHP Post Max Size: 64 MB
    PHP Time Limit: 30
    PHP Max Input Vars: 1000
    SUHOSIN Installed: –
    MySQL Version: 5.5.42
    Max Upload Size: 64 MB
    Default Timezone is UTC: ?
    fsockopen/cURL: ?
    SoapClient: ?
    DOMDocument: ?
    GZip: ?
    Multibyte String: ?
    Remote Post: ?
    Remote Get: ?

    ### Database ###

    WC Database Version: 2.5.2
    :
    woocommerce_sessions: ?
    woocommerce_api_keys: ?
    woocommerce_attribute_taxonomies: ?
    woocommerce_termmeta: ?
    woocommerce_downloadable_product_permissions: ?
    woocommerce_order_items: ?
    woocommerce_order_itemmeta: ?
    woocommerce_tax_rates: ?
    woocommerce_tax_rate_locations: ?

    ### Active Plugins (8) ###

    Contact Form 7: by Takayuki Miyoshi – 4.3.1
    WPBakery Visual Composer: by Michael M – WPBakery.com – 4.9.2
    Slider Revolution: by ThemePunch – 5.1.6
    Templatera: by WPBakery – 1.1.9
    WooCommerce Authorize.net AIM Gateway: by WooThemes / SkyVerge – 3.4.6 – 3.5.1 is available
    WooCommerce UPS Shipping: by WooThemes – 3.1.2
    WooCommerce: by WooThemes – 2.5.2
    WordPress Importer: by wordpressdotorg – 0.6.1

    ### Settings ###

    Force SSL: –
    Currency: USD ($)
    Currency Position: left
    Thousand Separator: ,
    Decimal Separator: .
    Number of Decimals: 2

    ### API ###

    API Enabled: ?
    API Version: 3.1.0

    ### WC Pages ###

    Shop Base: #40 – /shop/
    Cart: #41 – /cart/
    Checkout: #42 – /checkout/
    My Account: #43 – /my-account/

    ### Taxonomies ###

    Product Types: external (external)
    grouped (grouped)
    simple (simple)
    variable (variable)

    ### Theme ###

    Name: Total
    Version: 3.3.2
    Author URL: https://www.wpexplorer.com
    Child Theme: ? – If you’re modifying WooCommerce on a parent theme you didn’t build personally
    then we recommend using a child theme. See: How to create a child theme

    WooCommerce Support: ?

    ### Templates ###

    Overrides: Total/woocommerce/archive-product.php
    Total/woocommerce/content-widget-product.php
    Total/woocommerce/loop/loop-start.php
    Total/woocommerce/single-product/product-image.php
    Total/woocommerce/single-product/title.php

    Thread Starter dbarnhart

    (@dbarnhart)

    Ding! Ding! Ding! We have a winner!

    I forgot all about Ad Block. I feel so stupid now.

    Thank you Andrew.

    Thread Starter dbarnhart

    (@dbarnhart)

    I’ve run a test by creating a brand new clean installation of WordPress 4.2.2 on an internal server. The theme is Twenty Fifteen and there are no plugins installed.

    The problem still occurs.

    Thread Starter dbarnhart

    (@dbarnhart)

    Thread Starter dbarnhart

    (@dbarnhart)

    I don’t think this functionality is in the theme, I think it is in the WP core files.

    Thread Starter dbarnhart

    (@dbarnhart)

    Thank you. it works now. I moved wp_footer outside of any divs and is just above the </body> tag.

    dbarnhart

    (@dbarnhart)

    Actually you can accomplish this without digging in to your theme’s stylesheet.

    Highlight the table cells you want set padding, spacing, and border for.

    Click on the Table Cell Properties button

    Click on the Advanced tab

    Use the color pickers to set border color and background color. When you do you will see that the ‘Style’ field is being filled in with the corresponding CSS. TO set padding, just append “padding:3px” to the Style field value.

    Thread Starter dbarnhart

    (@dbarnhart)

    After some spelunking in movabletype-importer.php I was able to solve the problem.

    Sure enough, when saving the trackback the importer fails to to tell wp_insert_comment that it is a tackback and not a normal comment.

    Old (at line 309):

    $ping['comment_post_ID'] = $post_id;
    $ping = wp_filter_comment($ping);

    Changed to:

    $ping['comment_post_ID'] = $post_id;
    $ping['comment_type'] = 'trackback';
    $ping = wp_filter_comment($ping);

    In addition, Typepad appends “[Read More…]” to the end of the body, making clicking thru to the original blog more intuitive. TO mimic this behavior I changed line 308:

    Old:

    $ping['comment_content'] = "<strong>{$ping['title']}</strong>\n\n{$ping['comment_content']} ";

    Changed to:

    $ping['comment_content'] = "<strong>{$ping['title']}</strong>\n\n{$ping['comment_content']} <a href='" . $ping['comment_author_url'] ."'>[Read More...]</a>";

Viewing 10 replies - 1 through 10 (of 10 total)