Jeffrey van Rossum
Forum Replies Created
-
Forum: Plugins
In reply to: [Easy Liveblogs] Why Entries will not indexDo you mean entries as in, the specific entry as a separate page/post that you want to be indexed? Because, the entries are not available through any other way then through the liveblog. The post type is not public.
https://github.com/jeffreyvr/easy-liveblogs/blob/master/includes/elb-post-types.php#L27
Is that a feature you’d like to see added, so that you can change this through the settings?
As for the decoding; I will look to see if anything on the plugin side could cause this. Will get back on that.
Forum: Plugins
In reply to: [Easy Liveblogs] Why Entries will not indexI haven’t yet encountered such an issue with encoding, this could also be a compatibility issue with the theme you’re using or another plugin. Have you taken steps the see if its specifically an issue with this plugin? Is the encoding issue only happening in that part of your source code?
I’m not sure why the entries are not indexed, the are of course many factors with how your site is indexed. It’s very difficult to pin point why that isn’t happening for your site. In my personal experience; I have seen entries being indexed by Goolge.
Forum: Plugins
In reply to: [Easy Liveblogs] plugin writes too many PHP Warnings into error_logHi,
Using the
file_get_contentsfunction should be fine on most servers, unless allow_url_fopen is disabled – which is probably a security motivated decision.I will see if in a future update, I can refactor this so that it uses a different method.
Forum: Plugins
In reply to: [Easy Liveblogs] Leaving Comments to specific update entry?It isn’t possible at the moment, though it could be achieved with some custom development.
However, I will add it to the list as a potential future feature.
Forum: Plugins
In reply to: [Easy Liveblogs] Direct link to entry doesn’t link to entryFollowing the direct link, the browser will jump to that specific entry and highlight it (temporarily).
Forum: Plugins
In reply to: [Easy Liveblogs] Shortcode usageYou can turn any post into a liveblog when you check the checkbox.
The shortcode is only for those occasions where you want the liveblog to be displayed on another page. You don’t need to use it.
The liveblog will always be appended to the original content of a post. The order of the liveblog entries in a liveblog is from newest to oldest.
Forum: Plugins
In reply to: [Gutenberg] Gutenberg Navigation Block Not Working ProperlyHi @jordesign, the issue does not occur with WooCommerce disabled.
Forum: Plugins
In reply to: [Gutenberg] Gutenberg Navigation Block Not Working ProperlyThis happens on the latest versions of Gutenberg (v16.2.1) and WooCommerce (v7.9.0). Running WordPress v6.2.2 and PHP 8.0.
Gives the following error in the console:
[Error] Store "core/interface" is already registered. i (index.min.js:1:17937) register (index.min.js:1:19420) (anonymous function) (index.min.js:1:21859) (anonymous function) (index.min.js:129:2045) Global Code (index.min.js:129:2086)I have disabled every other plugin and activated the latest version of Twenty Twenty Three theme to be sure.
Forum: Plugins
In reply to: [Easy Liveblogs] Only body is shownClosing this due to inactivity.
Forum: Plugins
In reply to: [Easy Liveblogs] Change LiveblogI’m not entirely sure if I understand what you are trying to achieve. But you could limit the above code example to the homepage like so:
add_filter('elb_liveblog_title_prefix', function($prefix) { if(! is_front_page()) { return $prefix; } return '<span style="color: white; background: red;">'.$prefix.'</span>'; });Forum: Reviews
In reply to: [Easy Liveblogs] Amazing!Thank you! 🙂
Forum: Plugins
In reply to: [Easy Liveblogs] Change LiveblogThis is best achieved by adding some custom code to your theme (functions.php for example). You might do something like this:
add_filter('elb_liveblog_title_prefix', function($prefix) { return '<span style="color: white; background: red;">'.$prefix.'</span>'; });Forum: Plugins
In reply to: [Easy Liveblogs] Boton “View the live blog” translate and cacheHappy to hear you like the plugin!
1: You should be able to add translations here: https://translate.ww.wp.xz.cn/projects/wp-plugins/easy-liveblogs/
Spanish translation would certainly be a welcome addition 🙂
2: That’s something I’d have to look into when I have time.
3: No, at this point it’s not possible to have the schema markup on pages where the liveblog is displayed through a shortcode.Edit: The plugin was already translated in Spanish 😅 – but the translation of that particular link was lost the last update. It’s fixed in version 2.3.4.
- This reply was modified 3 years, 2 months ago by Jeffrey van Rossum.
Forum: Plugins
In reply to: [Easy Liveblogs] Only body is shownHi! This is not something I’m able to reproduce. This might be due to a specific theme or plugin conflict.
Can you provide more information?
Forum: Plugins
In reply to: [Sensei LMS - Online Courses, Quizzes, & Learning] Autograding not working@gaurav984 Thanks for the update! As the PR is already merged for a couple of weeks, is the release now imminent?