Forum Replies Created
-
In reply to: Issue with the width of bbpress
Hi, open your css and found line 2317, you have this:
#content-area ul li, #content-area ol li { margin-left: 50px; padding: 5px 0; }
Remove margin-left or set it 0
In reply to: ErrorsI think problem is in your server configuration.. see this https://www.google.com/#q=Unable+to+allocate+memory+for+pool
In reply to: Forum Styles BrokenHi..
I can’t reproduce your issue, i don’t see any change in your theme when i open one topic… Style remaining same..
Have you cache browser problems? Delete your browser cache!!
In reply to: diable some thingsHi, for breadcrumbs and notice you can to edit bbpress teplate files and remove the line… for first title and posted by you must to edit your wordpress page template!!
In reply to: I need to enlarge some font-sizesEvery css template can have different class and code.. We must to see a specific code to made one solution for you.. If you have possibility to run this site in one webserver we can help you, but in this conditions is titanic…
In reply to: How to style forum title or topic titleOk, open content-archive-forum.php
Sorry i understand what you want.. h1 title before id bbpress is made by wordpress, is title page, i think you find it in your page template!!
In reply to: How to style forum title or topic titleOpen: loop-forums.php
In reply to: User Pages and Page Title "Not Found"Not for this version.. for future version mybe.. I have made a function to rewrite title.. bbpress is not seo friendly for users… it generate duplicate pages!!
In reply to: I need to enlarge some font-sizesTry add this in your css:
.bbp-forum-title, .bbp-topic-title { font-size: 16px; font-weight: bold; }
In reply to: User Pages and Page Title "Not Found"Try to use All in one seo plugin…
In reply to: help me pls.. I'm stuckOne solution… If you have modified in error function.php, you must access via ftp, download the file in local…. Download original frontier theme from wordpress, open it with winzip or winrar and find original function.php and upload it on same of older function.php …
Only solution is to access via f.t.p no other!!
In reply to: help me pls.. I'm stuckI have download this theme (frontier) and opened function.php and i have this line at 344:
$frontier_content = frontier_option('content_width', 610);
But if the funtion.php was modified by you or others this line maybe incorrect!!
In reply to: help me pls.. I'm stuckyou must use a software like phpdesigher to access in ftp and open function file…
We cant help you if don’t paste here the code.. Sorry!!
In reply to: User Pages and Page Title "Not Found"Hi, this is a problem by Yoast WordPress SEO plugin and other seo plugin wich don’t love bbpress…
You must to go in yoast settings to find any setting to configure it.. if is possible.. I have same problems with All in One SEO plugin.. And i writing to author plugin to resolve this issue…
Before to use a custom function to replace it, go in plugin settings and found one solution..
In reply to: File bbpress.pot incomplete in 2.4.1 versionI have found the plugin wich add these two pages.. is gd bbpress tools… i translate it with your file pot.. But these two pages have problems with seo, because it generate same title page for all present pages… Incredible!!
In reply to: File bbpress.pot incomplete in 2.4.1 versionLook at this: Google link
Hi have exactly this… where i found this? Links are stored in (bbPress) Topic Views List widget!!
In reply to: File bbpress.pot incomplete in 2.4.1 versionThanks for your reply, i have this other two view page and i don’t know where it from!!
bbpress do not have it? I think other plugin so!!
I investigate for this issue!!
In reply to: Inline images…any time soon ???Exist a plugin, is called GD BBpress attachments is work fine..
In reply to: Change Breadcrumb url linkIs not good idea to change core code… And when bbpress is updated you lost all your modifies…
In reply to: Customize size of forumHi, search this code in css:
li.bbp-forum-info, li.bbp-topic-title { float: left; text-align: left; width: 49%; }
Set width like 49% and correct visibility problems….
In reply to: Massive avatar on "edited" postsHi, add this code in your css;
.avatar-14 { width: 14px; }
refresh your page one, or two or more time to cancel browser cache…
I hope help you… 🙂
In reply to: HTTP Error 500 on Topics within "Group" ForumsHi, have you tried to repair file and folder premission on your webserver?
In reply to: Remove hyperlink from user nameCopy and paste in your php function code below:
<?php add_filter( 'bbp_get_author_link', 'remove_author_links', 10, 2); add_filter( 'bbp_get_reply_author_link', 'remove_author_links', 10, 2); add_filter( 'bbp_get_topic_author_link', 'remove_author_links', 10, 2); function remove_author_links($author_link, $args) { $author_link = preg_replace(array('{<a[^>]*>}','{}'), array(","), $author_link); return $author_link; } ?>
In reply to: How to remove this titleHi, i think:
content-archive-forum.php to remove search
loop-forums.php to remove title
This fila are located in bbpress template.
In reply to: Replies issue in forumsHi, this is a css conflict issue… find it in your css:
.reply a { border-bottom: 2px solid rgba(0, 0, 0, 0.1); bottom: -2px; display: inline-block; font-family: 'BebasNeueRegular',sans-serif; font-size: 0.875rem; font-style: normal; height: 20px; padding: 6px 10px 2px; position: absolute; right: 0; }
Now you try to remove: position: absoloute…
And they appear in correct position.. You must to change your css style.. If you search in this forum have other person wich your same problem…