Gianluca
Forum Replies Created
-
Forum: Plugins
In reply to: [Wordpress File Upload] Automatic time in file namei have pro version and use this plugin whit dropbox. With email notification I get the time but I prefer writing the hour of upload in the name folder if possible
ThanksForum: Plugins
In reply to: [Wordpress File Upload] Automatic time in file namein dropbox upload name if it is possible. Thanks
Forum: Plugins
In reply to: [Wordpress File Upload] Upload only in dropboxLocal File Action :delete
Forum: Themes and Templates
In reply to: [Twenty Fourteen] Featured Posts Slider Increase to 12anyone can help me please?
Forum: Plugins
In reply to: [WooCommerce] View total in single_product before adding to cartI partially solved the problem with this code in function.php, but it does not work properly because it ignores “variable product price”
can someone help me
thanks// we are going to hook this on priority 31, so that it would display below add to cart button. add_action( 'woocommerce_single_product_summary', 'woocommerce_total_product_price', 31 ); function woocommerce_total_product_price() { global $woocommerce, $product; // let's setup our divs echo sprintf('<div id="product_total_price" style="margin-bottom:20px;display:none">%s %s</div>',__('Product Total:','woocommerce'),'<span class="price">'.$product->get_price().'</span>'); echo sprintf('<div id="cart_total_price" style="margin-bottom:20px;display:none">%s %s</div>',__('Cart Total:','woocommerce'),'<span class="price">'.$product->get_price().'</span>'); ?> <script> jQuery(function($){ var price = <?php echo $product->get_price(); ?>, current_cart_total = <?php echo $woocommerce->cart->cart_contents_total; ?>, currency = '<?php echo get_woocommerce_currency_symbol(); ?>'; $('[name=quantity]').change(function(){ if (!(this.value < 1)) { var product_total = parseFloat(price * this.value), cart_total = parseFloat(product_total + current_cart_total); $('#product_total_price .price').html( currency + product_total.toFixed(2)); $('#cart_total_price .price').html( currency + cart_total.toFixed(2)); } $('#product_total_price,#cart_total_price').toggle(!(this.value <= 1)); }); }); </script> <?php } ?>
Forum: Plugins
In reply to: [WooCommerce] Wrong endpoints, after buying goes to empty cartForum: Plugins
In reply to: [WP Menu Cart] When hide/empty wp menu cart height menu changeHi Jeremiah,
thanks for your help. The code you gave me has solved the problem.Forum: Plugins
In reply to: [WP Menu Cart] When hide/empty wp menu cart height menu changeSorry the correct link is https://www.geolina.it
account/pass: guest
ThanksForum: Plugins
In reply to: [WP Menu Cart] When hide/empty wp menu cart height menu changeIt’s in manteinance, you can enter with account/pass: guest
https://www.geolina.com
thanksI solved it by simply removing the title of the page. thanks anyway
Forum: Themes and Templates
In reply to: Remove "Home" Title from front static page Twenty-Fourteen Themewhen I add the code:
.page-id-x1 .entry-title { display: none; }
disappears also the title of the slides. Any suggestions?
Thank YouGianluca
Forum: Themes and Templates
In reply to: [Twenty Fourteen] Add separators in a vertical menuflyout menu dont work! someone can help me?
Forum: Themes and Templates
In reply to: [Twenty Fourteen] Add separators in a vertical menuI would get the same result https://twentyfourteendemo.wordpress.com/
The problem disappeared after I reactivate the “translation gettext”. Thanks.
I have the same problem with the Italian language: “Like” (“Mi Piace” in Italian), and also with the function “Facebook Share”: “Share” (“Condividi” in Italian).
https://karnhack.com
Thanks.Best
Gianluca