Hi there: files that display widgets and shortcodes are into plugin folder
/views/
open these files, or these
custom files you moved into custom folder if you want to edit to display as you like changing content without that when plugin update it will be overwrite (read hint on related option about custom files to use into plugin admin page).
Assuming you're using default files, and you activate to display default widgets, then open
views/phpbb_last_topics.php
the problem is that here, depend on which option are active, the execution code change, so you'll need to search for +- this, to be removed/changed into what you want (there are several lines with something like this):
Code: Select all
echo "<li class=\"".$w3all_lastopics_style_li_class."\"><a href=\"$w3all_url_to_cms/viewtopic.php?f=$value->forum_id&t=$value->topic_id&p=$value->post_id#p$value->post_id\">$value->topic_title</a> ".$w3all_post_state_ru."<br />". __( 'by ' , 'wp-w3all-phpbb-integration' )." $value->topic_last_poster_name " . __( 'at ' , 'wp-w3all-phpbb-integration' ) . date_i18n( 'H:i Y-m-d', $value->topic_last_post_time + ( 3600 * get_option( 'gmt_offset' )) ) ."</li>\n";
that you'll change into this:
Code: Select all
echo "<li class=\"".$w3all_lastopics_style_li_class."\"><a href=\"$w3all_url_to_cms/viewtopic.php?f=$value->forum_id&t=$value->topic_id&p=$value->post_id#p$value->post_id\">$value->topic_title</a> ".$w3all_post_state_ru."<br />". __( 'by ' , 'wp-w3all-phpbb-integration' )." $value->topic_last_poster_name</li>\n";
removing the part that will go to display date and/or change into what you like.
I know, it can be little complicate if you never put hands on code: these files and all shortcodes will be soon rewrite to be an easy peace of mind for all to be transformed and accomplish to any need with easy.
Hi there: files that display widgets and shortcodes are into plugin folder [b]/views/[/b]
open these files, or these [i]custom [/i]files you moved into custom folder if you want to edit to display as you like changing content without that when plugin update it will be overwrite (read hint on related option about custom files to use into plugin admin page).
Assuming you're using default files, and you activate to display default widgets, then open
[i]views/[b]phpbb_last_topics.php[/b][/i]
the problem is that here, depend on which option are active, the execution code change, so you'll need to search for +- this, to be removed/changed into what you want (there are several lines with something like this):
[code]echo "<li class=\"".$w3all_lastopics_style_li_class."\"><a href=\"$w3all_url_to_cms/viewtopic.php?f=$value->forum_id&t=$value->topic_id&p=$value->post_id#p$value->post_id\">$value->topic_title</a> ".$w3all_post_state_ru."<br />". __( 'by ' , 'wp-w3all-phpbb-integration' )." $value->topic_last_poster_name " . __( 'at ' , 'wp-w3all-phpbb-integration' ) . date_i18n( 'H:i Y-m-d', $value->topic_last_post_time + ( 3600 * get_option( 'gmt_offset' )) ) ."</li>\n";[/code]
that you'll change into this:
[code] echo "<li class=\"".$w3all_lastopics_style_li_class."\"><a href=\"$w3all_url_to_cms/viewtopic.php?f=$value->forum_id&t=$value->topic_id&p=$value->post_id#p$value->post_id\">$value->topic_title</a> ".$w3all_post_state_ru."<br />". __( 'by ' , 'wp-w3all-phpbb-integration' )." $value->topic_last_poster_name</li>\n";[/code]
removing the part that will go to display date and/or change into what you like.
I know, it can be little complicate if you never put hands on code: these files and all shortcodes will be soon rewrite to be an easy peace of mind for all to be transformed and accomplish to any need with easy.