cybermatrixmedia
Forum Replies Created
-
I appreciate the responses so far. I went into the DevTools>>Console and found the error. This was the message:
[Vue warn]: Unknown custom element: <draggable> vue_libs.js?ver=4.2.2.4:1 – did you register the component correctly? For recursive components, make sure to provide the “name” option.
(found in )
ue @ vue_libs.js?ver=4.2.2.4:1
DevTools failed to load source map: Could not load content for https://img1.wsimg.com/traffic-assets/js/tccl.min.js.map: HTTP error: status code 404, net::ERR_HTTP_RESPONSE_CODE_FAILUREI hovered my mouse over [vue_libs.js?ver=4.2.2.4:1] and I found a link to https://mywebsite.com/wp-content/plugins/learnpress/assets/js/vendor/vue/vue_libs.js?ver=4.2.2.4
I deactivated Learnpress and the drag and drop started working. Thanks for your help. I will have to find another LMS plugin to use.
- This reply was modified 1 year, 10 months ago by cybermatrixmedia.
Forum: Plugins
In reply to: ihover color change.ih-item.circle.effect6.colored .info {
background: #008800;
}Forum: Fixing WordPress
In reply to: Remove tab if no contentThe only fix I found for this was to add a 1 lbs shipping weight for every product which filled the additional information tab with the shipping weight content. Done.
Forum: Fixing WordPress
In reply to: Add icon to custom product tabThat makes sense, thanks. When I get a solution I’ll come back and post it here as well.
Forum: Fixing WordPress
In reply to: WordPress changing imagesIm using a custom css plugin for now because my theme doesn’t have an option for it and I didn’t want to modify the default style.css… Going to transfer over to a child theme before I go live.
Thanks for the help.
Forum: Fixing WordPress
In reply to: WordPress changing imageshttps://infinityconsultingfirm.com/services/copywriting/
I just started using a responsive css system called gridlock. It’s probably something within their css file but I have no idea where to start looking, even with using Firebug.
Any direction would be helpful. Thanks.
Forum: Fixing WordPress
In reply to: Webpages become unavailableThanks for the help. It was the lightbox plugin. After deleting it everything works fine now.
Forum: Plugins
In reply to: [Invoices for WooCommerce] Turn Invoice into Ticket SystemI found a solution. Create sku codes for the tickets you create and insert them within the coding below.
<?php $printticket = false; $items = $wpo_wcpdf->get_order_items(); if( sizeof( $items ) > 0 ) { foreach( $items as $item ) { if (($item['sku'] === 'skucode1') || ($item['sku'] === 'skucode2') || ($item['sku'] === 'skucode3') ||($item['sku'] === 'skucode4')) { $printticket = true; }; }; }; if ($printticket) { echo '***This is a Ticket***';} else { echo "***This is a Receipt***";}; ?>
Forum: Plugins
In reply to: Custom pdf invoiceI found a solution. Create sku codes for the tickets you create and insert them within the coding below.
<?php $printticket = false; $items = $wpo_wcpdf->get_order_items(); if( sizeof( $items ) > 0 ) { foreach( $items as $item ) { if (($item['sku'] === 'skucode1') || ($item['sku'] === 'skucode2') || ($item['sku'] === 'skucode3') ||($item['sku'] === 'skucode4')) { $printticket = true; }; }; }; if ($printticket) { echo '***This is a Ticket***';} else { echo "***This is a Receipt***";}; ?>
Forum: Plugins
In reply to: Adding fee for each cart itemSolved & Resolved
Forum: Plugins
In reply to: Adding fee for each cart itemnevermind. a few hours of searching but I found it.
/** * Add a 1% surcharge to your cart / checkout * change the $percentage to set the surcharge to a value to suit * Uses the WooCommerce fees API * * Add to theme functions.php */ add_action( 'woocommerce_cart_calculate_fees','woocommerce_custom_surcharge' ); function woocommerce_custom_surcharge() { global $woocommerce; if ( is_admin() && ! defined( 'DOING_AJAX' ) ) return; $percentage = 0.01; $surcharge = ( $woocommerce->cart->cart_contents_total + $woocommerce->cart->shipping_total ) * $percentage; $woocommerce->cart->add_fee( 'Surcharge', $surcharge, true, 'standard' ); }
Forum: Fixing WordPress
In reply to: function.php parse errorFirst I backed up my child theme. Then I deleted the child theme which allowed me to access my website again. Then I activated the parent theme. After that I imported the child them back into the theme folder and deleted the function.php from the child theme directory. Then I recreated a blank function.php. That allowed me to reactivate my child them and everything works again.
All I have to do now is paste each portion of my function.php back in. Saving and refreshing to make sure the site works after each part is pasted back in.
Thanks for the all the responses.
Forum: Fixing WordPress
In reply to: function.php parse errorsuper cache was used at install to disable caching then I disabled that plugin also
Forum: Fixing WordPress
In reply to: function.php parse errorThat’s my point. I deleted the entire coding from the page and still get that error. that’s why I’m so confused.
Should I delete the child theme and start fresh? Would that solve the problem?