You are required to register before you can post. This is via a custom verification system. Please post any problems you are encountering here and I`ll do my best to respond as soon as I can. Please note that a reply WILL be posted to all queries, so do not double post. There are no guarantees
when a reply will appear but I do my best to answer all within 3/4 days max. Bumping topics won`t make the slightest difference.
IMPORTANT: Posts in English ONLY please, thank you! Any other languages will be ignored and your message deleted.
SEARCH: Use the search option to see if your question has been answered on the forum before. Or check the relevant script docs.
CUSTOMER: If you have purchased a commercial version of any of my software, using the contact option at the licence centre ensures a faster response.
AUTO DELETION: Accounts older than 5 days, with no posts or topics, are automatically deleted. Only register if you are thinking of posting.
PRIVATE MESSAGES: Private messages are currently disabled.
LINKS: Any links posted are 'NOFOLLOW' and will not be picked up by search engines.
You are not logged in.
Pages: 1
Thank you for the great script.
Is it possible (and easy) to create an blank page I can use inside my blog area.
There is no need to edit it inside the admin panel (would be nice though) because I could use an iframe
I was thinking to copy the profile template, but I have no idea how to get this correct in my blog.
Offline
Yes, pretty easy. Copy profile.tpl.php. Lets say you call it profile2.tpl.php
In index.php find around line 850:
case 'captcha':
$MWC = new PhpCaptcha();
$MWC->Create();
break;
After that add:
case 'profile2':
include(FOLDER_PATH.'inc/header.php');
$tpl = new Savant2();
$tpl->display('themes/'.THEME.'/profile2.tpl.php');
include(FOLDER_PATH.'inc/footer.php');
break;
Access new page as 'index.php?cmd=profile2'
If you are using search engine friendly urls, open .htaccess.
Find:
RewriteRule ^(profile|contact|all-archive|rss-feed).html$ index.php?cmd=$1
Change to:
RewriteRule ^(profile|contact|all-archive|rss-feed|profile2).html$ index.php?cmd=$1
Access page as profile2.html
Offline
Pages: 1