jdyach
Forum Replies Created
-
Forum: Plugins
In reply to: [AI Power: Complete AI Pack] Unable to export LogsI can see the individual txt files of the chat logs in the uploads directory, so I believe the plugin is writing to the folder successfully.
https://snipboard.io/JkDtrg.jpg
I did not mention before and not sure if it matters, that this is a multisite?
Thanks for your help!
Forum: Plugins
In reply to: [Kognetiks Chatbot for WordPress] streaming openai assistantAny update on this feature being added?
Forum: Plugins
In reply to: [Multiple Themes] Multiple Themes not working with WP 6.4.1Confirmed that WP v.6.4.2 resolved the issue! TY
Forum: Plugins
In reply to: [Multiple Themes] Multiple Themes not working with WP 6.4.1oh yikes, does anyone know if an alternative?
- This reply was modified 11 months, 3 weeks ago by jdyach.
Forum: Plugins
In reply to: [Multiple Themes] Multiple Themes not working with WP 6.4.1ahhh, OK glad it’s not just me!
Hi,
Thanks for your reply, but what I was actually looking for was to have the results of the posts/pages/products listed on my search results page to use those posts/pages/products’ SEO descriptions that I set using AIOSEO.
I was able to do that by copying the search results template to my child theme and replacing the description hook for the search results page.
For anyone else who comes across this using the Avada theme, the file is /templates/blog-layout.php around line 329
<div class="fusion-post-content-container"> <?php // custom AIOSEO meta description for search results if ( is_search() ) { if (function_exists('aioseo')) { $aioseo_description = aioseo()->meta->metaData->getMetaData($post)->description; if(!empty($aioseo_description)) { $post_id = get_the_ID(); $get_post = get_post($post_id); $meta_description = aioseo()->meta->description->getPostDescription($get_post); echo $meta_description; } } }else{ /** * The avada_blog_post_content hook. * * @hooked avada_render_blog_post_content - 10 (outputs the post content wrapped with a container). */ do_action( 'avada_blog_post_content' ); } ?> </div>
Got it – thanks so much!
I added this to my child theme functions.php
// webp support add_filter( 'wp_check_filetype_and_ext', 'wpse_file_and_ext_webp', 10, 4 ); function wpse_file_and_ext_webp( $types, $file, $filename, $mimes ) { if ( false !== strpos( $filename, '.webp' ) ) { $types['ext'] = 'webp'; $types['type'] = 'image/webp'; } return $types; } add_filter( 'upload_mimes', 'wpse_mime_types_webp' ); function wpse_mime_types_webp( $mimes ) { $mimes['webp'] = 'image/webp'; return $mimes; }
Ok, yeah I had to add the webp MIME type to my functions.php and now it works, thanks.
I came across this thread because I tried uploading some webp images, and they were not offloaded. In the media library I see this message: “This item has not been offloaded yet.” Jpg, png work fine. Should this be working out-of-the-box?
Thanks
I came across the same while updating to PHP 8.2. Would like to know if this will be updated.
That worked great- thanks!
Forum: Plugins
In reply to: [Better Search Replace] Version 1.4.2 brokenI have the same issue:
Fatal error: require_once(): Failed opening required ‘xxx/wp-content/plugins/better-search-replace/includes/class-bsr-templates-helper.php’ (include_path=’.:/usr/share/pear/php:/usr/share/php’) in xxx/wp-content/plugins/better-search-replace/includes/class-bsr-admin.php on line 95
Forum: Plugins
In reply to: [Relevanssi - A Better Search] Latest Update broke BeRocket Ajax FiltersYay, so glad I found this post – I had the exact same issue and replacing the woocommerce.php file sure did fix it – thanks!
Forum: Plugins
In reply to: [Relevanssi - A Better Search] Unexpected search resultsAhhh, I think something weird happened when I used “Post Type Switcher” plugin to convert pages over to custom posts. Any newly added posts seem to be populating in the results as expected ??
Also, unchecking “Expand shortcodes when indexing” I believe both helped eliminate some erroneous indexing as well as sped up the indexing process a TON!
Looking forward to the term and category weights being fixed in the next update.
Thanks so much for your time and excellent plugin!