Alex R.
Forum Replies Created
-
@saifislam01 Yes, we still have the same problem ??
Hi @geraltrivia,
I mananged to identify the problem with our theme. This specific shortcode is only working within the loop and “the_content()”. Is there any workaround without using the loop ?
Forum: Reviews
In reply to: [Simple Database Repair] Can’t activate PluginYes, it is multisite. But I cannot send credentials to you, sorry!
Forum: Plugins
In reply to: [Download Manager] Category Filter / Dropdown@shafayat-alam Great, that is exactly what we are looking for. Thank you very much for your fast anwers!
Forum: Plugins
In reply to: [Download Manager] Category Filter / DropdownForum: Plugins
In reply to: [WP Storefront - Magento 2 Product Showcase] Plugin abandoned?@santerref Hi, great to hear from you!
I have these two questions:
https://www.ads-software.com/support/topic/display-products-without-shortcode/
https://www.ads-software.com/support/topic/overwrite-templates-in-theme/Forum: Plugins
In reply to: [LocateAndFilter] CSV Import possible ?@dgamoni Great, thanks, I’ll give it at try!
Forum: Plugins
In reply to: [CleverReach? WP] Formular?nderung in CleverReach wird nicht übernommen@nzyan Ich habe eine entsprechende Bewertung und “Warnung hinterlassen” ??
Forum: Plugins
In reply to: [CleverReach? WP] Formular?nderung in CleverReach wird nicht übernommen@nzyan Wir haben das Plugin mittlerweile deaktiviert, da es so für uns keinen Sinn ergibt.
Forum: Plugins
In reply to: [Export any WordPress data to XML/CSV] Export Serialized Data in single rowsHey,
thanks for pointing me into the right directon, I’ll give it a try.
- This reply was modified 2 years, 12 months ago by Alex R..
Forum: Plugins
In reply to: [Relevanssi - A Better Search] Problem with Index and ACF Gutenberg-BlocksThis is what we tested:
global $post; $wiki_headline = get_field( 'wiki_headline', $post->ID ); $wiki_text = get_field( 'wiki_text', $post->ID ); ?> <section class="wiki-single content-row"> <div class="content-row-inner"> <div class="wiki-single-box"> <div class="wiki-single-text" ><?php echo $wiki_text ?></div> </div> </div> </section> <?php
Forum: Plugins
In reply to: [Relevanssi - A Better Search] Problem with Index and ACF Gutenberg-BlocksHi,
when using global $post as you mentioned, and add the ID to the ACF-Field,
the content stays empty.When dumping $post on the post-template, we can see the entire content, including
the specific block.Forum: Plugins
In reply to: [Relevanssi - A Better Search] Problem with Index and ACF Gutenberg-BlocksI can reproduce the problem when I do the following:
Adding “Word1” into the block, and “Word2” as normal WordPress Paragraph-Block onto the post.
When searching, Relevanssi will find both “Word1” and “Word2”.
Now I reindex all pages in Relevanssi Search Options.
When searching now, Relevanssi will NOT find “Word1”, but still “Word2”.
Saving afterwards the Custom Post Type post again, Relevanssi will find again “Word1” and “Word2”.
Forum: Plugins
In reply to: [Relevanssi - A Better Search] Problem with Index and ACF Gutenberg-BlocksHi @msaari, we are using the block in a custom post type single-page template, which
uses get_template_part in a standard wordpress loop.get_header(); while ( have_posts() ) : the_post(); get_template_part( 'template-parts/content/content', 'wiki' ); endwhile; // End of the loop. get_footer();
Yes, this option was the solution, thank you! ??