Support Forum

Advanced Search
Forum Scope


Match



Forum Options



Minimum search word length is 3 characters - maximum search word length is 84 characters
general-topic
Just some small fixes that I cant handle
Avatar
Joseph Montillo
Member
Free Members
sp_UserOfflineSmall Offline
Jan 18, 2012 - 7:43 pm

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!

Avatar
Mr Papa
Simi Valley, CA
SP Master
Free Members
sp_UserOfflineSmall Offline
Jan 18, 2012 - 7:50 pm

#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...

Avatar
Joseph Montillo
Member
Free Members
sp_UserOfflineSmall Offline
Jan 18, 2012 - 9:23 pm

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);

Avatar
Joseph Montillo
Member
Free Members
sp_UserOfflineSmall Offline
Jan 18, 2012 - 9:37 pm

Nevermind man I just deleted that crap and it totally works!!!!!

Your the best and this plugin is the best!

Avatar
Mr Papa
Simi Valley, CA
SP Master
Free Members
sp_UserOfflineSmall Offline
Jan 18, 2012 - 9:48 pm

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! wink

Forum Timezone: Europe/Stockholm
Most Users Ever Online: 1170
Currently Online:
Guest(s) 1
Currently Browsing this Page:
1 Guest(s)
Top Posters:
Mr Papa: 19448
Ike: 2086
Brandon: 864
kvr28: 804
jim: 650
FidoSysop: 577
Conrad_Farlow: 531
fiddlerman: 358
Stefano Prete: 325
Member Stats:
Guest Posters: 617
Members: 17359
Moderators: 0
Admins: 4
Forum Stats:
Groups: 7
Forums: 17
Topics: 10125
Posts: 79620