Forum Replies Created

Viewing 11 replies - 1 through 11 (of 11 total)
  • Thread Starter Mike Dedmon

    (@mdedmon)

    will do!

    Thread Starter Mike Dedmon

    (@mdedmon)

    Firs option, no change. But, adding the CSS to the Custom Print CSS did the trick.

    Thanks for the assist.

    Thread Starter Mike Dedmon

    (@mdedmon)

    No. I tried adding this to the short code.

    [print-me target=”.cbc_form_print” do_not_print=”.cart-widget-side” /]

    But, the cart is still being printed from IOS. It seems to items that are “hidden” by javascript. I don’t see them on the screen, but they are printing. The checkout cart and the cookies warning. Neither are on screen, but are showing in the print preview and printing. Example here: https://www.dropbox.com/s/e8rqt0numap48gd/example%20of%20prin-o-matic%20problems%20on%20IOS.pdf?dl=0

    BTW – Thanks for the tip on the rollback plugin. That has worked for me and is such a simpler way to rollback.

    Me too – Site is down because of the 3.2.0 update. Info from log file:

    [28-Oct-2021 18:03:07 UTC] PHP Fatal error:  Uncaught Error: Class 'WC_Subscriptions' not found in /home2/makewit2/public_html/the2mikes/wp-content/plugins/woocommerce-payments/vendor/woocommerce/subscriptions-core/includes/gateways/paypal/class-wcs-paypal.php:630
    Stack trace:
    #0 /home2/makewit2/public_html/the2mikes/wp-content/plugins/woocommerce-payments/vendor/woocommerce/subscriptions-core/includes/gateways/paypal/includes/abstracts/abstract-wcs-sv-api-base.php(413): WCS_PayPal->get_version()
    #1 /home2/makewit2/public_html/the2mikes/wp-content/plugins/woocommerce-payments/vendor/woocommerce/subscriptions-core/includes/gateways/paypal/includes/abstracts/abstract-wcs-sv-api-base.php(323): WCS_SV_API_Base->get_request_user_agent()
    #2 /home2/makewit2/public_html/the2mikes/wp-content/plugins/woocommerce-payments/vendor/woocommerce/subscriptions-core/includes/gateways/paypal/includes/abstracts/abstract-wcs-sv-api-base.php(105): WCS_SV_API_Base->get_request_args()
    #3 /home2/makewit2/public_html/the2mikes/wp-content/plugins/woocommerce-payments/vendor/wooco in /home2/makewit2/public_html/the2mikes/wp-content/plugins/woocommerce-payments/vendor/woocommerce/subscriptions-core/includes/gateways/paypal/class-wcs-paypal.php on line 630

    Hi,
    Thanks for the information above (be sure to fix the single quotes if copying and pasting that command ?? )

    For anyone that is interested, I added this to both my invoices and packing slips (I’m using the WooCommerce PDF Invoices plugin).

    I created a custom template per WooCommerce documentation and added this to the template-functions.php file. Works like a charm.

    add_action( 'wpo_wcpdf_after_order_details', 'wpo_gift_message', 10, 2 );
    function wpo_gift_message ($template_type, $order) {
        ?>
        <div class="gift-message">
        <em><strong>Gift Message:</strong></em>  <?php echo $order->get_meta( 'gmfw_gift_message' ); ?>
        </div>
        <?php
    }
    ?>

    I’m using Chrome & Firefox.

    I figured out that if I delete all the cookies for my website, then I can get back into the site and configure it. I’ll keep you posted if I have other issues.

    Me too… I had to use FTP to delete the plugin to get back into my site. I’ll look at the code on the plugin and see if I can determine why it’s doing this.

    Thread Starter Mike Dedmon

    (@mdedmon)

    thanks for the link. It doesn’t answer my question. I’ve looked at that page and others for an answer.

    meta_compare= – operator to test the meta_value=, default is ‘=’, with other possible values of ‘!=’, ‘>’, ‘>=’, ‘<‘, or ‘<=’

    I don’t see a operator that is used for finding a portion of the string within the meta_value.

    I was having this same problem. Background image references in my stylesheet weren’t being seen. I figured it out. erow80 had a comment above that contained, “I never used stylesheet directory…”

    That sparked something. I DO use stylesheet directories and here’s the solution. You have to think of where the current stylesheet is located in relation to the image file. Here’s my directory setup.

    (my stylesheet…)
    mytheme-name/style/css/stylesheet.css

    (my background image…)
    mytheme-name/style/images/bg.jpg

    I was using url(style/images/bg.jpg) and getting nothing. I realized that I have to reference the image file from the where the css file is located.

    The corrected reference based on this structure is url(../images/bg.jpg)

    I hope this makes sense and helps…

    Hi All,
    I just thought I’d add some detail on how I resolved this issue. The site I’m dealing with is hosted at godaddy.com. They have a “new” 2.0x version of their hosting system that supports 4.x / 5.x.

    When I first had this error I did the <?php echo phpversion(); ?> test and it returned the 4.x version. After searching the godaddy support site, I found that .php extensions are handled by ver 4.x and .php5 extensions are handled by ver 5.x. Changing the settings in the .htaccess for the site reverses this configuration. Now my php version shows as “PHP Version 5.2.5”

    This is what you add to your .htaccess file:
    AddHandler x-httpd-php5 .php
    AddHandler x-httpd-php .php4

    Plugin works and activates now.

    Thanks again!!

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