SimonNo
Forum Replies Created
-
I found a solution based on this article: https://gist.github.com/amboutwe/811e92b11e5277977047d44ea81ee9d4
Hi, the priority for the og:image is currently this: A user-defined image “Facebook image” in the Social tab of the Yoast metabox on the post/page level. A user-defined “Featured image” for the page (only for posts). A prominent image from the page’s content. The “Social default image” from the template in Search Appearance. The site’s fallback/default social image (set at SEO > Social > Facebook > Default image). If you want the default social image (4) to have higher priority than (3) A prominent image from the page’s content, then you could use this code: add_filter( 'wpseo_opengraph_image', 'dc_yoast_prefer_default_image_over_first_content_image', 10, 2 ); function dc_yoast_prefer_default_image_over_first_content_image( $img_url, $presentation ) { if ( !empty( $presentation ) && isset( $presentation->model ) && isset( $presentation->model->open_graph_image_source ) ) { if ( 'first-content-image' === $presentation->model->open_graph_image_source ) { $yoast_options = get_option( 'wpseo_social' ); if ( !empty( $yoast_options['og_default_image'] ) ) { return trim( $yoast_options['og_default_image'] ); } } } return $img_url; }The thing is, that in the backend-view, Yoast shows the wrong image. But on the front-end in the code the right image (right order) is being outputed
hey @quadlayers,
the placeholder-option for select fields is not fixed with 4.6.4
hey @quadlayers,
both problems are fixed with 4.6.4
Forum: Plugins
In reply to: [Checkout Field Manager (Checkout Manager) for WooCommerce] Language Problemhey @quadlayers,
the language problem is fixed with version 4.6.4
Forum: Plugins
In reply to: [Checkout Field Manager (Checkout Manager) for WooCommerce] Language ProblemHey @quadlayers i can only share the checkout with login credentials. Is there a way to share private informations with you?
Hey @quadlayers,
here are the screenshots:
https://ibb.co/ygNSgZQ
https://ibb.co/5Y4wmpR
https://ibb.co/QJwZ1PPThanks a lot!
hey @quadlayers,
I’m using 4.6.0 and i get the behaviour described with select and text-fields.
hey @quadlayers,
i selected a default option. The default option is the first one in my list. Right now i can not use this default option for ordering, because the required-error shows up.
When i add an “empty” option, this will be a problem because the user could use this option and I might not get the needed information from him then. In the old version of “Checkout Manager” there was the ability to add an placeholder-text that was first displayed in the dropdown list, but this placeholder-text wasn’t an “option” the user could choose
Forum: Plugins
In reply to: [Checkout Field Manager (Checkout Manager) for WooCommerce] Language ProblemI’m also having problems with language. The error-message for a required select-field is in english – but used to be / should be in german. Standard fields like street-adresse is also required but the error-message is in german.
Hey @quadlayers,
at first tests this seems to work again!.
I see a problem with required SELECT fields. The placeholder is not showing but instead the first option in the list. If i want to choose this first option -> click “purchase” -> an error-message is showing “XY is a required field.”
I’m very thanksfull that you took over the ownership. But this is a big problem for me =(
Hello @visser,
i feel the same as @gaffercanberra. This problem is there for several month now and forces me to stay with old woocommerce version and old version of this plugin (which exposes me to security threats). I’m thinking more and more about switching plugin, which would cost a lot of effort and adjustment. I still have hope to see this plugin working great again, as it did for several years. I wish i could somehow help but i do not have the skills for it.
Would be great to get an update from you.
Thank you!
Simon
Hey @andrea87n
yes i tried the recent update on my stage today but the problem is still there.
Anyone having a solution to this problem? I didn’t update for more than a month because of this problem. Would be great to find a solution. Unfortunately i’m not a coder. Switching plugins could cause a lot of work =(
All the best Simon
- This reply was modified 7 years, 1 month ago by SimonNo.
Forum: Plugins
In reply to: [Autoptimize] Custom Javascript FunctionThank you very much for your reply! I’m going to try a different event then!