pixeline
Forum Replies Created
-
Forum: Reviews
In reply to: [pixeline Generative Engine Optimization – LLM.txt] This broke my siteHi @sleepingfedar,
I’m sorry to hear that your site broke right after activation. I know how stressful that can be.
To understand what happened and see whether the plugin is involved, could you share a bit more detail about your setup (WordPress version, PHP version, other key plugins, theme) and any error messages or logs you might have? If you can temporarily enable WP_DEBUG and copy any fatal error messages, that would be very helpful.
Activating a plugin and then seeing a site issue does not always mean the plugin itself is the root cause — sometimes it’s a conflict with another plugin, the theme, or the hosting environment. Gathering more information is the only way we can identify where the problem actually is and either fix it or improve compatibility.
Once we have these details, I’ll be happy to investigate this with you and, if it turns out to be an issue in the plugin, work on a fix as quickly as possible.
Thanks for the issue report @itforme
Can you tell me both the wordpress and ninjaform plugin versions?
I’ll have a look this week-end!
Forum: Plugins
In reply to: [Bulk Attachment Download] Does not work with Amazon S3-hosted media filesGreat, will do! I’m thinking of curl-ing the image(s) instead of accessing the local file system. I will peak into your code and see if it would be a lot of work or not. Thanks for the plugin and your quick responses!
Forum: Plugins
In reply to: [Bulk Attachment Download] Does not work with Amazon S3-hosted media filesis that something you will consider supporting in the future or is it out of scope ? Perhaps i can help make it work.
- This reply was modified 2 years, 7 months ago by pixeline.
Forum: Plugins
In reply to: [WP-UserOnline] Display on admin barI’m not the plugin author, but i’ve sent the request to their GitHub issue tracker.
Forum: Plugins
In reply to: [WP-UserOnline] Display on admin barSure! Here is a sample code you can tweak to your liking. Add it to your theme’s functions.php
function add_users_online_count_to_admin_toolbar($wp_admin_bar) { if (function_exists('users_online')){ $users_online = get_users_online_count(); $wp_admin_bar->add_node( array( 'id' => 'users_online', 'title' => $users_online . ' users online', 'href' => '#', ) ); } } add_action('admin_bar_menu', 'add_users_online_count_to_admin_toolbar', 999);Forum: Plugins
In reply to: [WP Search with Algolia] Namespace conflict with other pluginHi Michael, you are very helpful, thank you very much for your time helping me on my issue.
And yes, indeed, making it a mu-plugin did the trick!
- This reply was modified 3 years, 6 months ago by pixeline.
Forum: Plugins
In reply to: [WP Search with Algolia] Namespace conflict with other pluginHi! Unfortunately, I’m still having the issue, even with the filter added in my theme’s functions.php
add_filter( 'algolia_should_require_search_client', '__return_false' );Fatal error: Cannot redeclare Algolia\AlgoliaSearch\api_path() (previously declared in /var/www/html/web/app/plugins/simply-static-pro/vendor/algolia/algoliasearch-client-php/src/functions.php:7) in /var/www/html/web/app/plugins/wp-search-with-algolia/includes/libraries/algoliasearch-client-php/src/functions.php on line 7
- This reply was modified 3 years, 6 months ago by pixeline.
@cybr you were totally right: some weird stuff happened and I didn’t see it at first. We also use Divi builder alongside WPML (and TSF). Both tweak the UI so much that there is some confusion for our translators, so bogus pages where created. In fact all those errors in the English sitemap can be deleted. They are not the correct ones.
We can safely close this issue as resolved 🙂
Hello Sybre 🙂
I double-checked: the pages are correctly marked as “nederlands”.
I have another question: why is the sitemap limited to 45 pages when I have 98 pages in total ?
https://www.dropbox.com/s/6l4bdna4bxasaaq/Capture%20d%27%C3%A9cran%202020-06-03%2013.05.45.png?dl=0
Forum: Plugins
In reply to: [SEO Data Transporter] From Yoast to SEO Framework – how?Forum: Plugins
In reply to: [Inline Related Posts] Use my own CSSHello Alex,
thank you for your prompt answer!
That means the file will be destroyed every time the plugin gets updated. would you perhaps consider looking first for a template inside the Theme first, and if none is present, use the one you provide with the plugin ?
Here is a sample code to express what I mean:
function get_stylehtml_file($file) { if(file_exists($file_path = get_stylesheet_directory() . $file)) require_once($file_path); else require_once(get_plugin_directory() . $file); }I would have no issue if you implement that functionality as part of the “paid” version. A man’s gotta eat!
Thank you,
AlexNice catch, Ramon, thanks. Will push an patch today.