cde010
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Zerif Lite] CSS resetIt turns out that all of my Zerif files were reset. Maybe there was an update. 20 hours of work lost.
Forum: Plugins
In reply to: [Facebook Registration Tool] [Plugin: Facebook Registration Tool] 404 errorSame here. The 404 comes because the code tries to access:
facebook-registration/register.php
after the user registers but that path is incorrect. The correct path is:
facebook-registration-tool/register.php
To fix that, you have to open facebook-registration-tool\js\fbreg.js.php and change line 11.
But I still can’t get this plugin to work. After registration, the user is not added and gets redirected to the register page again. This plugin doesn’t work.
Forum: Plugins
In reply to: [Plugin: WP Private Messages] Adding Private messaging to user ProfilesDavid, I put my code directly after:
<?php } echo $header; if ( aoc_is_active('gallery') ) { echo aoc_profile_picture($user); } if ( ! empty($author_link) ) { ?> <p style="text-align:center;"><strong><a href="<?php echo $author_link; ?>"><?php _e('View this author\'s posts', $text_domain); ?></a></strong></p> <?php } ?>
Forum: Plugins
In reply to: [Plugin: Sidebar Login] Text overlaps the gravatarScreenshot??
Forum: Fixing WordPress
In reply to: [Plugin: User Community] Long user url’s are possibleNot sure…I would like to know this too. Anyone?
Forum: Fixing WordPress
In reply to: [Plugin: User Community] Long user url’s are possibleYes, it is possible.
Open: alkivia/templates/userlist-default.php
Find:
echo '<a href="'. $user['user_url'] .'" target="_blank">'. substr($user['user_url'], 7) . '</a>';
Change to:
echo '<a href="'. $user['user_url'] .'" target="_blank">'. substr($user['user_url'], 7, 24) . '</a>';
This will limit the number of character displayed in the table without changing the link. Sorry you had to wait so long for an answer..
Regards,
CarlForum: Fixing WordPress
In reply to: html view of of editing post stop showing correctly.This plugin caused the problem:
Kadom Ads ManagementOnly for the google chrome browser.
Forum: Fixing WordPress
In reply to: [Plugin: Profiler] Auto Linking to User Profileswas this resolved?
Forum: Fixing WordPress
In reply to: [Plugin: Profiler] Show gravatars in Member listwhere did you add this code??