bugsjr
Forum Replies Created
-
Forum: Plugins
In reply to: [Page scroll to id] Console Error and links are not working… Please help.I activated the plugin through the network. All the settings are done from the Admin account and applies on all the sites of the network.
- This reply was modified 3 years, 8 months ago by bugsjr.
Forum: Plugins
In reply to: [Page scroll to id] Console Error and links are not working… Please help.Hi Malihu,
Yes, It is multisite but we don’t have a plugin for managing scrips… the only plugin that is installed and manages a small javascript from Facebook is “Head, Footer and Post Injections” plugin.
Any idea what may be the reason the plugin is not working?Thank you!
I found a way of doing this. Add the following code in your theme functions.php file.
add_action('woocommerce_after_add_to_cart_button', 'wc_min_quantity',10,2); function wc_min_quantity($product) { if(function_exists('icl_object_id')) { $default_language = wpml_get_default_language(); $prodid = icl_object_id($product->get_id(), 'product', true, $default_language); } else { $prodid = $product->id; } $prodid = get_the_ID(); $minQty = get_post_meta($prodid, '_wc_mmax_min', true); if ($minQty > 0) { } echo "Minimum quantity per order: $minQty"; }
@andresmolina have you managed to create this hooks?
Let me know. I’m interested in the same thing.
Thanks.Forum: Plugins
In reply to: [Forms - Form builder and Contact form] Fatal errorI got the solution from Huge-IT Forms.
This is how to fix:
Edit: forms-contact/js/admin.js
On line 842 remove what is on this line and add the code below to the same line:jQuery(this).parent().before('<li><input class="field-multiple-option" type="text" name="fieldoption' + fieldID + '" value="' + value + '" /><div class="set-active"><input type="radio" name="options_active_' + fieldID + '" value="' + value + '" /></div><a href="#remove">remove</a></li>');
That’s all!
Thank you Huge-IT Forms for the amazing support!- This reply was modified 6 years, 8 months ago by bugsjr.
Forum: Plugins
In reply to: [Forms - Form builder and Contact form] Fatal errorI have the same problem as gbbuggs. Unable to edit forms after applying the fix.
Any updates coming soon that will fix this issue?
Thank you!Forum: Fixing WordPress
In reply to: Visual Editor not working in WordPress 4.6 on my laptopI had the same problem as Vishnu after updating WordPress to 4.7.1 and the only fix that worked for me was to open wp-config.php file and add the following line at the very top after the PHP opening tag.
define(‘CONCATENATE_SCRIPTS’, false);
Now everything is back to normal.
Thanks.