Marinko
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Import Export Lite] Import using title filter does not filter at allHi,
Thank you for getting back so quickly. I’ve managed to solve it on my own. For some reason, system void to accept xpath value by completely erasing it without me noticing it while going to next step.
After I entered it manually, it worked like it should.Thank you once again!
Forum: Plugins
In reply to: [Contact Form 7] Sending message to my email – not workingSame problem here.
Forum: Plugins
In reply to: [Custom Tabs Shortcodes] More than one Daily TabThat would be great!
Considering bugs, I’ve noticed some weird behavior in color settings but this is not major issue.
Also, I didn’t inspect if you managed to generate unique ID for every tab. If you did, than ignore this line.Anyway, thank you for having time to further develop this awesome idea.
Looking forward to next version…Like others already said – not much for free.
Forum: Reviews
In reply to: [WP Hide & Security Enhancer] It is very harmfulPersonally, I think this is great plugin, especially after solving similar problem as yours in few easy steps:
- delete .htaccess from wp root
- delete plugin folder from mu-plugins (if I recall correctly)
- reset permalink settings, if necessary
There are pros and cons, but I am using this on 8 installations so far and I am very satisfied in general.
Forum: Plugins
In reply to: [WP Hide & Security Enhancer] Where is the plugin page?It’s back again…
Forum: Plugins
In reply to: [Mmm Simple File List] Multilingual site problemI’ve found a way around it.
Line 55 now look like this$outputDir = site_url( '/' ) . $folder;
Forum: Fixing WordPress
In reply to: HTTP Error when uploading to WordPressGD Plugin Worked! Thanks!!!
Forum: Fixing WordPress
In reply to: HTTP Error when uploading to WordPressForum: Plugins
In reply to: [MP3-jPlayer] Can't play this streamHave you tested it with
;?icy=http
at the end of stream url?Should look something like this:
https://radiofragola.updatemyip.eu:8000/;?icy=httpI didn’t test it but it was useful for me is some different occasions.
Forum: Plugins
In reply to: [Awesome Weather Widget] Missing transaltionGreat plugin, works like it should, except this issue.
Made me go away…Forum: Plugins
In reply to: [PanoPress] Further developmentNope, I just wondered if this fantastic project is going to further developed.
Thanks.Forum: Plugins
In reply to: Post Vote List/CategoryHi,
Have you find the solution yet?
I am trying almost the same thing, but with no luck.Thanks…
Forum: Plugins
In reply to: [Groups] WooCommerce show stock only to list of usersThis one works for loged/non-loged users:
add_filter( 'woocommerce_get_availability', 'custom_get_availability', 1, 2); function custom_get_availability( $availability, $_product ) { global $product; $stock = $_product->get_stock_quantity(); if ( $_product->is_in_stock() && is_user_logged_in() ) $availability['availability'] = __($stock . ' On Stock', 'woocommerce'); else $availability['availability'] = __('', 'woocommerce'); return $availability; }
But how to apply it to a users that does/doesn’t belong to a group?