Support Forum

new user some questions

90 Answers

New Answer

GI giorgiokatr
giorgiokatr
Member

i replaced the whole line

<script src=”<?php bloginfo(‘stylesheet_directory’); ?>/js/jquery-1.4.2.js” type=”text/javascript”></script>

with yours

<?php if (!sp_is_forumpage()) { ?>
<script src=”http://www.travelovergreece.com/wp-content/themes/GeoPlaces/js/jquery-1.4.2.js” type=”text/javascript”></script>
<?php } ?>

and now everything is perfect!!

thanks for your fast response!

i will inform theme developer to update the js!!

GI giorgiokatr
giorgiokatr
Member

oh and last questions

i cant see any option to adjust my font size or maybe use vedrana

should i go through css?

MP Mr Papa
Mr Papa
Member

couple different options…

you can use the font resize plugin if you like to allow users to increase or decrease the font size to their liking…  you can see it in use here at the top of our forum – the three different size A character links…

or yes, you can modify the css font size or font family within the sp theme itself…

if you do the latter, we highly recommend – no strongly advise – that you make your own theme to keep from losing changes on updates… see:  http://codex.simple-press.com/codex/themes/theme-basics/creating-a-theme/

GI giorgiokatr
giorgiokatr
Member

your default theme is perfect!

the only change is a border colour and the font!!!

so no big deal!!

thanks a million!

MP Mr Papa
Mr Papa
Member

If you are going to make ANY changes to it, you need to copy it over into your own theme like the link I gave you shows… otherwise, if you upgrade the theme, you will lose your changes…

GI giorgiokatr
giorgiokatr
Member

and another about redirection

when i click login in forums panel it opens the form with username and password

if someone enters wrong username he goes to wp-login.php

how can i send him to

http://www.travelovergreece.com/?ptype=login

?

and as admin i cannot send or receive pm

there is no button

i logged in as user and send me a pm from the panel but i have no pm option in my profile

GI giorgiokatr
giorgiokatr
Member

is there anyway to increade not the main font size

but the only what the users write?

like in this message?

GI giorgiokatr
giorgiokatr
Member

giorgiokatr said
is there anyway to increade not the main font size

but the only what the users write?

like in this message?

found it forget it!

$PostContentFontSize   !!

YS Yellow Swordfish
Yellow Swordfish
Member

The login url you gave above is not a standard WP login url so does this mean you are using some sort of login plugin? if so then you might be better off removing the SP in-line login form and just using whatever you are using now.

You have to remember that SP has nothing to do with the login process which is a WP function. All SP can do is accept credentials and then pass them to WP for processing. WP is then in charge and of those credentials are incorrect will popup a standard login form.

GI giorgiokatr
giorgiokatr
Member

register button in sp directs me to my cystom registration

login in also is great and user has not to go in my cystom page which is great and responsive

the only issue is when he enters something wrong then wp drives him to wp login

so you suggest to redirect the login or remove it whole

how can iremove the inline form and leave the login button only so when someone selects the login to be directed to my cystom login form?

i guess its hard to embed my form so redirection is the easiest way

GI giorgiokatr
giorgiokatr
Member

giorgiokatr said

and as admin i cannot send or receive pm

there is no button

i logged in as user and send me a pm from the panel but i have no pm option in my profile

anything for this?

MP Mr Papa
Mr Papa
Member

well, thats wp that handles where to go on incorrect login… of course you can do redirection on that case too…

if you want to replace the inline login form, edit your sp theme template file that has the login stuff – typically spHead.php…  find the template function for display – sp_LoginForm() – and just remove it or output a login button instead that goes to your custom login…  for our fixed button, edit the template function sp_LogInOutButton() and add the argument logInLink=xxxx where xxx is the url of your custom login…