MTD
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Remove/clear all Purchase NotesHi Mike,
Works like a charm in functions.php
It saved me a lot of time.Thanks a lot!
Forum: Plugins
In reply to: [WooCommerce] Product dimension (weight) column in adminHi Ralbatross,
Indeed, it works great!
Thanks a lot for it.Cheers!
Forum: Plugins
In reply to: [WooCommerce] Images not showing on products after choosing product optionHi Mike, it has fixed the problem on my site too. Thanks a lot for such a quick response!
Hi Bruce, thanks hips for your help.
I managed to display prices in the search results but it shows the same price for all results unless I go to the next post and then the price changes for the current post ?? What I did is:
1) added a new function to DaveWordPressLiveSearchResults.php
function my_jquery_var() { global $post; if ( $my_custom_field_name = get_post_meta( $post->ID, 'price', true ) ) { echo '<script type="text/javascript">var my_custom_field_name = "' . $my_custom_field_name . '";</script>' . "\n"; } } add_action( 'wp_head', 'my_jquery_var' );
2) added new renderResult in dave-wordpress-live-search.js
renderedResult += '<a href="' + searchResult.permalink + '">' + '<span class="price_search">' + my_custom_field_name + '</span>' + searchResult.post_title + '</a>';
Once again, thanks big time for your help
Forum: Plugins
In reply to: [gtrans] [Plugin: gtrans] Beware Gtranslate!I’m not sure if the speed problem is related to google because if you install google translator directly from google: https://translate.google.com/manager/add then the speed is very fast. I also like the plugin idea but, once installed, my website slows done very much. I think it’s related to the amount/quality of code included in the plugin. Also, in the previous version I was able to add the translation drop-down into my website header using php code but since the last update the option is gone ??
Very good points Robert! I’m looking forward to having it too. It’s rather annoying to modify the plugin and do the same with next update. Also, it would be great to have Facebook share button showing number of shares as it’s done with twitter.
Forum: Networking WordPress
In reply to: Multisite permalink and missing site problemHi Andrea,
Thank you for the explanation, you saved my life because I was just about to re-install the whole network from the beginning ??
I understand I have to change /blog/%postname%/ to /%postname%/ everytime I hit save changes in my Permalink Settings.
Thanks
P.s. for future reference, do you think it’s better to instal wp multisite using sub-domains or sub-directories?