Dakid
Forum Replies Created
-
Forum: Plugins
In reply to: [PDF Forms Filler for CF7] PDF Not Saving To Server When FilledFixed the path so now it saves. Thanks
Forum: Plugins
In reply to: [PDF Forms Filler for CF7] PDF Not Saving To Server When FilledI fixed the error. The issue was that just in case someone needs help with is that. there were no plugin conflicts is what I checked first then I checked my server no issues.
Then I looked to see if my image compressor plugin compressed the pdf. WHich it did and while it compressed it, it also stripped it from being an AcroForm. So I just reupload the original form and it sent now.
Forum: Plugins
In reply to: [PDF Forms Filler for CF7] PDF Not Saving To Server When FilledWell I cannot test it because now it is giving me an error when i go into to send the form thru.
The error says:
An error occurred while processing a PDF: Error generating PDF: PDF form is not an AcroForm, XFA forms are not supported at pdf-ninja.php:744
Please help on fixing this first
Forum: Plugins
In reply to: [PDF Forms Filler for CF7] PDF Not Saving To Server When Filledwp-content/uploads/career_application_uploads/
What about for the encoding issue? and description issue?
Forum: Plugins
In reply to: [WooCommerce] Free Shipping on certain productsThank you. I got it resolved. Thanks for your reply. I Greatly appreciate it.
Forum: Plugins
In reply to: [Multiple Packages for WooCommerce] Free Shipping PackagesI hope so
Forum: Plugins
In reply to: [Multiple Packages for WooCommerce] Free Shipping PackagesIs there a way through your plugin to look at the items in the cart and apply free shipping to the class?
like a code snippet or something i can put into the functions.php file
Forum: Plugins
In reply to: [Multiple Packages for WooCommerce] Free Shipping PackagesEven if the cost specificied for shipping is
XXX + 1.00 *[qty]
will it still do that becasue im not showing that it does?
it adds them up both seperate?
Forum: Plugins
In reply to: [Multiple Packages for WooCommerce] Free Shipping Packagesi guess what i am asking is i only want it the threads to be package if it is over the 25.00 and if it is then to apply free shipping. if not then to include those items in the regular items. right now using you plugin it separates them and puts and applies the flat rate to both packages. i also wrote some code to try to achieve this you can find below but the problem with the code is that it doesnt include the threads items in the cart shipping total if the package sub total is below 25.00
Please take a look
function threads_woocommerce_cart_shipping_packages( $packages ) { // Reset the packages $packages = array(); // threads items $threads_items = array(); $regular_items = array(); // Sort threads from regular foreach ( WC()->cart->get_cart() as $item ) { if ( $item['data']->needs_shipping() ) { if ( $item['data']->get_shipping_class() == 'threads' ) { $threads_items[] = $item; } else { $regular_items[] = $item; } } } $threads_shipping = array_sum( wp_list_pluck( $threads_items, 'line_total' ) ); if(($threads_shipping) > 24.99) { $packages[] = array( 'ship_via' => array( 'free_shipping' ), 'contents' => $threads_items, 'contents_cost' => array_sum( wp_list_pluck( $threads_items, 'line_total' ) ), 'applied_coupons' => WC()->cart->applied_coupons, 'destination' => array( 'country' => WC()->customer->get_shipping_country(), 'state' => WC()->customer->get_shipping_state(), 'postcode' => WC()->customer->get_shipping_postcode(), 'city' => WC()->customer->get_shipping_city(), 'address' => WC()->customer->get_shipping_address(), 'address_2' => WC()->customer->get_shipping_address_2() ) ); } else { if ( empty( $packages[0]['contents'] ) ) { unset( $packages[0] ); } } if ( $regular_items ) { $packages[] = array( 'ship_via' => array( 'flat_rate' ), 'contents' => $regular_items, 'contents_cost' => array_sum( wp_list_pluck( $regular_items, 'line_total' ) ), 'applied_coupons' => WC()->cart->applied_coupons, 'destination' => array( 'country' => WC()->customer->get_shipping_country(), 'state' => WC()->customer->get_shipping_state(), 'postcode' => WC()->customer->get_shipping_postcode(), 'city' => WC()->customer->get_shipping_city(), 'address' => WC()->customer->get_shipping_address(), 'address_2' => WC()->customer->get_shipping_address_2() ) ); } return $packages; } // End of If statement for the whole threads category for free shipping add_filter( 'woocommerce_cart_shipping_packages', 'threads_woocommerce_cart_shipping_packages' );
Forum: Plugins
In reply to: [WooCommerce] Free Shipping on certain productsso the shipping is not being calculated or updated when you remove a threads item or add another product
Forum: Plugins
In reply to: [WooCommerce] Free shipping dependency on item and price problemI have a question for you. I want to accomplish the same thing except different logic.
Forum: Plugins
In reply to: [Multiple Packages for WooCommerce] Free Shipping PackagesI have something working now. I wrote it and hooked it into the functions.php file. Let me know if I can contribute to your plugin for future updates.
Forum: Plugins
In reply to: [Multiple Packages for WooCommerce] Free Shipping PackagesYes,
but it doesn’t calculate the subtotal as a whole it just calculates the subtotal as an whole.