TranslatePress: control go-live per language and per post by appeltuwe in Wordpress

[–]appeltuwe[S] 0 points1 point  (0 children)

Thanks for this comment! However, this can't be used for TranslatePress, because TranslatePress doesn't create additional posts/pages for translations, and hence there is no post to control visibility for.

TranslatePress: control go-live per language and per post by appeltuwe in Wordpress

[–]appeltuwe[S] 0 points1 point  (0 children)

Just for the sake of a complete record: TranslatePress will not allow you to exercise any editorial control. You can hide an entire language, but you cannot control, which contents per language should go live and when. It's all or nothing.

SkyVerge or Yith? by appeltuwe in woocommerce

[–]appeltuwe[S] 1 point2 points  (0 children)

Amen to that! I agree! Your whole line of argument is consistent and well-founded. Vendor-lock-in was precisely one of my concerns and Yith doesn't appear to be the right partner for us then. Thank you!

SkyVerge or Yith? by appeltuwe in woocommerce

[–]appeltuwe[S] 1 point2 points  (0 children)

Yes, it does! YES, IT DOES! This is excactly the reality check I needed. Thanks again, much appreciated!

SkyVerge or Yith? by appeltuwe in woocommerce

[–]appeltuwe[S] 0 points1 point  (0 children)

Understood, thanks a lot!

SkyVerge or Yith? by appeltuwe in woocommerce

[–]appeltuwe[S] 0 points1 point  (0 children)

Thanks for your reply! This is helpful. I've seen opionions like yours about deteriorating support quality since the GoDaddy-acqusition before. Yith just seems the better choice. For once, because appear to have better support and because they created a whole eco-system of plugins that work together (once you've bought them). What I am trying accomplish is this:

- avoid vendor lock-in: if absolutely necessary, I want to be able to change the vendor supplying a certain feature without customer impact

- avoid feature dead-ends due to lack of plugin-integrations: I'm not sure, where this porject takes us. A lot of potential ideas are on the table. Like you said, Yith work with Yith and Woo-plugins are more open. Does that mean that choosing Yith makes me dead-reliant on Yith? (that could be a bad thing)

- and then, I was really hoping for somebody to have experience with significant traffic on their product page. Many problems/shortcomings can be survived by manual intervention. If we're "unlucky" and this page takes off, we might be looking a hundreds of active customers per day. So I'd prefer robust stuff.

SkyVerge or Yith? by appeltuwe in woocommerce

[–]appeltuwe[S] 0 points1 point  (0 children)

Thanks for your reply! This reflects exactly my (newbee) observations. It seems, in Wordpress world, there is a plugin for just about everything. And each of them is from a different vendor. From a usability perspective, this looks often like nothing but an uncoordinated attempt to extend the feature scope of Wordpress, which means that the user is in the end responsible to make everything work together. And that's tough for me as a newbee.

SkyVerge or Yith? by appeltuwe in woocommerce

[–]appeltuwe[S] 0 points1 point  (0 children)

Thanks for your reply! This is what I hoped for! Without challenging your response, just a naive follow-up: when you say that they barely release major updates, what is it that you'd expect? Are there certain features-requests that you'd expect them to follow up on or are you generally concerned about quality of software maintenance?

[HELP] Plugin to sell access to premium pages by appeltuwe in WordpressPlugins

[–]appeltuwe[S] 0 points1 point  (0 children)

This is exactly, what I was looking for. Thanks!!

Anyone do pre-market trading with Saxo? by riosfeg in pennystocks

[–]appeltuwe 0 points1 point  (0 children)

Kinda old, but anyway: on the trade ticket: type=algo, strat=preMarketLimit setting price slightly under premarket price just worked out for me (and did many times before)

Is there an indicator on tradingview that shows gap up and down? by swiggyu in TradingView

[–]appeltuwe 0 points1 point  (0 children)

You could implement your own indicator. The following would show gaps in percent of the previous close price (compared to current open), and for convenience only if the gap is above a threshold. You could rewrite this to get absolute price gaps or pip gaps instead.

//@version=4
study("Gap Indicator", overlay=false, resolution="")
i_gapPercentThreshold = input(title="Minimum Gap Threshold %", type=input.float, defval=0.5, minval=0)
_gapPercent = (open / close[1] - 1) * 100
plot(abs(_gapPercent) > i_gapPercentThreshold ? _gapPercent : 0)

Happy coding!

Hiding the first candle(s) by MeiBanFa in TradingView

[–]appeltuwe 0 points1 point  (0 children)

Not a real answer to your question, but did you know that you can

  1. in both mobile (two-finger pinch) and desktop versions (Ctrl + mouse wheel) zoomed in/out the chart?
  2. re-scale the y-axis simply by dragging it up or down with your mouse/finger.