kkj
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Blocksy] Kadence advanced header blockToo bad – then there would not be the need to use Kadence blocks in first place :/
Forum: Themes and Templates
In reply to: [Blocksy] Kadence advanced header blockHi, thank you for your reply. It is not about not working, it is about how to use the created block to replace the Blocksy header. Kadence offers instructions on how to do this in FSE themes and in their own Kadence theme, but not how to do this in a different regular theme. You can find info here: https://www.kadencewp.com/help-center/docs/kadence-blocks/the-kadence-header-adv-block/ and here: https://www.kadencewp.com/help-center/docs/kadence-blocks/getting-started-with-advanced-header-navigations/#adding-advanced-headers-sitewide
Forum: Themes and Templates
In reply to: [GeneratePress] Kadence blocksHi, thanks. The block is already created by Kadence plugin. Is there no way to use it in the free GP version?
Hi,
thanks. No, not FSE. Just regular themes like Generate Press, Blocksy etc.
Forum: Themes and Templates
In reply to: [Astra] SVG icons/header bottom barThat’s too bad. Thanks anyways.
Forum: Plugins
In reply to: [Rank Math SEO – AI SEO Tools to Dominate SEO Rankings] Additional schemaThank you very much!
Forum: Plugins
In reply to: [Rank Math SEO – AI SEO Tools to Dominate SEO Rankings] Additional schemaThat helps very much, thank you. One last thing I just noticed: if I wanted to remove one specific part of the schema, for example the author url, but not the full author, how does this work? I tried
add_filter("rank_math/snippet/rich_snippet_article_entity", function ( $entity ) {
if ( isset( $entity['author'] ) ) {
unset( $entity['author']['url']);
return $entity;
}
return $entity; });This does not work unfortunately. Thanks for your help!
Forum: Plugins
In reply to: [Rank Math SEO – AI SEO Tools to Dominate SEO Rankings] Additional schemaHi,
thank you! A screenshot is here.
Also, I am having trouble adding other custom fields like one for brand or mpn. Could you help me with the correct code as well?
add_filter( 'rank_math/snippet/rich_snippet_product_entity', function( $entity ) {
global $product;
if ( ! is_a( $product, 'WC_Product' ) ) {
return $entity;
}
$entity['brand']['@type'] = 'Brand';
$entity['brand'] = get_post_meta( $post->ID,'brand', true );
$entity['mpn'] = get_post_meta( $post->ID,'mpn', true );
return $entity;
});Forum: Plugins
In reply to: [Rank Math SEO – AI SEO Tools to Dominate SEO Rankings] Additional schemaThank you, I am a bit confused though on how to add it it correctly. I am trying to add FAQ schema, and the content/value of my field is for example
{ “@context”: “https://schema.org”, “@type”: “FAQPage”, “mainEntity”: [ { “@type”: “Question”, “name”: “Question1”, “acceptedAnswer”: { “@type”: “Answer”, “text”: “Answer1” } }, { “@type”: “Question”, “name”: “Question2”, “acceptedAnswer”: { “@type”: “Answer”, “text”: “Answer2” } } ] }
So how would I add this?
add_filter('rank_math/snippet/rich_snippet_product_entity', function ($entity) {
$faq = get_post_meta(get_the_ID(), 'customfield', true);
$entity['FAQPage'] = array(
'@type' => 'FAQPage'
);
return $entity;
});Forum: Plugins
In reply to: [WooCommerce] Duplicate GTINBy the way, using variable products with attributes for new and used condition would not work either, since Woocommerce does not allow for the same GTIN for variations either.
Forum: Plugins
In reply to: [WooCommerce] Duplicate GTINHi,
I am not using any plugin for this and not planning to use one either. I simply created a regular product and added a picture with all the products this set includes. The description has information about what the set consists of. I do not need any other special set/bundle options, simply to give this regular product the GTIN of the main product it includes…
Forum: Plugins
In reply to: [WooCommerce] Duplicate GTINOkay, thank you, I understand. But what about bundles then? Google advises to use the GTIN of the main product if you sell sets that you created on your own (https://support.google.com/merchants/answer/6324461?hl=en#Format –>Bundles). Again, this would not be possible with Woocommerce.
Forum: Plugins
In reply to: [WooCommerce] Urgent: translation files not loaded@jonayedhosen thank you, but that article does not say anything on where to place the files now – in fact, the Woocommerce docs aren’t updated and still tell you to place them in/wp-content/languages/woocommerce. Please let me know where to place them now in order for them to work. Thank you.
Forum: Plugins
In reply to: [Germanized for WooCommerce] Checkout/Kompatibilit?tEuer Multistep sieht schon gut aus, allerdings müssste man dann jedes Jahr die Subscription erneuern, oder?
Welcher hook ist denn bei Germanized für die Anordnung der Zahlungsoption verantwortlich?
Vielen Dank schon mal!Forum: Themes and Templates
In reply to: [Virtue] Dequeue jsHello, sorry to hear you have been sick.
So you are saying the dequeue function is working for you??Strange…well I guess I have to ask the folks at Woocommerce, hopefully they will answer..