Support Forum
Here is my forum: http://bit.ly/zvRlon
The following is my job request:
1. Fix the Breadcrumbs
As you can notice there is no breadcrumbs on the top left. That is because something is making it so that all of the breadcrumbs go into new lines which makes the forum look weird. I know this has been a problem that people have resolved but I cant seem to figure it out.
2. Fix general "insert line break" problem
This line break problem as mentioned before seems to be affecting smileys, tags, and other random items. It makes the forums look weird. I can only guess that fixing problem 1 will fix problem 2.
3. Take a look here: http://bit.ly/zXdqll
Notice that the "Posts" and "Views" columns are blank. This was happening on the forum index but it appears it fixed itself. Please find the problem and fix it 🙂
I am willing to pay for your work based on hours. I would think someone who knows what they are doing can get this done within 2-3 hours but I cant seem to do it and dont have anymore time to figure it out. Please send me an email at dexzen@live.com or reply to this thread if you want to take the job.
Thank you!
#1 and #2 are related... normally related to a wp theme (or plugin) dorking with the wp filter wpautop and converting \n chars to <br /> tags... try quick temp switch to the default wp theme and see if it corrects to narrow down... if so, check your theme functions.php file for messing with the wpautop filter...
#3 this is because of very odd html getting added to the post content in the tooltip... suggest turning off the tooltips.. will resolve this...
Visit Cruise Talk Central and Mr Papa's World
Oh im def donating 🙂 your point for #3 worked.
Any idea if this is what is screwing it up and how to fix it?
function my_formatter($content) {
$new_content = '';
$pattern_full = '{(\[raw\].*?\[/raw\])}is';
$pattern_contents = '{\[raw\](.*?)\[/raw\]}is';
$pieces = preg_split($pattern_full, $content, -1, PREG_SPLIT_DELIM_CAPTURE);
foreach ($pieces as $piece) {
if (preg_match($pattern_contents, $piece, $matches)) {
$new_content .= $matches[1];
} else {
$new_content .= wptexturize(wpautop($piece));
}
}
return $new_content;
}
remove_filter('the_content', 'wpautop');
remove_filter('the_content', 'wptexturize');
add_filter('the_content', 'my_formatter', 99);
thanks for the kind words!
I really dont know why some themes mess with the wp filters... but glad its resolved for you! will look forward to that donation!
Visit Cruise Talk Central and Mr Papa's World
1 Guest(s)