johnny538
Forum Replies Created
-
The question is, how is it possible that a page that is set to draft still appear on the search results?
Sitemap or search results?
I don’t work for TSF, but I tested it and can’t reproduce. I created a page as a draft, and I don’t see it in the sitemap.
If you’re certain you want to use shortcodes in your description, you can add this code to your functions.php file.
add_filter( 'the_seo_framework_custom_field_description', function( $description, $args ) { return apply_shortcodes( $description ); }, 10, 2 );
You mean to use (long) description instead of the short description, right? You can do that with a code snippet which you can place in your
functions.php
file.add_filter( 'the_seo_framework_fetched_description_excerpt', function( $excerpt, $d, $args ) { $tsf = tsf(); if ( null === $args ) { // In the loop. $is_product = $tsf->is_product(); } else { // Out the loop, admin etc. $is_product = ! $args['taxonomy'] && ! $args['pta'] && $tsf->is_product( $args['id'] ); } if ( $is_product ?? false ) { $product = get_post( $args['id'] ?? $tsf->get_the_real_ID() ); $product_id = $product->ID; // Don't leak protected content. if ( $tsf->is_protected( $product_id ) ) return $excerpt; $old_excerpt = $excerpt; $excerpt = $tsf->uses_non_html_page_builder( $product_id ) ? '' : $product->post_content; if ( $excerpt ) { // Apply half of TSF's description AI here: selectively strip content and HTML. $excerpt = $tsf->s_excerpt_raw( $tsf->strip_paragraph_urls( $tsf->strip_newline_urls( $excerpt ) ) ); } $excerpt = $excerpt ?: $old_excerpt; } return $excerpt; }, 10, 3 );
Forum: Plugins
In reply to: [Advanced Forms for ACF] jQuery dependencies@adrian2k7 Yeah I saw the jQuery code for this plugin is quite minimal. I’m not that good with JS, so I can’t convert it myself, but I wouldn’t mind hiring someone to do that.
I wasn’t aware yet that ACF Forms itself also requires jQuery. I think I’ll just use the HTML Forms plugin though. It just loads some basic (vanilla) JS for the ajax submission.Forum: Plugins
In reply to: [Breadcrumb NavXT] bcn_display_separator documentationThank you so much for the fast reply.
Are you able to reproduce it at all?
It’s a default feature. Here’s a screenshot of what I mean if I wasn’t clear. This is on a vanilla Chromium instance on Manjaro Linux.
In this case there’s 1 issue reported. But when I work and have QM enabled, I’m getting hundreds of issues and the browser won’t stop until it’s done checking.
So far I haven’t been able to find out how to disable this, but I’ll do some digging.
Let me know if I can help with debugging.
Forum: Plugins
In reply to: [HTML Forms - Simple WordPress Forms Plugin] Newlines in html email bodyThanks.
That works, but preformatted text is not a pretty solution because the style is different than the rest of the fields ??
Is there really no other way ?
Forum: Plugins
In reply to: [HTML Forms - Simple WordPress Forms Plugin] Newlines in html email bodyHi @lapzor thanks for your fast response.
I’m not entirely sure what you mean with that. My message looks like this now:
<p>First name: [FNAME]</p> <p>Last name: [LNAME]</p> <p>E-mailaddress: [EMAIL]</p> <p>Phone: [PHONE]</p> <p>Message:</p> <p>[MESSAGE]</p>
When someone uses the contact form and writes in the message:
Hi, This is a test. Bye
I get in my mailbox:
Hi,This is a test.Bye
I just want the message to keep the blank lines…
@tivipocopamo What exactly do dislike about The SEO Framework ? I noticed you created your account on the same day you left your negative review there, and your positive review here which is a bit odd. You say “This plugin offers no features whatsoever.”, but fail to mention what features you expected. I find it weird that the other 277 5-star reviewers don’t have similar complaints and are much more verbose regarding their opinion about TSF.
Wow thanks so much for checking this. I’m gonna test it myself ASAP.
btw, when you edit a page, you should see a button that inserts the bookly shortcode. I still use the classic editor, so I’m not sure how it looks like in Gutenberg, but it should be there.
Forum: Plugins
In reply to: [WPO365 | Mail Integration for Office 365 / Outlook] Reply-toIs there any progress on this ? I’m dependent on the plugin, and I could really use this feature.
Forum: Plugins
In reply to: [Contact Form 7] Select Multiple > Define “Size”Thanks. I’ll try that.
I looked in the documentation but could not find that info there.
Forum: Plugins
In reply to: [Contact Form 7] Select Multiple > Define “Size”The website is in local development.
I’m using this in CF7:
[select menu-647 multiple "Entry" "Entry" "Entry" "Entry" "Entry" "Entry" "Entry" "Entry"]
You can aslo replicate it in the TryOut Editor here: https://www.w3schools.com/tags/tryit.asp?filename=tryhtml_select
With the content:
<!DOCTYPE html> <html> <body> <h1>The select element</h1> <p>The select element is used to create a drop-down list.</p> <form action="/action_page.php"> <label for="cars">Choose a car:</label> <select multiple="multiple" name="cars" id="cars"> <option value="volvo">Volvo</option> <option value="saab">Saab</option> <option value="opel">Opel</option> <option value="audi">Audi</option> <option value="volvo">Volvo</option> <option value="saab">Saab</option> <option value="opel">Opel</option> <option value="audi">Audi</option> <option value="volvo">Volvo</option> <option value="saab">Saab</option> <option value="opel">Opel</option> <option value="audi">Audi</option> </select> <br><br> <input type="submit" value="Submit"> </form> </body> </html>
You can see the output box is just showing 4 items in this case.
If we can add <select size=”10″ class=””…….
Then we can adjust the size.
Forum: Plugins
In reply to: [Contact Form 7] Google V3 content recognized as spamI have the same issue. ReCaptcha V3 prevents the form from being submitted. After deleting the V3 keys it works again. Chrome’s developer console returns ‘status’: ‘spam’.
Everything worked fine before the update.
Forum: Plugins
In reply to: [WP-Chatbot for Messenger] Not Working since updateI have the same issue on a client’s site. Since the update the widget is not showing anymore.