Search result for: nando4
Page 1 / 5
Next
# | Post Title | Result Info | Date | User | Forum |
RE: Teething issues | 47 Relevance | 6 years ago | CrisW | How-to and Troubleshooting | |
RE: wpForo 1.6.2 is released! | 47 Relevance | 6 years ago | Robert | wpForo Announcements | |
@nando4, Ok, thank you for letting us know. It seems you've not read the whole Change-log of 1.6.0 version. We've added an option to keep first (starter) post on top of all pages. here we use this option so you see first post on all pages. | |||||
RE: wpForo 1.6.2 is released! | 37 Relevance | 6 years ago | Robert | wpForo Announcements | |
This will be fixed in next version. I'm sorry but I have no ETA, it may take a few weeks. | |||||
RE: wpForo 1.6.2 is released! | 28 Relevance | 6 years ago | Robert | wpForo Announcements | |
Hi @nando4, If you want back the brackets in titles, please open this file: wp-content/plugins/wpforo/wpf-includes/functions.php Find this line and remove it: $text = preg_replace('#\[[^\]]+\]#', '', $text); | |||||
RE: wpForo 1.6.2 is released! | 28 Relevance | 6 years ago | nando4 | wpForo Announcements | |
Any ETA for a fix or a pointer to the offending code? Found the splitted off topic: | |||||
Bug: "Find posts by user" and "Find topics started by user" doesn't work | 28 Relevance | 8 years ago | nando4 | How-to and Troubleshooting | |
Click search -> phrase: nando4 -> Search type: "Find posts by user" results in no posts found. This is the full URL it uses: Change Search type to "Search entire posts" and it find my posts using this URL: The same problem is on my forum. Can we get a fix for Search type "Find posts by user" and "Find topics started by user"? | |||||
RE: wpForo 1.7.2 is released! | 19 Relevance | 5 years ago | Robert | wpForo Announcements | |
ok, thank you. | |||||
RE: wpForo 1.7.2 is released! | 19 Relevance | 5 years ago | Robert | wpForo Announcements | |
It's not necessary. Just make sure you've deleted all caches, purged CDN if any, and reset optimizer/minifier plugins caches. Then you should delete browser cache pressing Ctrl+F5. On mobile devices you should use private session to avoid browser caches. We also have cache plugins on our test website, all is ok and you don't have to add any code. | |||||
RE: Problems for Bulk move topics from one one category to other. | 19 Relevance | 6 years ago | nando4 | How-to and Troubleshooting | |
... 3. Sync post forumIDs to match the topic forumID by selecting wpforo Dashboard -> Rebuild threads *after* adding the following code in RED to class-topics.php. It would make sense for wpforo team to add this to a future release. function rebuild_forum_threads( $forumid = 0 ){ if( !$forumid ){ $args = array( 'layout' => 4 ); $forums = WPF()->forum->get_forums( $args ); if(!empty($forums)){ foreach( $forums as $forum ){ $args = array( 'forumid' => $forum['forumid'] ); ... | |||||
RE: wpForo and SyntaxHighlighter Evolved | 19 Relevance | 6 years ago | nando4 | How-to and Troubleshooting | |
@Robert, @Sofy, any reply to my last query? | |||||
RE: wpForo 1.4.6 is released! | 19 Relevance | 7 years ago | Robert | wpForo Announcements | |
Posted by: nando4 The profile->Activity listing is from oldest to newest. Should it not be newest to oldest? I use Litespeed cache and it worked perfectly with 1.4.5. 1.4.6 is seeing the rotating swirly dots if I LIKE a post. Disabling Litespeed cache clears the problem. What could be the cause of this? Otherwise thank you @gvectors for adding post split/merging. A very important feature to allow centralization of material, preventing topic fragmentation across multiple posts. Thank you @nando4, We'll change the order in next version. | |||||
RE: BUG: users with 100 uncleared notifications stop getting popup notifications for new notifications | 10 Relevance | 5 years ago | Robert | How-to and Troubleshooting | |
Hi @nando4, There is not any bugs here. The notifications are being registered even if they are more than 100, but they'll not be displayed until you've not cleared some notifications. Only earliest 100 notifications are shown. This is not a bug. This is a protection. If some forum is hacked and a topic has replied thousands time the page will not be crashed when it's loading the thousands of notifications. Currently, the limit is set 100 and as you can see we've added a filter hook to change the limit. To increase the 100 displaying limit you can add this hook code to your current active theme functions.php file: function custom_wpforo_notification_limit( $args ){ if( isset($args['row_count']) ) { $args['row_count'] = 500; } return $args;}add_filter('wpforo_get_notifications_args', 'custom_wpforo_notification_limit', 10); | |||||
RE: REQ: 'unread posts' be hyperlinked to the post rather than topic | 10 Relevance | 5 years ago | Robert | How-to and Troubleshooting | |
@nando4, Please don't change the core code. Just remove it temporarily and pay with the "Topic Links Jump to First Unread Post" option in Forums > Settings > Features admin page. | |||||
RE: REQ: 'unread posts' be hyperlinked to the post rather than topic | 10 Relevance | 5 years ago | nando4 | How-to and Troubleshooting | |
... <?php // nando4 >> adjust 'unread posts' to list topics BUT change it link to the last post rather than first one ?> <?php wpforo_topic_icon($topic); ?> <a href="<?php echo ($view == 'unread' ? $topic_posturl : wpforo_unread_url( $topic['topicid'], $topic_url )) ?>" class="wpf-spost-title-link" title="<?php echo ($view == 'unread' ? "View last post" : wpforo_phrase('View entire topic')) ?>"><?php echo esc_html($title) ?></a> <?php wpforo_unread_button($topic['topicid'], $topic_url); ?> <?ph ... | |||||
RE: Editor TinyMCE add scroll bar | 10 Relevance | 5 years ago | Sofy | How-to and Troubleshooting | |
@nando4, Please remove all customization you've done, put the code below in your current active theme functions.php file: add_filter('wpforo_editor_settings', function ($settings){ $settings['editor_height'] = 380; $settings['tinymce']['wp_autoresize_on'] = false; return $settings;}); The 380 can be changed as you like. |
Page 1 / 5
Next