Nikola
Forum Replies Created
-
Forum: Plugins
In reply to: [Sermon Manager] Adding 2 or more Sermons on pageHi Dave,
Apologies for the long delay.
I assume that all that has to be done is this:
1. Hover on WordPress settings (not Sermon Manager settings), and select Reading submenu item
2. Change the value in “Blog pages show at most” option to some larger value (default is 10)Hope this helps!
Forum: Plugins
In reply to: [Sermon Manager] BUG? Sermon Sort Fields Not Working?Hi Mike,
Should be fixed now, for good.
Thank you for reporting it
Forum: Plugins
In reply to: [Sermon Manager] BUG? Sermon Sort Fields Not Working?It’s a confirmed bug.
We are working on it ??
Forum: Plugins
In reply to: [Sermon Manager] Exclude me (or logged in users) from statsHi John,
It has been added and will be released in the next version.
Thanks! ??
Forum: Plugins
In reply to: [Sermon Manager] BUG? Podcast Icons Not Displayed FF & IEHi Mike,
It has been fixed, will be released in next SM version.
Thanks for the report ??
Forum: Plugins
In reply to: [Sermon Manager] Changing language in sort fieldsHi, we have replied in the other topic, so the updated code can be found by visitors in future.
Forum: Plugins
In reply to: [Sermon Manager] Filter option languageHi @neal514,
Here is the updated code. Preacher label can only be changed via settings.
add_filter( 'gettext', 'change_sermon_filtering_labels', 20, 3 ); /** * Change filtering labels. * * @param string $translated_text Translated text. * @param string $text Text to translate. * @param string $domain Text domain. * * @return string Translated string. */ function change_sermon_filtering_labels( $translated_text, $text, $domain ) { if ( 'sermon-manager-for-wordpress' !== $domain ) { return $translated_text; } switch ( $text ) { case 'Series': $translated_text = ''; // Translated string here, between quotes. break; case 'Topic': $translated_text = ''; // Translated string here, between quotes. break; case 'Book': $translated_text = ''; // Translated string here, between quotes. break; case 'Service Type': $translated_text = ''; // Translated string here, between quotes. break; } return $translated_text; }
Forum: Plugins
In reply to: [Sermon Manager] Individual Sermon View & Sermon ImagesHi there,
You would need to use custom CSS to edit the page to look the way you want. Unfortunately, we do not do those services, but you can do it yourself or hire someone else if you like, for example from https://jobs.wordpress.net/
Mike has been super helpful, and has provided some of the code, which could help ??
Forum: Plugins
In reply to: [Sermon Manager] Exclude me (or logged in users) from statsHi John,
Unfortunately, we do not have such capability.
In my opinion, it is useful to include the staff as well, so the count can be tested. But, we can add an option in settings to disable counting of logged in admin/editor users, if that sounds okay.
Forum: Plugins
In reply to: [Sermon Manager] Knowledgebase missing demo code for customizing excerptYou’re welcome. ??
To render the video, you can use
wpfc_render_video( $url );
.And thanks, have a wonderful weekend as well!
Forum: Plugins
In reply to: [Sermon Manager] Archive page slugHi, unfortunately, that is not yet possible, but as a workaround, you could set the slug to “message”, so individual sermons will load at “/message/the-sermon-slug”, and all sermons will load your page at “/messages”.
However, “/message” will also load all messages, but you could create a file override in your theme, named “archive-wpfc_sermon.php”, with the following code:
<?php /** * Redirects Sermon Manager archive page to the WordPress page. */ wp_redirect( get_page_link( 0 ) ); exit;
Note: Don’t forget to replace the zero with the page ID where shortcode is located. Also, this may or may not work, we have not tested it. There might be some unexpected behavior.
Forum: Plugins
In reply to: [Sermon Manager] Bug – Play/Pause button not changingForum: Plugins
In reply to: [Sermon Manager] image_size in short code not changing image sizeHi @koinonos,
Thank you for the report. ??
The fix will be released shortly.
Hey Mike,
Thank you for testing it too. ??
Forum: Plugins
In reply to: [Sermon Manager] Knowledgebase missing demo code for customizing excerptHi!
Thank you for the report. ??
We have updated the article.
Forum: Plugins
In reply to: [Sermon Manager] Changelog from 2.13.0Hi,
Apologies for the delay.
I will write more info right here:
New: Add a simpler way of overriding sermon render
The previous way of overriding the views was only possible via PHP, via
wpfc_sermon_single_v2
,wpfc_sermon_excerpt_v2
, and possibly other filters, which was not easily usable for users who did not know PHP.But, in 2.13.0, we have added an easier way to override the views, and that is by adding a file override. The content that was only overridden via filter can now be overridden by copying files from
/views/partials
to the theme. Also, if you open one of the files in that directory, you can see more details in the header, including the changelog.So basically, since 2.13.0, everything view related can be overridden by file, i.e. everything in
/views
directory.New: Add support for custom WP role capabilities
To see this change the easiest way, just install User Role Editor plugin https://www.ads-software.com/plugins/user-role-editor/, Sermon Manager roles will be present there as well. ??
But those roles can be used via PHP in other plugins as well.